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

Unable to ping from Router 2 to Router1 any pc.

Status
Not open for further replies.

AtharvaNaresh

Technical User
Feb 8, 2012
4
0
0
AE
Sir,
This is my complete configuration

My problem is I can ping from 192.168.167.x to 192.168.169.x any PV IP but I am not able to ping 192.168.167.x PC

Site 1
------------------------------
User Access Verification
Password:
rak2electro#sh conf
Using 1071 out of 196600 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname rak2electro
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$7bRu$v7z43tOJ984HwI/IT2YVs/
enable password cisco1
!
no aaa new-model
!
resource policy
!
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
ip subnet-zero
ip cef
!
!
no ip dhcp use vrf connected
!
!
!
username admin privilege 15 secret 5 $1$vNDV$3r7G2IVK11qH3AV8ZZPlL1
!
!
!
interface FastEthernet0/0
ip address 192.168.167.101 255.255.255.0
ip nat inside
speed auto
full-duplex
no mop enabled
!
interface FastEthernet0/1
ip address 192.168.166.202 255.255.255.0
ip nat outside
duplex auto
speed auto
!
router rip
version 2
redistribute connected
network 192.168.166.0
network 192.168.167.0
!
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.166.205
!
ip http server
!
access-list 100 permit ip any any
!
control-plane
!
!
line con 0
password cisco
login
line aux 0
line vty 0 4
privilege level 15
password cisco
login
!
end
rak2electro#

----------------------------------------
Site 2
elec2rak#sh conf
Using 923 out of 196600 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname elec2rak
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$Il0J$MHk9XlAzWOSdgb/YqFKCt/
enable password cisco1
!
no aaa new-model
!
resource policy
!
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
ip subnet-zero
ip cef
!
!
no ip dhcp use vrf connected
!
!
!
!
!
!
interface FastEthernet0/0
ip address 192.168.169.252 255.255.255.0
ip nat inside
speed auto
full-duplex
no mop enabled
!
interface FastEthernet0/1
ip address 192.168.166.205 255.255.255.0
ip nat outside
duplex auto
speed auto
!
router rip
version 2
redistribute connected
network 192.168.166.0
network 192.168.167.0
!
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.166.202
!
ip http server
!
!
control-plane
!
!
line con 0
line aux 0
line vty 0 4
password cisco
login
!
end
elec2rak#

This is my complete configuration

My problem is I can ping from 192.168.167.x to 192.168.169.x any PV IP but I am not able to ping 192.168.167.x PC
 
That network is not in RIP
actually it is since the OP is redistributing connected routes, plus the OP has default routes in both routers pointing to each other.

first of all, remove the parts of the config that don't need to be there:
1) remove the NAT config from both routers
2) in your RIP config, choose to either redistribute connected or specify the networks, not both. this isn't causing any issues, but you are being redundant by doing both. if you are going to specify the networks in your RIP config, go to router 2 and remove the .167 network and add the .169 network
3) since this is a two router topology and you are using RIP to advertise your networks you can remove your default routes

you say that you are not able to ping 192.168.167.x PC, is this only a single PC or is is any PC on the subnet?? what OS is running on the PC(s)?? is there a host-based firewall enabled?? does the PC have the proper network configuration in terms of subnet mask and gateway??

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top