Question

Difficulty: MediumTroubleshooting Routing, Default Gateways, and ACLs

A network administrator is troubleshooting an issue where hosts on the 10.10.10.0/2410.10.10.0/24 management subnet cannot establish secure web connections to a server at 10.20.30.5010.20.30.50. Upon reviewing the inbound interface settings on the router, the administrator inspects the following Access Control List (ACL):

text 10 permit tcp 10.10.10.0 0.0.0.255 host 10.20.30.50 eq 80 20 deny ip any any

When attempting to access the server's web control portal via `https://10.20.30.50`, connection attempts time out. Which of the following identifies the root cause of this failure?

  1. The ACL permits HTTP traffic on port 80 rather than HTTPS traffic on port 443, causing HTTPS packets to match the deny rule.Answer
  2. B
    The workstations on the management subnet are configured with a default gateway residing on a different IP subnet.
  3. C
    The router requires a separate statutory outbound ACL to allow TCP port 22 traffic before port 443 traffic can be processed.
  4. D
    The switch infrastructure is missing an IP helper address to route Layer 2 broadcast frames across VLAN boundaries.

Answer

The ACL rule permits TCP port 80 (HTTP) instead of TCP port 443 (HTTPS), causing secure web connections to be blocked by the subsequent deny rule.
The correct option correctly identifies that HTTPS uses TCP port 443. Because rule 10 specifically matches `eq 80` (HTTP), packets destined for port 443 skip rule 10 and hit rule 20 (`deny ip any any`), resulting in a connection timeout.

Step-by-Step Solution

1
Analyze the requested service protocol and target port.
Secure web traffic (`https://`) utilizes TCP port 443.
Identifying the target port is essential when evaluating ACL transport-layer matching rules.
2
Examine rule 10 of the active Access Control List.
Rule 10 permits TCP traffic targeting `eq 80` (HTTP).
Port 80 is for unencrypted HTTP traffic, not encrypted HTTPS traffic.
3
Evaluate how HTTPS traffic is processed through the ACL sequence.
HTTPS traffic (port 443) does not match rule 10 and falls through to rule 20 (`deny ip any any`).
ACLs process rules sequentially until a match is found; unmatched traffic falls through to subsequent deny rules.

Key Concept

ACL Port Filtering and Sequence Evaluation
Estimated Time:1m 30s
Rate this question