Static Routing Topology Diagram
Addressing Table
| Device | Interface | IP Address | Subnet Mask |
| R1 | Se0/0 | 192.168.1.1 | 255.255.25.0 |
| R2 | Se0/0 | 192.168.1.2 | 255.255.25.0 |
| R2 | Se0/1 | 172.16.1.1 | 255.255.25.0 |
| R3 | Se0/0 | 172.16.1.2 | 255.255.25.0 |
| R3 | Fa0/0 | 10.6.1.1 | 255.255.25.0 |
Configure RIP
R1
Router(config)#interface serial 0/0
Router(config-if)#ip address 192.168.1.1 255.255.255.0
Router(config-if)#clock rate 64000
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#ip route 172.16.1.0 255.255.255.0 192.168.1.2
Router(config)#ip route 10.6.1.0 255.255.255.0 192.168.1.2
R2
Router(config)#interface serial 0/0
Router(config-if)#ip address 192.168.1.2 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface serial 0/1
Router(config-if)#ip address 172.16.1.1 255.255.255.0
Router(config-if)#clock rate 56000
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#ip route 10.6.1.0 255.255.255.0 172.16.1.2
R3
Router(config)#interface serial 0/0
Router(config-if)#ip address 172.16.1.2 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface fastEthernet 0/0
Router(config-if)#ip address 10.6.1.1 255.255.255.0
Router(config-if)#exit
Router(config)#ip route 192.168.1.0 255.255.255.0 172.16.1.1
Verify RIP Routing
R1
Router#show ip route
Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP
i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area
* – candidate default, U – per-user static route, o – ODR
P – periodic downloaded static routeGateway of last resort is not set
10.0.0.0/24 is subnetted, 1 subnets
S 10.6.1.0 [1/0] via 192.168.1.2
172.16.0.0/24 is subnetted, 1 subnets
S 172.16.1.0 [1/0] via 192.168.1.2
C 192.168.1.0/24 is directly connected, Serial0/0
Router#
R2
Router#show ip route
Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP
i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area
* – candidate default, U – per-user static route, o – ODR
P – periodic downloaded static routeGateway of last resort is not set
10.0.0.0/24 is subnetted, 1 subnets
S 10.6.1.0 [1/0] via 172.16.1.2
172.16.0.0/24 is subnetted, 1 subnets
C 172.16.1.0 is directly connected, Serial0/1
C 192.168.1.0/24 is directly connected, Serial0/0
Router#
R3
Tags: Static routing, static route calculator, ccna topology diagram, static routing ccna, ccna 10 6 1 1, online basic static routing lab, packet tracer 5 3 static route lab, packet tracer router to router connection, static routeRouter#show ip route
Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP
i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area
* – candidate default, U – per-user static route, o – ODR
P – periodic downloaded static routeGateway of last resort is not set
10.0.0.0/24 is subnetted, 1 subnets
C 10.6.1.0 is directly connected, FastEthernet0/0
172.16.0.0/24 is subnetted, 1 subnets
C 172.16.1.0 is directly connected, Serial0/0
S 192.168.1.0/24 [1/0] via 172.16.1.1
Router#
Related posts:
0 Comments.