A network administrator is troubleshooting network reachability for a newly installed server in an enterprise datacenter. The host is assigned the IPv4 address with a subnet mask of (). The administrator discovers that while the host can ping its local loopback address, it cannot establish SSH connections to a remote server at or reach external networks.
The host IP configuration is verified as follows:
- IPv4 Address:
- Subnet Mask:
- Default Gateway:
The router interface servicing this VLAN is configured as follows:
text
interface GigabitEthernet0/0.50
encapsulation dot1Q 50
ip address 172.16.50.129 255.255.255.192
ip access-group VLAN50_IN in
!
ip access-list extended VLAN50_IN
permit tcp 172.16.50.128 0.0.0.63 any eq 22
permit icmp 172.16.50.128 0.0.0.63 any
Which of the following identifies the primary root cause of the connectivity failure?
- The configured default gateway () resides in a different IP subnet than the host (), preventing ARP resolution for off-subnet destinations.Cevap
- BThe access control list `VLAN50_IN` lacks an explicit permit statement for return TCP traffic, causing the implicit deny rule to drop incoming SSH responses.
- CThe target server at is located in the same broadcast domain as the source host, making default gateway routing unnecessary.
- DThe subnet mask restricts the host capacity of Subnet 2 to 30 usable addresses, making an invalid host IP.