Deadasbetamax
MIS
I am attempting to get a 1800 router to connect to the internet using a single external ip address to provide NAT for all client computers using the following relevant portions of the current config.
version 12.4
interface FastEthernet0/0
description Connected to LAN$ES_LAN$
ip address 192.168.1.2 255.255.255.0
no ip redirects
no ip unreachables
no ip proxy-arp
ip nat inside
ip route-cache flow
duplex auto
speed auto
no mop enabled
!
interface Serial0/0/0
description Connect to the Internet
ip address 144.223.10.150 255.255.255.252
ip access-group 101 in
no ip redirects
no ip unreachables
no ip proxy-arp
ip nat outside
ip route-cache flow
!
ip classless
ip route 0.0.0.0 0.0.0.0 144.223.10.149
!
ip nat pool inet_add 198.69.35.239 198.69.35.239 netmask 255.255.255.248
ip nat inside source list 10 pool inet_add overload
ip nat inside source static 192.168.1.101 198.69.35.237
ip nat inside source static 192.168.1.225 198.69.35.238
!
!
logging trap debugging
access-list 10 permit 192.168.1.0
access-list 101 permit tcp any host 144.223.10.150 eq telnet
access-list 101 permit tcp any host 198.69.35.237 eq 9833
access-list 101 permit tcp any host 198.69.35.237 eq 27015
access-list 101 permit tcp any host 198.69.35.237 eq 27016
access-list 101 permit tcp any host 198.69.35.238 eq 3000
access-list 101 permit tcp any host 198.69.35.238 eq 3001
access-list 101 permit tcp any host 198.69.35.238 eq 3003
access-list 101 permit tcp any host 198.69.35.238 eq 3007
access-list 101 permit tcp any host 198.69.35.238 eq 8800
access-list 101 permit tcp any host 198.69.35.238 eq www
access-list 101 deny ip any any
no cdp run
!
When I remove the 101 access-list everything works fine. Soon as I make the first entry however I loose all connectivity to the Internet. I know I am missing something, I just can't figure out what it is. Any help would be greatly appreciated.
version 12.4
interface FastEthernet0/0
description Connected to LAN$ES_LAN$
ip address 192.168.1.2 255.255.255.0
no ip redirects
no ip unreachables
no ip proxy-arp
ip nat inside
ip route-cache flow
duplex auto
speed auto
no mop enabled
!
interface Serial0/0/0
description Connect to the Internet
ip address 144.223.10.150 255.255.255.252
ip access-group 101 in
no ip redirects
no ip unreachables
no ip proxy-arp
ip nat outside
ip route-cache flow
!
ip classless
ip route 0.0.0.0 0.0.0.0 144.223.10.149
!
ip nat pool inet_add 198.69.35.239 198.69.35.239 netmask 255.255.255.248
ip nat inside source list 10 pool inet_add overload
ip nat inside source static 192.168.1.101 198.69.35.237
ip nat inside source static 192.168.1.225 198.69.35.238
!
!
logging trap debugging
access-list 10 permit 192.168.1.0
access-list 101 permit tcp any host 144.223.10.150 eq telnet
access-list 101 permit tcp any host 198.69.35.237 eq 9833
access-list 101 permit tcp any host 198.69.35.237 eq 27015
access-list 101 permit tcp any host 198.69.35.237 eq 27016
access-list 101 permit tcp any host 198.69.35.238 eq 3000
access-list 101 permit tcp any host 198.69.35.238 eq 3001
access-list 101 permit tcp any host 198.69.35.238 eq 3003
access-list 101 permit tcp any host 198.69.35.238 eq 3007
access-list 101 permit tcp any host 198.69.35.238 eq 8800
access-list 101 permit tcp any host 198.69.35.238 eq www
access-list 101 deny ip any any
no cdp run
!
When I remove the 101 access-list everything works fine. Soon as I make the first entry however I loose all connectivity to the Internet. I know I am missing something, I just can't figure out what it is. Any help would be greatly appreciated.