Difficulty: Easy
Correct Answer: ip access-group 101 in
Explanation:
Introduction / Context:Creating an ACL is only half the job; you must apply it to an interface and direction to enforce policy. In classic IPv4 IOS, the command keyword used under an interface is ip access-group. Choosing the right syntax avoids parser errors and ensures the ACL actually filters packets as intended.
Given Data / Assumptions:
Concept / Approach:
The correct interface-level command format is: ip access-group
Step-by-Step Solution:
Enter interface configuration mode: interface G0/0.Apply the ACL: ip access-group 101 in.Verify with: show ip interface G0/0.Confirm counters increase with: show access-lists 101 during traffic tests.Verification / Alternative check:
Use show run interface
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
ip access-group 101 in
Discussion & Comments