|
Objective: Configure RIP routing on routers.
Cable a network that is similar on the network below.
Lab Equipment Configuration
Router Designation |
Router Name | Fast Ethernet 0/0 Address | Serial 0/0 Address | Serial 0/1 Address |
Router 1 | London | 172.16.10.1 | 172.16.20.1 | |
Router 2 | Tokyo | 172.16.30.1 | 172.16.20.2 | 172.16.40.1 |
Router 3 | Sydney | 172.16.50.1 | 172.16.40.2 |
The subnet mask for both interfaces on all routers is 255.255.255.0
Configure the interfaces of the router according to the chart.
Router 1
London#configure terminal
London(config)#interface f0/0
London(config-if)#ip address 172.16.10.1 255.255.255.0
London(config-if)#no shutdown
London(config-if)#interface s0/0
London(config-if)#ip address 172.16.20.1 255.255.255.0
London(config-if)#no shutdown
Router 2
Tokyo#configure terminal
Tokyo(config)#interface f0/0
Tokyo(config-if)#ip address 172.16.30.1 255.255.255.0
Tokyo(config-if)#no shutdown
Tokyo(config-if)#interface s0/0
Tokyo(config-if)#ip address 172.16.20.2 255.255.255.0
Tokyo(config-if)#no shutdown
Tokyo(config-if)#interface s0/1
Tokyo(config-if)#ip address 172.16.40.1 255.255.255.0
Tokyo(config-if)#no shutdown
Router 3
Sydney#configure terminal
Sdyney(config)#interface f0/0
Sydney(config-if)#ip address 172.16.50.1 255.255.255.0
Sydney(config-if)#no shutdown
Sydney(config-if)#interface s0/0
Sydney(config-if)#ip address 172.16.40.2 255.255.255.0
Sydney(config-if)#no shutdown
Enable RIP routing
London#configure terminal
London(config)#router rip
London(config-router)#network 172.16.10.0
London(config-router)#network 172.16.20.0
Tokyo#configure terminal
Tokyo(config)#router rip
Tokyo(config-router)#network 172.16.20.0
Tokyo(config-router)#network 172.16.30.0
Tokyo(config-router)#network 172.16.40.0
Sydney#configure terminal
Sydney(config)#router rip
Sydney(config-router)#network 172.16.40.0
Sydney(config-router)#network 172.16.50.0
Show the London routing table
Show the Tokyo routing table
Show the Sydney routing table