A network administrator is troubleshooting an issue where a workstation configured with IP address and subnet mask (/20) can communicate with other hosts on its local network but cannot access external destinations. Running `traceroute 198.51.100.25` fails immediately on the first hop. Reviewing the workstation's network settings reveals that the default gateway is configured as . Which of the following is the root cause of the connectivity issue?
- The default gateway address resides on a different subnet than the host IP address.Answer
- BAn access control list on the local switch dropped the ICMP packet due to an implicit deny rule.
- CThe default gateway IP address is invalid because it is the broadcast address for the host's subnet.
- DThe host and default gateway are separated by an unrouted VLAN broadcast domain boundary.
Answer
The default gateway address resides on a different subnet than the host IP address.
Subnet mask (/20) dictates that subnets increment by 16 in the third octet (). The host network is , spanning addresses through . The configured gateway address belongs to the network block. Because a host must send Layer 2 ARP requests to discover its default gateway, the gateway must reside on the same IP subnet as the host interface.
Step-by-Step Solution
Key Concept
Default Gateway Subnet Alignment