A network security engineer configures an extended stateless IPv4 Access Control List (ACL) applied inbound on a perimeter router interface (`GigabitEthernet0/1`) to filter incoming Internet traffic. The ACL contains the following sequential rules:
- Rule 10: `permit tcp any eq 443 192.168.50.0 0.0.0.255 established`
- Rule 20: `permit tcp any host 192.168.50.10 eq 443`
- Rule 30: `permit udp 192.168.50.0 0.0.0.255 eq 53 any`
An external host with IP address sends an unsolicited TCP SYN packet (initial connection request) with source port to an internal host at on destination port .
Which action does the router take when processing this incoming TCP SYN packet?
- The router drops the packet because it fails to match Rule 10 due to missing ACK/RST flags, misses subsequent rules, and triggers the implicit deny statement.Answer
- BThe router permits the packet under Rule 10 because the source port matches 443 and the destination IP address falls within the 192.168.50.0/24 subnet.
- CThe router permits the packet under Rule 20 because traffic coming from source port 443 overrides destination port inspection.
- DThe router forwards the packet to 192.168.50.10 after performing Port Address Translation (PAT) on port 8080.
Answer
The router drops the packet because it fails to match Rule 10 due to missing ACK/RST flags, misses subsequent rules, and triggers the implicit deny statement.
When evaluating stateless extended ACL rules, the router checks fields in exact top-to-bottom order. For Rule 10, the packet matches protocol (TCP), source address (`any`), source port (`eq 443`), and destination subnet (). However, Rule 10 includes the `established` keyword, which requires the TCP ACK or RST control bit to be set. Because an initial unsolicited connection attempt sends a TCP SYN packet (without ACK or RST), Rule 10 does not match. The packet subsequently fails Rule 20 (wrong host and destination port) and Rule 30 (wrong protocol), causing it to hit the default implicit deny rule at the end of the ACL and be dropped.
Step-by-Step Solution
Key Concept
Stateless ACL TCP Flag Filtering and Implicit Deny Logic
Estimated Time:2m 0s