A network administrator is troubleshooting connectivity issues on a Linux backup server. The server is assigned the static IP address . Local diagnostic testing reveals that the server can communicate with hosts on its immediate local network segment, but traffic destined for remote subnets fails completely. The administrator verifies the host routing table output:
text
default via 172.16.88.1 dev eth0
172.16.88.128/25 dev eth0 proto kernel scope link src 172.16.88.200
Which of the following identifies the root cause of the external connectivity failure?
- The assigned default gateway IP address resides on a different IP subnet than the host server.Answer
- BThe access control list on the upstream router contains an implicit deny statement blocking outbound traffic.
- CThe server is missing a DHCP relay agent configuration on interface eth0 to negotiate remote routes.
- DThe local interface is experiencing a duplex mismatch leading to high packet drop rates on remote frames.
Answer
The assigned default gateway IP address resides on a different IP subnet than the host server.
The server's IP address places it in the subnet (range - ). The configured default gateway resides in the adjacent subnet. A default gateway must be on the same local subnet as the host interface for Layer 2 ARP resolution and off-subnet forwarding to function.
Step-by-Step Solution
Key Concept
Default Gateway Subnet Alignment
Estimated Time:1m 30s