A network engineer configures the following IPv4 extended named access control list (ACL) on a Cisco IOS router interface to filter traffic between host and web server :
text
ip access-list extended SECURE_VLAN
deny icmp host 10.20.5.15 host 192.168.100.50
permit tcp host 10.20.5.15 host 192.168.100.50 eq 80
permit tcp host 10.20.5.15 host 192.168.100.50 eq 443
Which two statements accurately describe the traffic filtering behavior enforced by this ACL? (Choose two.)
- ICMP packets sent from host targeting server are explicitly dropped by the first entry.Answer
- BSSH traffic (TCP port ) sent from host to server is permitted because only ICMP traffic is explicitly denied.
- UDP traffic originating from host bound for server is dropped due to the implicit deny clause at the end of the ACL.Answer
- DReturn HTTP traffic originating from server back to host matches and is permitted by the second ACL statement.
Answer
The statement identifying that ICMP packets are explicitly dropped by the first entry and the statement noting that UDP traffic is dropped by the implicit deny clause are both correct.
The first entry in the ACL explicitly denies ICMP packets sent from host to host . Additionally, because Cisco IPv4 ACLs automatically append an unwritten implicit deny clause (`deny ip any any`) at the end of the evaluation list, any protocol not explicitly permitted—such as UDP—is automatically dropped.
Step-by-Step Solution
Key Concept
Top-down sequential processing and implicit deny clause evaluation in IPv4 Extended ACLs
Estimated Time:1m 30s