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

NAT 1

Status
Not open for further replies.
Feb 4, 2006
70
US
I can get an extended ping from the outside interface to 4.2.2.2 but I cannot get an extended ping from the inside interface. I cannot get a ping from my laptop to 4.2.2.2. Is my NAT setup right. Config is as follows.

Building configuration...

Current configuration : 3331 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R1
!
boot-start-marker
boot-end-marker
!
no logging console
logging monitor errors
enable secret 5 $1$T.sS$v78LNGNHpVE7o.Z4s51MB1
!
no network-clock-participate slot 1
no network-clock-participate wic 0
no aaa new-model
ip subnet-zero
!
!
ip host Lab-A 192.168.7.2 192.168.5.1 192.168.6.1
ip host Lab-B 192.168.5.2 192.168.4.1
ip host Lab-C 192.168.4.2 192.168.1.3
ip host Lab-D 192.168.7.1 192.168.1.4
ip dhcp excluded-address 192.168.1.1 192.168.1.4
!
ip dhcp pool DHCP
network 192.168.1.0 255.255.255.0
default-router 192.168.1.4
dns-server 4.2.2.2 4.2.2.3
!
ip cef
!
interface FastEthernet0/0
ip address 68.234.132.254 255.255.255.0
ip nat outside
duplex auto
speed auto

!
interface Serial0/0
ip address 192.168.7.1 255.255.255.0
!
interface FastEthernet0/1
ip address 192.168.1.4 255.255.255.0
ip nat inside
duplex auto
speed auto
!

ip nat inside source list 1 interface FastEthernet0/0 overload
ip http server
no ip http secure-server
ip classless
ip route 0.0.0.0 0.0.0.0 68.234.132.1
!
!
access-list 1 permit 0.0.0.0 255.255.255.0
!
!
!
end
 
Change your wildcard bits to;

access-list 1 permit 192.168.0.0 0.0.255.255
 
Star?

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