Link to home
Start Free TrialLog in
Avatar of techdrive
techdriveFlag for United States of America

asked on

ip route command

Greetings.

I am trying to setup static routing and need some assistance please. I have two routers that talk to each other but I need them to talk to an additional router on a different network. Here is what I have. Router 1 and router 2 are a cisco 1841 and the other is an asus

Router1
FE0 172.46.23.1       255.255.255.192

I typed in "ip route 0.0.0.0 0.0.0.0 10.0.3.0"
I checked the routing table using sh ip route and I do not see nothing about 10.0.3.0 network.

ROUTER 2
FE0 172.16.46.       255.255.255.192


I typed in "ip route 0.0.0.0 0.0.0.0 10.0.3.0"
I checked the routing table using sh ip route and I do not see nothing about 10.0.3.0 network.
HERE is a 3rd router which is a SOHO router
internal 10.0.3.1

so I have configured static routing on the first router with the following.

10.0.3.1 and have forwarding setup on the router

i setup static interface for the asus router also
Avatar of Hemil Aquino
Hemil Aquino
Flag of United States of America image

From R1-R2: ip route (R2 subnet) 172.16.46.0 255.255.255.192 (next hop gateway)
From R2-R1: ip route (R1 Subnet) 172.46.23.0 255.255.255.192 (Next hope  gateway)
From R1-R3: ip route (R2 subnet) 172.16.46.0 255.255.255.192 (next hop gateway)
From R3-R1: ip route (R2 subnet) 10.0.3.1 255.255.255.0 (next hop gateway) ---Only router 1 will communicate with router 3

Does that make sense to you?
Avatar of techdrive

ASKER

thanks I see it now
It works?
User generated imageUser generated imageUser generated image switch
Attached is the result. I am pinging this from a machine thats on the 10.0.3.0 network. All are connected through a cisco  switch 3700 no vlans at this time., They are all online. I can go to that machine and work with connectivity who is on the same network 10.0.3.x but anything outside no go.
ASKER CERTIFIED SOLUTION
Avatar of Hemil Aquino
Hemil Aquino
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ok sorry about my absence but I found an issue and corrected it. Its 80 percent working. I found that 172.46 is a routable ip address so I switched my ip scheme to 10.10.1.x, 10.10.2.x and 10.10.3.x but here is my issue. 10.10.1.x is the asus router. I cannot get static routing working with this router. Static routing works with my other two cisco routers but not this one. Even when I do a tracert route it tries to go to the internet looking for 10.10.2.x
I got it resolved from the client Route Add -P destination ip address mask next hop.
Good, glad I help.