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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem pinging

Status
Not open for further replies.

rlgaooa

IS-IT--Management
Dec 18, 2002
65
US
I am having a problem pinging through a router configuration I just built. Within the Cisco console I can ping from fastethernet interface to interface. From a machine in the same subnet as the router I can ping the fastethernet interface but can go no further. I have enclosed my routing configuration in case you can spot something I have missed.
2650main#show run
Building configuration...

Current configuration : 1278 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname 2650main
!
enable secret
enable password
!
ip subnet-zero
!
!
!
!
controller T1 0/1
framing esf
clock source internal
linecode b8zs
channel-group 0 timeslots 1-24 speed 64
!
controller T1 0/2
framing esf
clock source internal
linecode b8zs
channel-group 0 timeslots 1-24 speed 64
!
!
!
interface FastEthernet0/0
ip address 172.18.1.20 255.255.255.0
ip helper-address 172.18.1.1
speed auto
full-duplex
!
interface Serial0/0
description connected to branch office
ip address 172.20.2.24 255.255.255.0
encapsulation ppp
no keepalive
no fair-queue
service-module t1 clock source internal
service-module t1 remote-alarm-enable
!
interface Serial0/1:0
description connected to Nap Office
ip unnumbered FastEthernet0/0
!
interface Serial0/2:0
description Connected to San Office
ip unnumbered FastEthernet0/0
!
router rip
network 172.18.0.0
network 172.19.0.0
network 172.20.0.0
network 172.21.0.0
!
ip classless
ip route 172.20.1.0 255.255.255.0 172.20.2.20
no ip http server
ip pim bidir-enable
!
!
line con 0
line aux 0
line vty 0 4
password
login
!
no scheduler allocate
end
Second router
2650Branch#show run
Building configuration...

Current configuration : 895 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname 2650Branch
!
enable secret
enable password
!
ip subnet-zero
!
!
ip domain-name aooanwot.com
ip name-server 172.18.1.1
!
interface FastEthernet0/0
description connected to the Branch office
ip address 172.20.1.20 255.255.255.0
ip helper-address 172.18.1.1
duplex auto
speed auto
!
interface Serial0/0
description connected to the main office
ip address 172.20.2.20 255.255.255.0
encapsulation ppp
no keepalive
fair-queue
service-module t1 remote-alarm-enable
!
router rip
version 2
network 172.20.0.0
no auto-summary
!
ip classless
ip route 172.18.1.0 255.255.255.0 172.20.2.24
no ip http server
ip pim bidir-enable
!
!
line con 0
exec-timeout 0 0
line aux 0
line vty 0 4
password
login
!
end

2650Branch#
 
Not sure what your layout/design is here? You don't supply a lot of information in your description of the problem. You are trying to ping machines behind fastether 0/0 or what other interface?
What is this in there for; ip route 172.18.1.0 255.255.255.0 172.20.2.24 , is 172.20.2.24 the next hop? If so is it pointing back to 172.18.1.0? Because if it isn't then your packets coming from 172.20.2.24 don't know where to go and you need to add a route on that machine as well. A simpler notion would be to add 172.18.1.0 to the RIP2 protocol you have running (that is if rip is running on all of your machines). These are just some guesses as I don't have a full understanding of your question.
 
Thank you for responding so quickly, I am attempting to connect three remote sites to one main site. I have placed one router (2650branch) at a remote site. It's internal network segment is 172.20.1.0. I need to pass all non 172.20.1.0 traffic to the main office. It's network segment is 172.18.1.0. I am using point to point T1 lines. Main Network 172.18.1.0 --- Router 172.20.2.24---T1---172.20.2.20 Router--- 172.20.1.0 Branch Network. I am trying to ping from 172.18.1.0 to 172.20.1.0. I'm not sure I need to have a static route or that if I do I have it configured correctly.
 
Configure rip version 2 and no auto-summary on 2650main and remove the static routes from both router if possible.Since you are running rip static routes not required

Are you able to ping the serial and Ethernet IP's of 2650branch from the 2650main and vice versa ?If this works then check the defaultgateway of the Machines from which you are pinging.Should be routers eth IP.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top