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

PIX PPPoE config help

Status
Not open for further replies.

enzo288

MIS
Joined
Jun 15, 2004
Messages
44
Location
US
I have a small client who just switched to a DSL line for their office. I needed to configure PPPoE on the PIX 501 for the DSL service but for some reason, I can't get clients to connect to the Internet. Here's the config:

PIX Version 6.3(3)
interface ethernet0 auto
interface ethernet1 100full
nameif ethernet0 outside security0
nameif ethernet1 inside security100
enable password gV4JPYkTsI1yikK/ encrypted
passwd gV4JPYkTsI1yikK/ encrypted
hostname SFDpix
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 ils 389
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
access-list 103 permit ip 192.168.1.0 255.255.255.0 192.168.101.0 255.255.255.0
pager lines 24
mtu outside 1500
mtu inside 1500
ip address outside pppoe setroute
ip address inside 192.168.1.2 255.255.255.0
ip audit info action alarm
ip audit attack action alarm
ip local pool clients 192.168.101.1-192.168.101.254
pdm logging informational 100
pdm history enable
arp timeout 14400
global (outside) 1 xx.xx.xx.x-xx.xx.xx.x
nat (inside) 0 access-list 103
nat (inside) 1 192.168.1.0 255.255.255.0 0 0
access-group 103 in interface outside
route outside 0.0.0.0 0.0.0.0 xx.xxx.x.x 1
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
sysopt connection permit-ipsec
crypto ipsec transform-set myset esp-3des esp-md5-hmac
crypto dynamic-map dynmap 30 set transform-set myset
crypto map newmap 20 ipsec-isakmp dynamic dynmap
crypto map newmap interface outside
isakmp enable outside
isakmp identity address
isakmp policy 10 authentication pre-share
isakmp policy 10 encryption 3des
isakmp policy 10 hash md5
isakmp policy 10 group 2
isakmp policy 10 lifetime 86400
vpngroup SFDvpn address-pool clients
vpngroup SFDvpn dns-server 192.168.1.10
vpngroup SFDvpn wins-server 192.168.1.10
vpngroup SFDvpn idle-time 1800
vpngroup SFDvpn password ********
vpngroup CFIvpn address-pool clients
vpngroup CFIvpn dns-server 192.168.1.10
vpngroup CFIvpn wins-server 192.168.1.10
vpngroup CFIvpn idle-time 1800
vpngroup CFIvpn password ********
telnet 192.168.1.10 255.255.255.255 inside
telnet 192.168.1.0 255.255.255.0 inside
telnet timeout 5
ssh timeout 5
console timeout 0
vpdn group pppoex request dialout pppoe
vpdn group pppoex ppp authentication pap
vpdn group pppoe localname xajuin3549@static.sbcglobal.net
vpdn username xajuin3549@static.sbcglobal.net password *********
terminal width 80
Cryptochecksum:391a8b2a60651341b1f6bf700e6910aa
: end

This is my first time having to configure PPPoE, seems straightforward. Do you see anything wrong in this config? TIA
 
You need a global for your NAT.

Code:
global (outside) 0 interface
 
I do,
global (outside) 1 xx.xx.xx.x-xx.xx.xx.x
nat (inside) 0 access-list 103
nat (inside) 1 192.168.1.0 255.255.255.0 0 0

Is this incorrect?

CCNA, CCDA, CCNP, CCDP, almost CCIE
 
Since your IP is dynamic... How are you using a static address as your NAT/PAT address?

Change it to use interface, so it will use the current outside interface's address.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top