A systems administrator is manually configuring a static IPv4 network interface on a new database server intended for the company subnet . The administrator enters the following settings on the server:
- IP Address:
- Subnet Mask:
- Default Gateway:
During initial testing, the server successfully pings local workstation addresses such as , but cannot communicate with hosts on other VLANs or access the corporate internet gateway. Which of the following identifies the root cause of this connectivity failure?
- The configured subnet mask places the default gateway address on a different logical network segment, rendering it local-subnet unreachable.Answer
- BThe server automatically assigned an APIPA address because the specified default gateway address did not respond to initial DHCP discover packets.
- CThe DNS server configuration is missing, which prevents the host from resolving the default gateway IP address into a valid broadcast domain.
- DAn unmanaged Layer 2 switch must be deployed to translate packet headers between hosts in the lower half and upper half of the IP range.
Answer
The configured subnet mask places the default gateway address on a different logical network segment, rendering it local-subnet unreachable.
The correct answer identifies that a subnet mask of 255.255.255.128 (/25) restricts the host's local network segment to the range 10.50.12.0 - 10.50.12.127. Because the default gateway IP is set to 10.50.12.254, the server evaluates the gateway address as being on a remote network. As a result, the server cannot ARP for the gateway MAC address locally, preventing any off-subnet traffic forwarding while allowing communication with local hosts in the 10.50.12.1 - 10.50.12.126 range.
Step-by-Step Solution
Key Concept
Subnet Mask and Default Gateway Boundary Matching