Activity-Static Routing
Device Interface IP Address Subnet Mask Default Gateway
Router 0 g0/0 192.168.0.1 255.255.255.0 NA
s0/0/1 10.1.1.1 255.255.255.252 NA
Router 1 g0/0 192.168.1.1 255.255.255.0 NA
s0/0/0 10.1.1.2 255.255.255.252 NA
PC0 NIC 192.168.0.10 255.255.255.0 192.168.0.1
PC1 NIC 192.168.1.10 255.255.255.0 192.168.1.1
TASK 1:
Configure basic settings for router, switch and PC.
TASK 2: Configure Standard static route
1) Configure the standard static route between router 0 and router 1.
Router0(config)# ip route 192.168.1.0 255.255.255.0 10.1.1.2
Router1(config)# ip route 192.168.0.0 255.255.255.0 s0/0/1
2) Ping PC0 to PC1. You should receive reply messages which means you have
configured the static routing correctly and the desktops in different network are able to
communicate with each other.
3) Verify the standard static routes.
Router0# show ip route
Router1# show ip route
TASK 3: Configure default route (default static route)
1) Remove the static route between Router 0 and Router 1.
Router0(config)# no ip route 192.168.1.0 255.255.255.0 10.1.1.2
Router1(config)# no ip route 192.168.0.0 255.255.255.0 s0/0/1
2) Configure default route between Router 0 and Router 1.
Router0(config)# ip route 0.0.0.0 0.0.0.0 10.1.1.2
Router1(config)# ip route 0.0.0.0 0.0.0.0 s0/0/1
3) Ping PC0 to PC1. You should receive reply messages which means you have configured
the static routing correctly and the desktops in different network are able to communicate
with each other.
4) Verify the default routes.
Router0# show ip route
Router1# show ip route