A network administrator applies the following standard IPv4 access control list (ACL) inbound on a router interface:
`access-list 10 permit 192.168.1.0 0.0.0.255`
A host with the IPv4 address `192.168.2.50` attempts to send traffic through this interface. What action will the router take on this packet?
- The router drops the packet because it matches the implicit deny statement at the end of the ACL.Answer
- BThe router permits the packet because no explicit deny statement was configured in the ACL.
- CThe router forwards the packet to the default gateway for further inspection.
- DThe router prompts the sending host for authentication before making a forwarding decision.
Answer
The router drops the packet because it matches the implicit deny statement at the end of the ACL.
Cisco IOS IPv4 Access Control Lists evaluate rules sequentially from top to bottom. If a packet does not match any configured rule, it reaches the final unwritten entry: the implicit deny (deny ip any). Because the source IP 192.168.2.50 is not in the 192.168.1.0/24 subnet specified in the single permit line, it is silently dropped by this implicit deny feature.
Step-by-Step Solution
Key Concept
Access Control List (ACL) Implicit Deny Clause
Estimated Time:45s