Another Cisco Routing Question

Ur_Mom

Fully [H]
Joined
May 15, 2006
Messages
20,687
I've got my routers set up, and have them configured. But, I have having issues.

I have them setup like so:


Code:
192.168.100.1(ETH0)--[ROUTER 1]--(S0)10.0.0.1--------192.168.200.1(S0)--[ROUTER2]--(LO0)192.168.210.1

Now, I have RIP V1 set up on both routers, and am not sure what interface to add to the network command.

On Router1 do I use network 10.0.0.0 and router2 use network 192.168.200.0? Will that allow me to ping 192.168.210.1 from Router1? I can't as it is right now (I tried adding all the IP's that I could think of, but couldn't get it working...

Any help is appreciated! :) I'm able to telnet in to router 1 and configure it from there, but not router 2. I'm working on it, though! :) I'm learning some cool stuff! It's definitely been a while since I touched these things, but it reminded me that it is so fun to play with Cisco stuff!
 
um, it looks like your routers can't talk to each other. Both of your serial interfaces should be on the same subnet or a point to point /30 network.

Somethin like this:

ROUTER1:
s0: 10.0.0.1/30 (255.255.255.252)
e0: 192.168.100.0/24 (255.255.255.0)

ROUTER2:
s0: 10.0.0.2/30 (255.255.255.252)
e0: 192.168.200.0/24 (255.255.255.0)
 
Ok, it was the network address issue. Thanks! :) All working now! Kick ass!
 
Back
Top