A technician is troubleshooting a network where two computers cannot communicate. Computer A has an IP of 192.168.1.10 with subnet mask 255.255.255.0. Computer B has an IP of 192.168.2.20 with subnet mask 255.255.255.0. Both are connected to the same switch. The switch is not configured with VLANs. Why can't the computers communicate?
Trap 1: The switch is blocking the traffic due to MAC address filtering.
MAC filtering would block specific devices, but it would not explain why two devices on different subnets cannot communicate.
Trap 2: The subnet mask on Computer B is incorrect.
The subnet mask is correct for its own subnet (255.255.255.0), but the problem is that they are on different subnets.
Trap 3: The default gateway on both computers is not set.
A default gateway is needed to reach other subnets, but even if set, it would not enable direct communication without a router.
- A
The switch is blocking the traffic due to MAC address filtering.
Why wrong: MAC filtering would block specific devices, but it would not explain why two devices on different subnets cannot communicate.
- B
The computers are on different subnets and need a router to communicate.
Computers on different subnets cannot communicate directly; they require a router to forward packets between the subnets.
- C
The subnet mask on Computer B is incorrect.
Why wrong: The subnet mask is correct for its own subnet (255.255.255.0), but the problem is that they are on different subnets.
- D
The default gateway on both computers is not set.
Why wrong: A default gateway is needed to reach other subnets, but even if set, it would not enable direct communication without a router.