A network administrator is configuring a workstation in a newly provisioned subnet with the IPv4 address . The host can successfully ping other devices on the local network, but cannot reach any external subnets or the internet. Executing `ipconfig` reveals the default gateway is configured as . Which of the following is the root cause of the connectivity failure?
- The default gateway IP address resides outside the host's assigned IP subnet range.Answer
- BAn implicit deny rule at the end of the router's inbound Access Control List is blocking ICMP traffic.
- CThe host IP address is set to the subnet's broadcast address, preventing external packet routing.
- DThe switchport connecting the workstation is assigned to an unrouted VLAN broadcast domain.
Answer
The default gateway IP address resides outside the host's assigned IP subnet range.
For a host to communicate with remote networks, its configured default gateway must reside on the exact same local IP subnet. A /25 prefix (subnet mask 255.255.255.128) provides usable host addresses from 172.16.45.1 to 172.16.45.126 with a broadcast address of 172.16.45.127. The configured default gateway IP address (172.16.45.130) belongs to the next block (172.16.45.128/25), making it unreachable via Layer 2 ARP requests.
Step-by-Step Solution
Key Concept
Default Gateway Subnet Mismatch Diagnosis