A network technician is investigating why users on subnet cannot access a secure internal web portal at over HTTPS. The technician runs a traceroute command from a client workstation (), which yields the following output:
Traceroute to 10.20.10.15 over a maximum of 30 hops:
1 <1 ms <1 ms <1 ms 10.20.4.1
2 2 ms 1 ms 2 ms 10.20.1.2
3 * * * Request timed out.
An inspection of the router at reveals the following inbound Access Control List (ACL) applied on interface GigabitEthernet0/1:
access-list 105 permit tcp 10.20.4.0 0.0.0.255 host 10.20.10.15 eq 80
access-list 105 permit icmp 10.20.4.0 0.0.0.255 host 10.20.10.15
Based on these diagnostic outputs, which of the following is the root cause of the connection failure?
- The Access Control List permits HTTP traffic on TCP port 80 but lacks a permit entry for HTTPS traffic on TCP port 443, causing secure requests to be dropped by the implicit deny rule.Answer
- BThe host workstation is configured with a default gateway address residing on a different IP subnet, preventing packets from reaching the intermediate router.
- CThe destination web server resides on a separate VLAN broadcast domain that cannot be reached because inter-VLAN routing is completely disabled on the switch.
- DThe ACL rule is dropping HTTPS traffic because secure web traffic defaults to TCP port 22, which is missing from the access list statements.