Configuring Standard ACLs in Cisco Routers
Nerd cafe
Last updated
Nerd cafe
Last updated
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 not consider 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
We will simulate a small network using 1 router, 1 switch and 2 PCs.
Objective:
Allow PC1 (192.168.1.100) to access Router (R1).
Deny PC2 (192.168.1.200) from reaching Router (R1).
Assign IP addresses to the interfaces of Router (R1)
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
Explanation:
ip access-group 10 in
→ Applies ACL 10 to incoming traffic on FastEthernet0/0.
Check the ACL
Test connectivity
PC1 should be able to PING Router (R1)
PC2 should NOT be able to PING Router1
Standard ACL
, Cisco ACL
, Access Control List
, Cisco Router
, IP filtering
, network security
, CCNA
, GNS3 simulation
, ACL configuration
, permit IP
, deny IP
, Cisco commands
, access-list 10
, router security
, packet filtering
, subnet ACL
, IP access-group
, inbound ACL
, network filtering
, ACL verification
, سیسکو