I am trying to configure a 2600 to router for Internet Access. Not sure why my Nat translations are not working. I'm trying to get inside machines to gain internet access through Ethernet0/0. From the router I can ping to any outside address and I can also ping to any inside address. From any inside machine, I cannot ping past the router. Below is my current configuration:
interface FastEthernet0/0
description Line to DSL
ip address x.x.x.28 255.255.255.240
ip nat outside
speed auto
half-duplex
!
interface Serial0/0
description T1 line to Colo-location
ip address 100.100.100.1 255.255.255.0
ip nat inside
!
interface FastEthernet0/1
description inside LAN
ip address 100.100.200.1 255.255.255.0
ip nat inside
speed auto
half-duplex
!
ip nat pool ovrld x.x.x.1 x.x.x.1 prefix-length 24
ip nat inside source list 3 pool ovrld overload
ip classless
ip route 0.0.0.0 0.0.0.0 x.x.x.1
ip http server
!
access-list 7 permit 100.100.200.0 0.0.0.128
Not a Cisco Expert, can anyone help me out??
interface FastEthernet0/0
description Line to DSL
ip address x.x.x.28 255.255.255.240
ip nat outside
speed auto
half-duplex
!
interface Serial0/0
description T1 line to Colo-location
ip address 100.100.100.1 255.255.255.0
ip nat inside
!
interface FastEthernet0/1
description inside LAN
ip address 100.100.200.1 255.255.255.0
ip nat inside
speed auto
half-duplex
!
ip nat pool ovrld x.x.x.1 x.x.x.1 prefix-length 24
ip nat inside source list 3 pool ovrld overload
ip classless
ip route 0.0.0.0 0.0.0.0 x.x.x.1
ip http server
!
access-list 7 permit 100.100.200.0 0.0.0.128
Not a Cisco Expert, can anyone help me out??