I have a configuration where two Cisco routers are in different subnets. The first one is in 192.168.0.0/24 and the second one is in 192.168.1.0/24. The routers are connected via serial by the 192.168.2.0/30.
My problem is that I cannot ping computers from 192.168.0.0/24 to 192.168.1.0/24. I set a static route to 192.168.2.0/30 in order to make all traffic from 192.168.1.0/24 go to serial's router.
ip address 192.168.0.254 255.255.255.0on interface s0/0ip address 192.168.2.2 255.255.255.252on config tip route 192.168.2.0 255.255.255.252 s0/0and that's all I do on one router, same in the other but with different ip address, the routers are cisco router 1700 – poz2k4444 Sep 13 '12 at 15:49routes- two route entries, one on each router. And the ones you have are wrong (redundant) - router already knows how to route to network on a directly connected interface, no need to tell it that. You need to define how to reach networks .0.0 and .1.0. One entry per router. – wmz Sep 13 '12 at 16:12ifconfigandroute(or equivalent) for each router, so it will be possible to tell what's wrong. Router model might be useful too. – Eroen Sep 13 '12 at 16:29