Proof — Standard ACL lab
Upload proof that you built, broke, fixed and verified a standard ACL.
This topic turns access control from theory into proof. You will understand what a standard ACL checks, where to place it, how to configure it, how to break it, how to fix it, and how to explain it in an interview.
| Source | What to study |
|---|---|
| CCNA Volume 2 study path | Module 1: Transport, Applications and ACL Thinking. Focus on standard IPv4 ACLs, wildcard masks, placement, direction, permit/deny logic and implicit deny. |
| CCNA syllabus page | Security Fundamentals: configure and verify standard and extended ACLs. |
| Lab source | Packet Tracer or GNS3 with two LANs, one router, one server and two PCs. |
Draw this before configuring. If you cannot draw the traffic path, the CLI becomes a cave with angry bats.
PC-A: 192.168.10.10/24 Server: 192.168.30.10/24
│ │
LAN 10 ─┴─ R1 ───────────────── LAN 30 ┴─ Server Network
│
PC-B: 192.168.20.10/24
Goal:
- Block PC-A from reaching the server.
- Allow PC-B to reach the server.
- Place the standard ACL near LAN 30, close to the destination.
access-list 10 deny host 192.168.10.10 access-list 10 permit any interface g0/2 ip access-group 10 out show access-lists show ip interface g0/2 ping 192.168.30.10 traceroute 192.168.30.10
Create two user LANs and one server LAN. Configure IP addresses and routing. Prove all devices can ping before adding the ACL.
Deny PC-A source IP and permit all others. Apply the ACL outbound on the interface closest to the server network.
Apply the ACL on the wrong interface or wrong direction. Observe how the wrong traffic gets blocked. Document the symptom.
Move the ACL to the correct place. Verify with ping, show access-lists counters and show ip interface.
| Question | Expected answer |
|---|---|
| What does a standard ACL match? | Source IP address only. |
| Where should a standard ACL usually be placed? | Close to the destination. |
| Why not place it close to the source? | It may block that source from reaching other destinations because it cannot check destination or port. |
| What happens if no ACL line matches? | The implicit deny blocks the traffic. |
| Which command shows ACL hit counters? | show access-lists. |
Complete this proof card before marking the topic as lab done or interview-ready.
Upload proof that you built, broke, fixed and verified a standard ACL.
| File | Where to save it |
|---|---|
| Packet Tracer file | labs/ccna/acl-standard/acl-standard.pkt |
| Topology screenshot | labs/ccna/acl-standard/topology.png |
| Running config | labs/ccna/acl-standard/r1-running-config.txt |
| Exported note | notes/ccna/acl-standard.md |
| Mistake note | mistakes/ccna/acl-wrong-direction.md |
show access-lists counters, and show ip interface to confirm where the ACL is applied.