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

PIX 501 PPPoE config 1

Status
Not open for further replies.

techalum

IS-IT--Management
Oct 11, 2006
38
US
I am missing something on my PPPoE config. It should be static with PPPoE enabled. I still can't get a tunnel. Here is the config. Please let me know if you see anything left off.
Thanks,
Scott

PIX Version 6.3(5)
interface ethernet0 auto
interface ethernet1 100full
nameif ethernet0 outside security0
nameif ethernet1 inside security100
enable password Oc2sn9Odaq4XBtBY encrypted
passwd 2KFQnbNIdI.2KYOU encrypted
hostname TF501
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
mtu outside 1500
mtu inside 1500
ip address outside 75.37.221.14 255.255.255.248
ip address inside 10.200.45.1 255.255.255.0
ip audit info action alarm
ip audit attack action alarm
pdm history enable
arp timeout 14400
route outside 0.0.0.0 0.0.0.0 75.37.221.9 1
timeout xlate 3:00: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 sip-disconnect 0:02:00 sip-invite 0:03:00
timeout uauth 0:05:00 absolute
aaa-server TACACS+ protocol tacacs+
aaa-server TACACS+ max-failed-attempts 3
aaa-server TACACS+ deadtime 10
aaa-server RADIUS protocol radius
aaa-server RADIUS max-failed-attempts 3
aaa-server RADIUS deadtime 10
aaa-server LOCAL protocol local
no snmp-server location
no snmp-server contact
floodguard enable
telnet timeout 5
ssh timeout 5
console timeout 0
vpdn group pixgrp request dialout pppoe
vpdn group pixgrp localname xxxxxxx
vpdn group pixgrp ppp authentication pap
vpdn username xxxxxxx password *********
vpdn enable outside
dhcpd dns 192.168.169.20 192.168.169.21
dhcpd wins 192.168.169.20 192.168.169.21
dhcpd lease 259200
dhcpd ping_timeout 750
dhcpd domain travelfocus.com
dhcpd auto_config outside
vpnclient server 1x.x.x.x
vpnclient mode network-extension-mode
vpnclient vpngroup Pixgrp password ********
vpnclient username TF501 password ********
terminal width 80
 
remove
Code:
ip address outside 75.37.221.14 255.255.255.248
route outside 0.0.0.0 0.0.0.0 75.37.221.9 1

add
Code:
ip address outside pppoe setroute

that should be it

your DSL provider will give the pix its outside interface IP and the default route upon auth.

FYI: you also might want to change your passwords since you posted them!


 
Thanks for the information. I have added the setroute line. Question: Will I not need to use the ip address outside and route outside code when the true ip's are given? It won't work without it unless I am totally confused now.
 
first you need to set you DSL modem in bridged mode for this to work
(your provider should be able to help you with this)
then the pix will authenticate with your DSL provider via pppoe
during this authentication your pix will be assigned an ip and a route

the ip address outside pppoe setroute command tells the pix that the pppoe will set this info for me

based on your username and password your isp will issue the allocated IP to your outside interface


upon successful authentication you type sh ip you should have the correct ip (your assigned static) issued.


 
Ok.........so Ineed to just remove those two lines of code and the ip address outside pppoe setroute will autmoatically assign the ip, default gateway and subnet mask. The DSL has been set into bridge mode. Anything else or should that be the trick? I appreicate your help.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top