PC Review


Reply
Thread Tools Rate Thread

cannot ping from subnet A to subnet B for a specific host

 
 
soup_or_power@yahoo.com
Guest
Posts: n/a
 
      3rd Aug 2006
Hi
I cannot ping 192.168.5.149 from 192.168.11.65 and vice-versa.
The gateway for 192.168.5.149 is 192.168.5.1 and for 192.168.11.65 the
gateway is 192.168.11.253

Here is the router config

Using 1165 out of 29688 bytes
!
version 12.0
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname Corp-WAN
!
enable secret 5 $1$Hfy0$HVtYn6SGr01RgJHPW33ZG.
enable password 7 025701431B030C355946061400
!
ip subnet-zero
ip name-server 141.155.0.68
!
!
!
!
interface FastEthernet0/0
ip address 192.168.11.253 255.255.255.0
no ip directed-broadcast
ip nat inside
!
interface Serial0/0
ip address 192.168.254.1 255.255.255.0
no ip directed-broadcast
shutdown
!
interface FastEthernet0/1
ip address 192.168.5.2 255.255.255.0
no ip directed-broadcast
ip nat outside
!
ip nat inside source list 2 interface FastEthernet0/1 overload
ip nat inside source static 192.168.11.63 192.168.5.63
ip nat inside source static 192.168.11.13 192.168.5.13
ip nat inside source static 192.168.11.61 192.168.5.61
ip nat inside source static 192.168.11.58 192.168.5.58
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.5.1
no ip http server
!
access-list 2 permit 192.168.11.0 0.0.0.255
!
line con 0
password 7 0055161E145E08121A2943430C
login
transport input none
line aux 0
line vty 0 4
password 7 0055161E145E08121A2943430C
login
!
no scheduler allocate
end

I'd appreciate if you can kindly explain to me the router config.

Thanks

 
Reply With Quote
 
 
 
 
Kurt
Guest
Posts: n/a
 
      4th Aug 2006
It appears that whoever set up the router config wanted only one-way
initialized communication between the .11 and the .5 networks. The router's
interface on the 192.168.11.0 network is configured as a source NAT
Interface, and the Interface on the .5 network as the destination NAT
interface. Hosts 192.168.11.13, 58, 61 & 63 are statically mapped to the
same Host ID on the 192.168.5.0 network for some reason. With NAT,
connections have to be initiated from the source side. This appears to be a
Cisco configuration so I'm not sure whether the router will route packets
directly between interfaces that have been configured for NAT, but it
doesn't seem likely. Check the default gateway on the 192.168.11.65 computer
and see if it points to .1 If so, pointing it to .253 should fix it. Beyond
that, more info on the network would be required. Google for "Cisco NAT
configuration example" or "Cisco NAT tutorial" and see if you can get the
specifics.

....kurt


<(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi
> I cannot ping 192.168.5.149 from 192.168.11.65 and vice-versa.
> The gateway for 192.168.5.149 is 192.168.5.1 and for 192.168.11.65 the
> gateway is 192.168.11.253
>
> Here is the router config
>
> Using 1165 out of 29688 bytes
> !
> version 12.0
> service timestamps debug uptime
> service timestamps log uptime
> service password-encryption
> !
> hostname Corp-WAN
> !
> enable secret 5 $1$Hfy0$HVtYn6SGr01RgJHPW33ZG.
> enable password 7 025701431B030C355946061400
> !
> ip subnet-zero
> ip name-server 141.155.0.68
> !
> !
> !
> !
> interface FastEthernet0/0
> ip address 192.168.11.253 255.255.255.0
> no ip directed-broadcast
> ip nat inside
> !
> interface Serial0/0
> ip address 192.168.254.1 255.255.255.0
> no ip directed-broadcast
> shutdown
> !
> interface FastEthernet0/1
> ip address 192.168.5.2 255.255.255.0
> no ip directed-broadcast
> ip nat outside
> !
> ip nat inside source list 2 interface FastEthernet0/1 overload
> ip nat inside source static 192.168.11.63 192.168.5.63
> ip nat inside source static 192.168.11.13 192.168.5.13
> ip nat inside source static 192.168.11.61 192.168.5.61
> ip nat inside source static 192.168.11.58 192.168.5.58
> ip classless
> ip route 0.0.0.0 0.0.0.0 192.168.5.1
> no ip http server
> !
> access-list 2 permit 192.168.11.0 0.0.0.255
> !
> line con 0
> password 7 0055161E145E08121A2943430C
> login
> transport input none
> line aux 0
> line vty 0 4
> password 7 0055161E145E08121A2943430C
> login
> !
> no scheduler allocate
> end
>
> I'd appreciate if you can kindly explain to me the router config.
>
> Thanks
>



 
Reply With Quote
 
soup_or_power@yahoo.com
Guest
Posts: n/a
 
      9th Aug 2006
Thanks Kurt.
Kurt wrote:
> It appears that whoever set up the router config wanted only one-way
> initialized communication between the .11 and the .5 networks. The router's
> interface on the 192.168.11.0 network is configured as a source NAT
> Interface, and the Interface on the .5 network as the destination NAT
> interface. Hosts 192.168.11.13, 58, 61 & 63 are statically mapped to the
> same Host ID on the 192.168.5.0 network for some reason. With NAT,
> connections have to be initiated from the source side. This appears to be a
> Cisco configuration so I'm not sure whether the router will route packets
> directly between interfaces that have been configured for NAT, but it
> doesn't seem likely. Check the default gateway on the 192.168.11.65 computer
> and see if it points to .1 If so, pointing it to .253 should fix it. Beyond
> that, more info on the network would be required. Google for "Cisco NAT
> configuration example" or "Cisco NAT tutorial" and see if you can get the
> specifics.
>
> ...kurt
>
>
> <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Hi
> > I cannot ping 192.168.5.149 from 192.168.11.65 and vice-versa.
> > The gateway for 192.168.5.149 is 192.168.5.1 and for 192.168.11.65 the
> > gateway is 192.168.11.253
> >
> > Here is the router config
> >
> > Using 1165 out of 29688 bytes
> > !
> > version 12.0
> > service timestamps debug uptime
> > service timestamps log uptime
> > service password-encryption
> > !
> > hostname Corp-WAN
> > !
> > enable secret 5 $1$Hfy0$HVtYn6SGr01RgJHPW33ZG.
> > enable password 7 025701431B030C355946061400
> > !
> > ip subnet-zero
> > ip name-server 141.155.0.68
> > !
> > !
> > !
> > !
> > interface FastEthernet0/0
> > ip address 192.168.11.253 255.255.255.0
> > no ip directed-broadcast
> > ip nat inside
> > !
> > interface Serial0/0
> > ip address 192.168.254.1 255.255.255.0
> > no ip directed-broadcast
> > shutdown
> > !
> > interface FastEthernet0/1
> > ip address 192.168.5.2 255.255.255.0
> > no ip directed-broadcast
> > ip nat outside
> > !
> > ip nat inside source list 2 interface FastEthernet0/1 overload
> > ip nat inside source static 192.168.11.63 192.168.5.63
> > ip nat inside source static 192.168.11.13 192.168.5.13
> > ip nat inside source static 192.168.11.61 192.168.5.61
> > ip nat inside source static 192.168.11.58 192.168.5.58
> > ip classless
> > ip route 0.0.0.0 0.0.0.0 192.168.5.1
> > no ip http server
> > !
> > access-list 2 permit 192.168.11.0 0.0.0.255
> > !
> > line con 0
> > password 7 0055161E145E08121A2943430C
> > login
> > transport input none
> > line aux 0
> > line vty 0 4
> > password 7 0055161E145E08121A2943430C
> > login
> > !
> > no scheduler allocate
> > end
> >
> > I'd appreciate if you can kindly explain to me the router config.
> >
> > Thanks
> >


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can ping windows 2K wireless host, not XP, from Vista (same subnet =?Utf-8?B?SVBUVkd1eQ==?= Windows Vista Networking 3 10th Jul 2007 09:12 PM
Cannot ping subnet through VPN =?Utf-8?B?RGF2aWQ=?= Microsoft Windows 2000 RAS Routing 3 16th Jul 2005 03:10 AM
issues with installing DC in Subnet A then moving it to Subnet B? Scott Townsend Microsoft Windows 2000 Active Directory 2 24th Feb 2005 03:48 AM
w95 workgroup subnet - w2k domain subnet; shares? woof Microsoft Windows 2000 Networking 4 20th Apr 2004 01:09 PM
2003 Server in subnet A can't join W2k domain with DCs in subnet B Timothy Kidd Microsoft Windows 2000 Networking 1 8th Jan 2004 03:38 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:41 AM.