cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
593
Views
0
Helpful
1
Replies

do i have to create a static route for multiple routers to get to a network ?

dolanduck.
Level 1
Level 1

For example say i have 3 routers connected to each other and on the left i have 192.168.0.0 which is connected to R1 and i want to reach 192.168.9.0 network  which is connected to r3. My question is do i have to create a static route for each router to get to the other network or do i create one static route on the router 192.168.0.0 is connected to ? 

1 Reply 1

luis_cordova
VIP Alumni
VIP Alumni

Hi @dolanduck.  ,

 

If you are going to route by static routes, you must create a static route or routes to get to mark the path that the packet must take to go and return:

 

192.168.0.0/24 f0/0 R1 f0/1 192.168.1.0/24 f0/0 R2 f0/1 192.168.2.0/24 f0/0 R3 f0/1 192.168.9.0/24

 

R1

ip route 192.168.9.0 255.255.255.0 f0/0

R2

ip route 192.168.9.0 255.255.255.0 f0/1

ip route 192.168.0.0 255.255.255.0 f0/0

R3

ip route 192.168.0.0 255.255.255.0 f0/0

 

Regards