1
Add Serial Modules to All Routers
Click Router → Physical tab → Power OFF → Drag HWIC-2T → Power ON
Repeat for Router0, Router1, Router2, Router3
2
Connect Serial Cables (Mesh Topology)
Router0 Se0/3/0 ──────── Router1 Se0/3/0 (200.200.200.0/30)
Router1 Se0/3/1 ──────── Router2 Se0/3/1 (201.201.201.0/30)
Router2 Se0/3/0 ──────── Router3 Se0/3/1 (202.202.202.0/30)
Router3 Se0/3/0 ──────── Router0 Se0/3/1 (203.203.203.0/30)
3
Connect Ethernet Cables
PC0 ─── Switch0 Fa0/1 ─── Switch0 Fa0/2 ─── Router0 G0/0
PC1 ─── Switch3 Fa0/1 ─── Switch3 Fa0/2 ─── Router3 G0/0
PC2 ─── Switch3 Fa0/3 ─── Switch3 Fa0/4 ─── Router2 G0/0
Server0 ─── Switch3 Fa0/5
4
Configure Router0 (RIP only)
Router0> enable
Router0# configure terminal
Router0(config)# hostname R0
R0(config)# interface gigabitEthernet 0/0
R0(config-if)# ip address 192.168.10.1 255.255.255.0
R0(config-if)# no shutdown
R0(config-if)# exit
R0(config)# interface serial 0/3/0
R0(config-if)# ip address 200.200.200.1 255.255.255.252
R0(config-if)# clock rate 128000
R0(config-if)# no shutdown
R0(config-if)# exit
R0(config)# interface serial 0/3/1
R0(config-if)# ip address 203.203.203.1 255.255.255.252
R0(config-if)# no shutdown
R0(config-if)# exit
R0(config)# router rip
R0(config-router)# version 2
R0(config-router)# no auto-summary
R0(config-router)# network 192.168.10.0
R0(config-router)# network 200.200.200.0
R0(config-router)# network 203.203.203.0
R0(config-router)# end
R0# write memory
5
Configure Router1 (RIP only)
Router1> enable
Router1# configure terminal
Router1(config)# hostname R1
R1(config)# interface serial 0/3/0
R1(config-if)# ip address 200.200.200.2 255.255.255.252
R1(config-if)# no shutdown
R1(config-if)# exit
R1(config)# interface serial 0/3/1
R1(config-if)# ip address 201.201.201.1 255.255.255.252
R1(config-if)# clock rate 128000
R1(config-if)# no shutdown
R1(config-if)# exit
R1(config)# router rip
R1(config-router)# version 2
R1(config-router)# no auto-summary
R1(config-router)# network 200.200.200.0
R1(config-router)# network 201.201.201.0
R1(config-router)# end
R1# write memory
6
Configure Router2 (RIP only)
Router2> enable
Router2# configure terminal
Router2(config)# hostname R2
R2(config)# interface gigabitEthernet 0/0
R2(config-if)# ip address 192.168.11.1 255.255.255.0
R2(config-if)# no shutdown
R2(config-if)# exit
R2(config)# interface serial 0/3/1
R2(config-if)# ip address 201.201.201.2 255.255.255.252
R2(config-if)# no shutdown
R2(config-if)# exit
R2(config)# interface serial 0/3/0
R2(config-if)# ip address 202.202.202.1 255.255.255.252
R2(config-if)# clock rate 128000
R2(config-if)# no shutdown
R2(config-if)# exit
R2(config)# router rip
R2(config-router)# version 2
R2(config-router)# no auto-summary
R2(config-router)# network 192.168.11.0
R2(config-router)# network 201.201.201.0
R2(config-router)# network 202.202.202.0
R2(config-router)# end
R2# write memory
7
Configure Router3 (RIP only)
Router3> enable
Router3# configure terminal
Router3(config)# hostname R3
R3(config)# interface gigabitEthernet 0/0
R3(config-if)# ip address 192.168.12.1 255.255.255.0
R3(config-if)# no shutdown
R3(config-if)# exit
R3(config)# interface serial 0/3/1
R3(config-if)# ip address 202.202.202.2 255.255.255.252
R3(config-if)# no shutdown
R3(config-if)# exit
R3(config)# interface serial 0/3/0
R3(config-if)# ip address 203.203.203.2 255.255.255.252
R3(config-if)# clock rate 128000
R3(config-if)# no shutdown
R3(config-if)# exit
R3(config)# router rip
R3(config-router)# version 2
R3(config-router)# no auto-summary
R3(config-router)# network 192.168.12.0
R3(config-router)# network 202.202.202.0
R3(config-router)# network 203.203.203.0
R3(config-router)# end
R3# write memory
8
Verify RIP is Working
R0# show ip route rip
R0# show ip protocols
R2# show ip route rip
✅ RIP should now be exchanging routes between all 4 routers.