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

501 with PPPOE no internet

Status
Not open for further replies.
Nov 19, 2003
42
0
0
US
out of the box, I plugged this bad boy into an SBC DSL line.. the DSL is up and running, does work.

The PPPOE connects on the pix, gets an IP address. In my telnet session I can ping the DNS servers and other devices on the internet from a telnet sessions.

behind the firewall, I can't get out. Nothing. DHCP, DNS, all is running fine.

any tips?

:
PIX Version 6.3(3)
interface ethernet0 auto
interface ethernet1 100full
nameif ethernet0 outside security0
nameif ethernet1 inside security100
enable password 8Ry2YjIyt7RRXU24 encrypted
passwd 2KFQnbNIdI.2KYOU encrypted
hostname pixfirewall
domain-name ciscopix.com
fixup protocol dns maximum-length 512
fixup protocol ftp 21
fixup protocol h323 h225 1720
fixup protocol h323 ras 1718-1719
fixup protocol http 80
fixup protocol rsh 514
fixup protocol rtsp 554
fixup protocol sip 5060
fixup protocol sip udp 5060
fixup protocol skinny 2000
fixup protocol smtp 25
fixup protocol sqlnet 1521
fixup protocol tftp 69
names
pager lines 24
mtu outside 1500
mtu inside 1500
ip address outside pppoe setroute
ip address inside 192.168.1.1 255.255.255.0
ip audit info action alarm
ip audit attack action alarm
pdm logging informational 100
pdm history enable
arp timeout 14400
global (outside) 1
nat (inside) 1 0.0.0.0 0.0.0.0 0 0
timeout xlate 0:05:00
timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 rpc 0:10:00 h225 1:00:00
timeout h323 0:05:00 mgcp 0:05:00 sip 0:30:00 sip_media 0:02:00
timeout uauth 0:05:00 absolute
aaa-server TACACS+ protocol tacacs+
aaa-server RADIUS protocol radius
aaa-server LOCAL protocol local
http server enable
http 192.168.1.0 255.255.255.0 inside
no snmp-server location
no snmp-server contact
snmp-server community public
no snmp-server enable traps
floodguard enable
telnet 192.168.1.0 255.255.255.0 inside
telnet timeout 5
ssh timeout 5
console timeout 0
vpdn group pppoe_group request dialout pppoe
vpdn group pppoe_group localname geotext@sbcglobal.net
vpdn group pppoe_group ppp authentication pap
vpdn username geotext@sbcglobal.net password *********
dhcpd address 192.168.1.2-192.168.1.129 inside
dhcpd lease 3600
dhcpd ping_timeout 750
dhcpd auto_config outside
dhcpd enable inside
terminal width 80
Cryptochecksum:22dea4dc5762cc936570711cb669f304
: end
 
I think your configuration is corrupted.
global (outside) 1
should say
global (outside) 1 interface



 
You need to add an ACL to your PIX to be able to get to the internet.

Here use this and you will be able to get to the internet behind the your PIX.

access-list 101 deny udp any any eq 135
access-list 101 deny tcp any any eq 135
access-list 101 deny udp any any eq netbios-ns
access-list 101 deny tcp any any eq 137
access-list 101 deny udp any any eq 139
access-list 101 deny tcp any any eq netbios-ssn
access-list 101 deny udp any any eq 445
access-list 101 deny tcp any any eq 445
access-list 101 deny tcp any any eq 593
access-list 101 permit ip any any

access-group 101 in interface outside

Hope this helps,
ralwyn
 
yeah, I figured it out. I think it was corrupted or the ACL list.... I even had the acl list in there to permit ICMP and IP from ANY to out and still would not go... one more reboot and this finally started to work. It was very odd because I looked at the config for ever along with 3 other cisco guys and we couldnt figure it out other than corruption. But thanks for your help!

go packers

tc
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top