Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cisco 1600 routing problem

Status
Not open for further replies.

jahistx

Technical User
Jun 21, 2002
94
GB
Hi

I have just reconfigured the IP settings on a Cisco 1600 series router, which is hooked up via an ISDN line to a remote site.

Current settings as follows:

ethernet0 192.168.0.254 255.255.255.0
serial0 192.168.2.1 255.255.255.0

ip routing enabled

The settings of the router at the remote site are as follows:

ethernet0 192.168.3.254 255.255.255.0
serial0 192.168.2.2 255.255.255.0

from the router, I can ping the 192.168.3.x subnet, but from a node on the 192.168.0.x subnet, I cannot ping the 192.168.3.x range or the 192.168.2.2 address.

Can anyone help me to correct this problem? Any help much appreciated!
 
Hi

That full config:

version 12.0
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname routha
!
no logging console
enable secret 5 $1$dM99$4huhD./va.VDSzpraFEp9/
enable password 7 070D7154460C1801
!
username routha password 7 110B491D1F170A08
ip subnet-zero
no ip source-route
ip host routha 192.168.0.254
ip host pershore 192.168.2.2
!
!
!
interface Ethernet0
ip address 192.168.0.254 255.255.255.0
no ip directed-broadcast
no ip proxy-arp
!
interface Serial0
description RCN
bandwidth 64
ip address 192.168.2.1 255.255.255.0
no ip directed-broadcast
no ip proxy-arp
encapsulation ppp
!
router igrp 1
redistribute connected
network 192.168.0.0
network 192.168.2.0
!
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0
!
dialer-list 1 protocol ip permit
dialer-list 1 protocol ipx permit
!
line con 0
encapsulation ppp
!
router igrp 1
redistribute connected
network 192.168.0.0
network 192.168.2.0
!
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0
!
dialer-list 1 protocol ip permit
dialer-list 1 protocol ipx permit
!
line con 0
exec-timeout 120 0
transport input none
line vty 0 4
exec-timeout 0 0
password 7 104C59010D12130F
login local
!
end

Any help much appreciated!
 
try adding
network 192.168.3.0 to your igrp 1 routing protocol
 
What ip is your default GW? Make sure the gateway for the pc has routes to the x.x.2.x and x.x.3.x networks or at least a default route to the router.

Rico
 

Router 1

router igrp 1
network 192.168.0.0
network 192.168.2.0

Router 2

router igrp 1
network 192.168.3.0 <----Instead of 192.168.0.0 as
network 192.168.2.0 shown in your posting

The rest of your config looks fine.

best regards,
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top