Link to home
Start Free TrialLog in
Avatar of wrt1mea
wrt1mea

asked on

No internet connection from inside. Need help!!!!

I have a Cisco 2600 router. I have it pulling DHCP from the ISP. Wanside is performing address pull. The ISP can see my router from the outside. However, I can get no internet connection from my internal LAN. This is my running config:

no aaa new-model
ip subnet-zero
ip cef
!
!
ip name-server 204.yyy.yyy.yyy
ip name-server 216.yyy.yyy.yyy
no ip dhcp-client broadcast-flag
!
!
!
!
interface Ethernet0/0
 description line Real World Interface
 ip address dhcp client-id Ethernet0/0 hostname Wewahitchka
 ip nat outside
 full-duplex
!
interface Ethernet0/1
 description LAN INTERFACE
 ip address 172.16.0.1 255.255.0.0
 full-duplex
!
router rip
 network 12.0.0.0
 network 172.16.0.0
!
ip http server
ip classless
ip route 0.0.0.0 0.0.0.0 12.yyy.yyy.1
!
Avatar of calvinetter
calvinetter
Flag of United States of America image

You need to setup NAT in order for workstations to be able to connect.
  Do this:
access-list 100 permit ip 172.16.0.0 0.0.255.255 any
ip nat inside source list 100 interface e0/0 overload

If 12.yyy.yyy.1 is your ISP's gateway, then there's no point in having RIP configured with it.
  Also do this:
router rip
  no network 12.0.0.0

cheers
Avatar of wrt1mea
wrt1mea

ASKER

I need to apply this access-list to my Lan or Wan inteface?
ASKER CERTIFIED SOLUTION
Avatar of calvinetter
calvinetter
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial