Static Routing Lab v1
Static Routing Lab v1
PC1 PC2
Task
Configure Static Routing on R1 and R2 so that PC1 and PC2 could Ping each other successfully
Related Info:
‐ All Loopback IP’s & Interface IP’s are mentioned in this topology Diagram above
‐ PC IP/Gateway, Router Interface IP’s and Loopback IP’s are already configured (so that you can focus on this Lab
configuration only)
1 www.networkwalks.com [email protected]
Solution
Verification
✓ Verification1: Verify the connectivity and routes, using show commands on R1 and R2 as in
below:
R1#show ip route
R2#show ip route
It shows that our configuration is successful because both routers are exchanging their routes with
each other now. R1 has routes to reach R2’s subnets(PC2) and R2 has routes to R1’s subnets (PC1).
2 www.networkwalks.com [email protected]
✓ Verification2: Verify the connectivity and routes using Ping from PC1 to PC2 and from PC2 to
PC1:
PC1#ping 192.168.0.2
PC2#ping 10.0.0.2
Ping works successfully as in below. It means that our Configuration has been successful:
3 www.networkwalks.com [email protected]
Other relevant Verification/Show Commands:
R1#show ip protocols (check the routing protocols running on local Router)
R1#show ip interface brief (check the status of interfaces on a Router)
Complete Solution
Below is complete solution containing all commands from scratch if you want to
simulate yourself:
Complete Solution
nw_R1 nw_R2
nw_R1(config)#hostname nw_R1 nw_R2(config)#hostname nw_R2
nw_R1(config)#ip route 192.168.0.0 255.255.255.0 12.12.12.2 nw_R2(config)#ip route 10.0.0.0 255.255.255.0 12.12.12.1
nw_R1(config)#ip route 2.2.2.2 255.255.255.255 12.12.12.2 nw_R2(config)#ip route 1.1.1.1 255.255.255.255 12.12.12.1
4 www.networkwalks.com [email protected]