Free CCNA | Standard ACLs | Day 34 Lab | CCNA 200-301 Complete Course
2 min read
3 months ago
Published on Nov 25, 2025
This response is partially generated with the help of AI. It may contain inaccuracies.
Table of Contents
Introduction
This tutorial will guide you through the process of configuring standard IPv4 Access Control Lists (ACLs) as part of the CCNA 200-301 Complete Course. Understanding and implementing ACLs is crucial for network security and management, enabling you to control the flow of traffic within a network.
Step 1: Access Your Device and Enter Configuration Mode
-
Connect to Your Router or Switch:
- Use a console cable to connect to your networking device.
- Open a terminal emulator (like PuTTY or Tera Term).
-
Enter Privileged EXEC Mode:
- Type
enableand press Enter. - You may need to enter a password if prompted.
- Type
-
Enter Global Configuration Mode:
- Type
configure terminaland press Enter.
- Type
Step 2: Create a Standard ACL
-
Define the ACL:
- Use the following command to create a standard ACL:
access-list [ACL_NUMBER] [permit|deny] [SOURCE_IP] [WILDCARD_MASK] - Example to permit traffic from the IP address 192.168.1.10:
access-list 10 permit 192.168.1.10 0.0.0.0
- Use the following command to create a standard ACL:
-
Verify the ACL:
- Check the configuration by typing:
show access-lists - This command will display all your ACLs and their rules.
- Check the configuration by typing:
Step 3: Apply the ACL to an Interface
-
Select the Correct Interface:
- Enter the interface configuration mode for the interface you want to apply the ACL to:
interface [INTERFACE_TYPE] [INTERFACE_NUMBER] - For example:
interface GigabitEthernet0/0
- Enter the interface configuration mode for the interface you want to apply the ACL to:
-
Apply the ACL:
- Use the following command to apply the ACL to the interface:
ip access-group [ACL_NUMBER] [in|out] - Example:
ip access-group 10 in
- Use the following command to apply the ACL to the interface:
-
Exit Interface Configuration Mode:
- Type
exitto return to global configuration mode.
- Type
Step 4: Save Your Configuration
- Save the Configuration:
- To ensure your ACLs persist after a reboot, save your configuration by typing:
write memory - Alternatively, you can use:
copy running-config startup-config
- To ensure your ACLs persist after a reboot, save your configuration by typing:
Conclusion
You have now successfully configured a standard IPv4 Access Control List and applied it to an interface. This fundamental skill is essential for managing network traffic effectively and enhancing security.
Next Steps
- Experiment with different ACL configurations to understand their behavior.
- Review additional ACL types, such as extended ACLs, for more complex filtering capabilities.
- Consider using tools like Boson NetSim for practical labs to further your understanding and skills.