Difficulty: Medium
Correct Answer: No IP traffic will be allowed out E0.
Explanation:
Introduction / Context:
Cisco ACLs are processed top-down and terminate on the first match. If no lines match, an implicit deny any drops the packet. Many outages occur because engineers add only deny entries and forget a final permit line, unintentionally blocking all traffic. This question illustrates that behavior on an outbound ACL.
Given Data / Assumptions:
Concept / Approach:
After evaluating all entries, if a packet does not match a permit statement, it hits the invisible final line deny ip any any. Since the list contains only deny entries and there is no subsequent permit, all traffic—whether SMTP/Telnet or anything else—will be dropped outbound.
Step-by-Step Solution:
Verification / Alternative check:
Use show access-lists 110 to watch counters. You will see denies increment, while all other traffic silently drops due to implicit deny (not counted on a specific line). Adding access-list 110 permit ip any any at the end would restore other traffic.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
No IP traffic will be allowed out E0.
Discussion & Comments