how to configured two routers extened standard ACL LIST with serial cable commands prompt 2026

 how to configured two routers extened standard ACL LIST with serial cable commands prompt 2026

to click here more information about page 


how to configured two routers extened standard ACL LIST with serial cable commands prompt 2026

How to Configure Two Routers Using Extended Standard ACL with Serial Cable (Command Prompt Guide 2026)

URL: https://sreekrishnatechsolutionsatp2026.blogspot.com/
Author Contact: pgollabala@gmail.com


Introduction

In modern networking, security and traffic control are critical components for efficient communication between devices. One of the most powerful tools available in router configuration is the Access Control List (ACL). This guide explains how to configure two routers using an extended ACL over a serial cable connection, using command-line interface (CLI) methods.

This tutorial is designed for beginners and intermediate learners preparing for networking exams or working on real-world configurations. It also follows SEO best practices to help rank on Google’s first page and supports AdSense approval requirements.


What is an ACL?

An Access Control List (ACL) is a set of rules used by routers to filter network traffic. ACLs determine which packets are allowed or denied based on criteria such as:

  • Source IP address

  • Destination IP address

  • Protocol (TCP, UDP, ICMP)

  • Port numbers

Types of ACLs

  1. Standard ACL

    • Filters based only on source IP address

  2. Extended ACL

    • Filters based on source, destination, protocol, and ports

    • More powerful and flexible


Network Topology

In this setup, we use:

  • Router 1 (R1)

  • Router 2 (R2)

  • Serial cable connection between routers

  • Two LAN networks connected to each router

Example IP Scheme

DeviceInterfaceIP Address
R1G0/0192.168.1.1/24
R1S0/0/010.0.0.1/30
R2G0/0192.168.2.1/24
R2S0/0/010.0.0.2/30

Step 1: Basic Router Configuration

Configure Router 1

enable
configure terminal
hostname R1

interface g0/0
ip address 192.168.1.1 255.255.255.0
no shutdown

interface s0/0/0
ip address 10.0.0.1 255.255.255.252
clock rate 64000
no shutdown

exit

Configure Router 2

enable
configure terminal
hostname R2

interface g0/0
ip address 192.168.2.1 255.255.255.0
no shutdown

interface s0/0/0
ip address 10.0.0.2 255.255.255.252
no shutdown

exit

Step 2: Configure Routing

To enable communication between networks, configure static routing.

On Router 1

ip route 192.168.2.0 255.255.255.0 10.0.0.2

On Router 2

ip route 192.168.1.0 255.255.255.0 10.0.0.1

Step 3: Configure Extended ACL

Extended ACLs should be placed close to the source of traffic.

Scenario

  • Allow only HTTP traffic from Network 1 to Network 2

  • Deny all other traffic

On Router 1

access-list 100 permit tcp 192.168.1.0 0.0.0.255 192.168.2.0 0.0.0.255 eq 80
access-list 100 deny ip any any

Step 4: Apply ACL to Interface

Apply the ACL to the outgoing interface toward Router 2.

interface s0/0/0
ip access-group 100 out
exit

Step 5: Verification Commands

Use the following commands to verify configuration:

show access-lists
show ip interface
show running-config

Test connectivity using:

ping 192.168.2.1

Troubleshooting Tips

  • Ensure interfaces are up/up

  • Verify IP addressing and subnet masks

  • Check routing table using:

    show ip route
    
  • Confirm ACL placement and direction


Common Mistakes to Avoid

  • Applying ACL in wrong direction (in/out)

  • Using incorrect wildcard masks

  • Forgetting “no shutdown” command

  • Misplacing extended ACL (should be near source)


Advantages of Extended ACL

  • Granular control over network traffic

  • Enhanced security

  • Ability to filter specific applications

  • Better bandwidth management


Conclusion

Configuring two routers using an extended ACL over a serial connection is a fundamental networking skill. By following this guide, you can:

  • Establish router-to-router communication

  • Implement traffic filtering using extended ACL

  • Improve network security and performance

This tutorial provides both practical configuration steps and SEO strategies to help your blog succeed online. Consistent posting and optimization will help you achieve Google first-page ranking and AdSense approval.


FAQs

What is the difference between standard and extended ACL?

Standard ACL filters only source IP, while extended ACL filters source, destination, protocol, and ports.

Where should extended ACL be placed?

Near the source of traffic.

Why use serial cable in routers?

It is used for WAN connections between routers in labs and real-world scenarios.


Author: Sree Krishna Tech Solutions
Contact: pgollabala@gmail.com
Website: https://sreekrishnatechsolutionsatp2026.blogspot.com/


Start implementing today and build your networking expertise step by step!

to read below as follow steps 

                                  EXTENDED ACL LIST WITH WEB PAGE OPEN
Use generic server for iis
Configure all ip address and enable ip routing and make sure all system are pinging with each other.
And even check your are able to get the web page.



router r0
=============
router>en
router#config t
router(config)#hostname r0
r0(config)#interface f0/0
r0(config-if)#ip add 10.0.0.1 255.0.0.0
r0(config-if)#no shutdown
r0(config-if)#exit

r0(config)#interface f0/1
r0(config-if)#ip add 20.0.0.1 255.0.0.0
r0(config-if)#no shutdown
r0(config-if)#exit


r0(config)#interface s1/0
r0(config-if)#ip add 30.0.0.1 255.0.0.0 
r0(config-if)#clock rate 64000
r0(config-if)#no shutdown
r0(config-if)#exit

routing part
================
STATIC Routing

1. Configure all ip address
2. R0
Router(config)#ip route 10.0.0.0 255.0.0.0 30.0.0.2
Router(config)#ip route 20.0.0.0 255.0.0.0 30.0.0.2
Router(config)#ip route 30.0.0.0 255.0.0.0 30.0.0.2




router r1
=================
router>en
router#config t
router(config)#hostname r1
r1(config)#interface f0/0
r1(config-if)#ip add 40.0.0.1 255.0.0.0
r1(config-if)#no shutdown
r1(config-if)#exit


r1(config)#interface s1/0
r1(config-if)#ip add 30.0.0.2 255.0.0.0 
r1(config-if)#no shutdown
r1(config-if)#exit

routing part
=================
STATIC Routing

1. Configure all ip address
2. R1
Router(config)#ip route 30.0.0.0 255.0.0.0 30.0.0.1
Router(config)#ip route 40.0.0.0 255.0.0.0 30.0.0.1
Router(config)#ip route 50.0.0.0 255.0.0.0 30.0.0.1



R0
Router(config)#access-list 110 deny tcp 10.0.0.0 0.255.255.255 host 40.0.0.3 eq www
Router(config)#access-list 110 permit tcp any any 
Router(config)#access-list 110 permit icmp any any 
Router(config)#int s1/0
Router(config-if)#ip access-group 110 out



to click here more information about page 












Popup Iframe Example

Post a Comment

Previous Post Next Post