how to configured three routers cisco 1841 leased line configuation with console cable

 

Configure Three Cisco 1841 Routers with Leased Line Using Console Cable

This guide explains how to connect and configure three Cisco 1841 Integrated Services Router routers using:

  • Console cable

  • Serial leased line connection

  • Static routing

  • IP addressing


Network Topology

PC1 ---- R1 ---- R2 ---- R3 ---- PC2

Interface Connections

RouterInterfaceConnected To
R1Serial0/0/0R2 Serial0/0/0
R2Serial0/0/1R3 Serial0/0/0
R1FastEthernet0/0LAN1
R3FastEthernet0/0LAN2

IP Addressing Table

DeviceInterfaceIP AddressSubnet Mask
R1Fa0/0192.168.1.1255.255.255.0
R1S0/0/010.0.0.1255.255.255.252
R2S0/0/010.0.0.2255.255.255.252
R2S0/0/120.0.0.1255.255.255.252
R3S0/0/020.0.0.2255.255.255.252
R3Fa0/0192.168.2.1255.255.255.0

Required Devices

  • 3 Cisco 1841 Routers

  • Console cable

  • Serial DCE/DTE cables

  • 2 PCs

  • Power cables


Step 1: Connect Console Cable

Connect the console cable from PC to router console port.

Open:

  • PuTTY

  • Tera Term

  • HyperTerminal

Console settings:

SettingValue
Speed9600
Data bits8
ParityNone
Stop bits1
Flow controlNone

Step 2: Configure Router R1

enable
configure terminal

hostname R1

interface fastethernet0/0
ip address 192.168.1.1 255.255.255.0
no shutdown
exit

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

ip route 192.168.2.0 255.255.255.0 10.0.0.2

end
write memory

Step 3: Configure Router R2

enable
configure terminal

hostname R2

interface serial0/0/0
ip address 10.0.0.2 255.255.255.252
no shutdown
exit

interface serial0/0/1
ip address 20.0.0.1 255.255.255.252
clock rate 64000
no shutdown
exit

ip route 192.168.1.0 255.255.255.0 10.0.0.1
ip route 192.168.2.0 255.255.255.0 20.0.0.2

end
write memory

Step 4: Configure Router R3

enable
configure terminal

hostname R3

interface fastethernet0/0
ip address 192.168.2.1 255.255.255.0
no shutdown
exit

interface serial0/0/0
ip address 20.0.0.2 255.255.255.252
no shutdown
exit

ip route 192.168.1.0 255.255.255.0 20.0.0.1

end
write memory

Step 5: Configure PCs

PC1

IP Address : 192.168.1.2
Subnet Mask: 255.255.255.0
Gateway    : 192.168.1.1

PC2

IP Address : 192.168.2.2
Subnet Mask: 255.255.255.0
Gateway    : 192.168.2.1

Step 6: Verify Configuration

Check Interfaces

show ip interface brief

Check Routing Table

show ip route

Test Connectivity

From PC1:

ping 192.168.2.2

Important Notes

  • Apply clock rate 64000 only on the DCE side serial interface.

  • Use no shutdown on all interfaces.

  • Save configuration using:

write memory

Expected Result

After configuration:

✅ R1 communicates with R2
✅ R2 communicates with R3
✅ PC1 can ping PC2 through leased line network
✅ Static routing works correctly

Popup Iframe Example
Email This BlogThis! Share to X Share to Facebook Share to Pinterest

Post a Comment

Previous Post Next Post