An enterprise router is configured with the following extended IPv4 access control list applied inbound on interface GigabitEthernet0/0/0:
text ip access-list extended SECURE_APP permit tcp 172.16.5.0 0.0.0.255 host 10.0.1.20 eq 80 permit ip host 172.16.5.10 host 10.0.1.20
Host A (IP address 172.16.5.15) attempts to establish an HTTPS connection (TCP port 443) to the application server at 10.0.1.20. Which statement accurately describes how the router processes this traffic?
- The router drops the packet because it fails to match the TCP destination port in the first line and does not match the source host in the second line, causing it to fall through to the implicit deny.Answer
- BThe router permits the packet because the first access list entry matches any TCP traffic originating from the 172.16.5.0/24 source subnet regardless of destination port.
- CThe router permits the packet because the second access list entry permits all IP protocols for any host within the 172.16.5.0/24 subnet.
- DThe router forwards the packet because extended ACLs automatically permit return traffic for established TCP sessions matching the source subnet.
Answer
The router drops the traffic because it fails to match both explicit permit rules and consequently hits the unwritten implicit deny clause at the end of the access list.
The correct response identifies that extended access control lists process rules top-down, checking source address, destination address, and protocol port numbers. For host 172.16.5.15 using HTTPS (port 443), line 1 fails because the destination port is 443 instead of 80. Line 2 fails because the source host address 172.16.5.15 does not match host 172.16.5.10. Consequently, the packet reaches the default implicit deny clause at the end of the list and is dropped.
Step-by-Step Solution
Key Concept
Extended Access Control List Sequential Matching and Implicit Deny Behavior