An administrator configures the following extended IPv4 access control list on a Cisco IOS router to control traffic between subnets:
ip access-list extended SECURE_ACCESS
10 deny tcp host 192.168.10.15 host 10.1.20.10 eq 22
20 permit tcp host 192.168.10.15 10.1.20.0 0.0.0.255 eq 80
30 permit tcp host 192.168.10.15 10.1.20.0 0.0.0.255 eq 443
40 permit icmp 192.168.10.0 0.0.0.255 host 10.1.20.254 echo
The access list is applied inbound on the interface facing the 192.168.10.0/24 subnet. Which TWO statements accurately describe how traffic will be processed by this access control list?
- SSH traffic initiated from host 192.168.10.15 destined for host 10.1.20.10 is explicitly denied by sequence 10.Answer
- BHTTP traffic initiated from host 192.168.10.20 destined for host 10.1.20.5 is permitted because sequence 20 permits web traffic for the entire source subnet.
- ICMP echo requests sent from host 192.168.10.50 destined for host 10.1.20.10 are dropped due to the implicit deny at the end of the access list.Answer
- DICMP echo requests sent from host 192.168.10.50 destined for host 10.1.20.10 are permitted because Cisco access control lists default to permitting unlisted IPv4 traffic unless an explicit deny line is configured.
Answer
The correct statements are that SSH traffic from host 192.168.10.15 to host 10.1.20.10 is explicitly denied by sequence 10, and ICMP echo requests from host 192.168.10.50 to host 10.1.20.10 are dropped due to the implicit deny clause.
SSH packets from 192.168.10.15 to 10.1.20.10 hit sequence 10 directly and are denied. Meanwhile, ICMP echo requests from 192.168.10.50 to 10.1.20.10 fail to match sequence 40 (which restricts the destination to 10.1.20.254) and are consequently dropped by the implicit deny at the end of the ACL.
Step-by-Step Solution
Key Concept
Extended Access Control List Sequential Processing and Implicit Deny Mechanics