An administrator configures an IPv4 access control list on a router interface containing only the single entry `access-list 15 permit host 172.16.10.5`. What action will the router take when a packet originating from host 172.16.10.20 arrives on this interface?
- The packet is dropped because of the unwritten implicit deny statement at the end of the ACL.Answer
- BThe packet is permitted because standard ACLs only drop traffic that matches an explicit deny statement.
- CThe packet is forwarded to the logging buffer for administrator review before being permitted.
- DThe packet is returned to the source host with an administrative block ICMP message.
Answer
The packet is dropped because of the unwritten implicit deny statement at the end of the ACL.
Every Cisco IPv4 ACL ends with an invisible implicit deny statement (`deny any`). Because the packet from host 172.16.10.20 does not match the single permit rule for host 172.16.10.5, it reaches the end of the list and is dropped.
Step-by-Step Solution
Key Concept
Implicit Deny Any in IPv4 Access Control Lists
Estimated Time:45s