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

Cannot get to internet behind Cisco 2600 router 2

Status
Not open for further replies.

Virtual1

Technical User
Jun 28, 2002
4
US
I have a 2611 router connected to the internet. I can ping the outside world from the router, but I cannot get out to the internet from behind the router.

Here's what my configuration shows:

interface Serial0/0
bandwidth 1536
ip address <not shown>
encapsulation ppp
no fair-queue

interface Ethernet0/1
ip address 10.10.10.1 255.255.255.0
ip access-group 101 out
full-duplex
!
no ip http server
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0/0
!
!
access-list 101 permit ip 10.10.10.0 0.0.0.255 any log

Can someone tell me what I might be missing in this configuration?

Thanks in advance!
 
Hello
Is this a point-to-point T1 line to a remote site,or is ISP giving you a T1 for Internet access?Also do you have a public IP address on the WAN interface?
Most likely you will need NAT:

Interface Serial0/0
ip nat outside


interface Ethernet0/1
ip nat inside
no ip access-group 101 out

ip nat inside source list 101 interface Serial0/0 overload

Then configure the clients with the router's Ethernet0/1 ip address as the default gateway and use your ISP DNS server.You can also make the router act as a DHCP server,so you don't have to configure the workstations manually.

Regards
 
Yes , this is a PPP from ISP to internet and I do have a public IP.
 
Star him!

/

tim@tim-laptop ~ $ sudo apt-get install windows
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package windows...Thank Goodness!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top