Access Control Lists (ACLs) in Cisco routers are used to filter traffic based on defined rules. A Standard ACL is a simple form of ACL that filters traffic based on source IP addresses only. It does notconsider destination IP or other criteria.
In this guide, we will:
Understand the concept of Standard ACLs
Set up a practical GNS3 lab scenario
Configure Standard ACLs step by step
Test and verify the configuration
Step 1: Lab Topology in GNS3
We will simulate a small network using 1 router, 1 switch and 2 PCs.
Network Topology:
Topology
Objective:
Allow PC1 (192.168.1.100) to access Router (R1).
Deny PC2 (192.168.1.200) from reaching Router (R1).
Step 2: GNS3 Device Configuration
Assign IP addresses to the interfaces of Router (R1)
Step 3: Configuring Standard ACL on Router1
Create an ACL to allow PC1 and deny PC2
Explanation:
access-list 10 permit 192.168.1.100 0.0.0.0 → Allows PC1 to communicate
access-list 10 deny 192.168.1.200 0.0.0.0 → Blocks PC2 from communication
access-list 10 permit any → Ensures all other traffic is allowed
Apply the ACL to the interface
Explanation:
ip access-group 10 in → Applies ACL 10 to incoming traffic on FastEthernet0/0.