A system administrator is troubleshooting outbound connectivity on a Linux server. The server shows the following IPv4 network configuration:
- IP Address:
- Subnet Mask: (/)
- Default Gateway:
The server can successfully communicate with local hosts on the network but cannot reach any external subnets or the internet. Which of the following best explains why the server cannot reach remote networks?
- The default gateway is configured on a different IP subnet than the server's IP address.Answer
- BThe default gateway IP address is invalid because addresses ending in .1 are reserved for network identifiers.
- CThe server requires an active VLAN trunking protocol on its NIC to send packets past its local broadcast domain.
- DThe default gateway is rejecting outbound packets due to a transport layer protocol port mismatch.
Answer
The server cannot communicate outside its local network because the default gateway () is on a different subnet than the server ().
For a host to communicate with remote networks, its default gateway must reside within the exact same IP subnet as the host's network interface. Given an IP address of and a subnet mask of (/), the valid local host addresses span from through . The configured default gateway address of is on a completely separate subnet (). As a result, the server cannot send ARP requests to discover the router's MAC address, preventing all traffic destined for external networks.
Step-by-Step Solution
Key Concept
Default Gateway Subnet Alignment