Objective
To practice load balance with 2 static route for a network segment
Topology
Basic Setting
IPs for PCs and routers as well as static routes have been configuredRequirements
In this lab, we only require network 192.168.1.0/24 and 192.168.6.0/24 can communicate.
You are required to set up 2 static routes to 192.168.6.0/24 on Router8, and 2 static routes to 192.168.1.0/24 on Router 5.
On router 2, 3 and 4, static routes to 192.168.1.0/24 and 192.168.6.0/24 are also required.
On router 1, 0, 7, static routes to 192.168.1.0/24 and 192.168.6.0/24 are also needed.
Steps
On Route2
Router#confi t
Router(config)#ip route 192.168.1.0 255.255.255.0 192.168.2.1
Router(config)#ip route 192.168.6.0 255.255.255.0 192.168.3.2
On Router3
Router#confi t
Router(config)#ip route 192.168.1.0 255.255.255.0 192.168.3.1
Router(config)#ip route 192.168.6.0 255.255.255.0 192.168.4.2
On Router4
Router#conf t
Router(config)#ip route 192.168.1.0 255.255.255.0 192.168.4.1
Router(config)#ip route 192.168.5.0 255.255.255.0 192.168.5.2
On Router1
Router#confi t
Router(config)#ip route 192.168.1.0 255.255.255.0 192.168.0.2
Router(config)#ip route 192.168.6.0 255.255.255.0 192.168.9.1
On Router0
Router#confi t
Router(config)#ip route 192.168.1.0 255.255.255.0 192.168.9.2
Router(config)#ip route 192.168.6.0 255.255.255.0 192.168.8.1
On Router 7
Router#confi t
Router(config)#ip route 192.168.1.0 255.255.255.0 192.168.8.2
Router(config)#ip route 192.168.6.0 255.255.255.0 192.168.7.1
On Router8, add to routes to 192.168.6.0/24
Router#confi t
Router(config)#ip route 192.168.6.0 255.255.255.0 192.168.2.2
Router(config)#ip route 192.168.6.0 255.255.255.0 192.168.0.1
On Router5, add to static routes to 192.168.1.0/24
Router#confi t
Router(config)#ip route 192.168.1.0 255.255.255.0 192.168.5.1
Router(config)#ip route 192.168.1.0 255.255.255.0 192.168.7.2
Test load balance
From PC0 to PC1
PC>ping 192.168.6.2
Pinging 192.168.6.2 with 32 bytes of data:
Reply from 192.168.6.2: bytes=32 time=34ms TTL=123
Reply from 192.168.6.2: bytes=32 time=35ms TTL=123
Reply from 192.168.6.2: bytes=32 time=31ms TTL=123
Reply from 192.168.6.2: bytes=32 time=35ms TTL=123
Ping statistics for 192.168.6.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 31ms, Maximum = 35ms, Average = 33ms
Shut down serial 2/0 on Router 3
Router#confi t
Router(config)#int serial 2/0
Router(config-if)#sh
Ping from PC0 to PC1
PC>ping 192.168.6.2
Pinging 192.168.6.2 with 32 bytes of data:
Reply from 192.168.3.2: Destination host unreachable. // via Router 3
Reply from 192.168.6.2: bytes=32 time=34ms TTL=123 // this route OK
Reply from 192.168.3.2: Destination host unreachable.
Request timed out.
Ping statistics for 192.168.6.2:
Packets: Sent = 4, Received = 1, Lost = 3 (75% loss),
Approximate round trip times in milli-seconds:
Minimum = 16ms, Maximum = 34ms, Average = 71ms
PC>
No comments :
Post a Comment