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

PPPoE

Status
Not open for further replies.

kaneranch

MIS
Sep 1, 2002
25
GB
I am trying to configure a cisco 831 using pppoe.Am trying to setup a VPN tunnel and the local isp has given me a user-id and password.
Have looked at the cisco web site but see nothing to show where the user id and password should be in the configuration??Any help would be appreciated.
 
Try the routers web access, if possible. I remember on the 806 there was a default set up for PPPoE and you could just put in all the ISP info to include username and password.

SF18C
CCNP, MCSE, A+, N+ & HPCC

"Tis better to die on your feet than live on your knees!"
 
Hello, can you post your config online and make sure that you clear any important information first. I have configured PPPoE for SBCGlobal internet PPP DSL connections hopefully this sample config will help you get your router configured for PPPoE.

version 12.2
no service pad
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname router
!
clock timezone EST -5
clock summer-time EDT recurring
ip subnet-zero
ip dhcp excluded-address 10.1.1.1
!
ip dhcp pool LOCALPOOL
import all
network 10.1.1.0 255.255.255.0
default-router 10.1.1.1
!
ip ssh time-out 120
ip ssh authentication-retries 3
vpdn enable
!
vpdn-group office
request-dialin
protocol pppoe
!
!
!
!
interface Ethernet0
description Inside interface facing private network
ip address 10.1.1.1 255.255.255.0
ip nat inside
ip tcp adjust-mss 1492
no cdp enable
hold-queue 32 in
hold-queue 100 out
!
interface Ethernet1
description Outside interface talking PPPoE
no ip address
ip nat outside
pppoe enable
pppoe-client dial-pool-number 1
no cdp enable
!
interface Dialer1
ip address negotiated
ip mtu 1492
ip nat outside
encapsulation ppp
dialer pool 1
dialer-group 1
no cdp enable
ppp authentication pap callin
ppp pap sent-username password 7
!
ip nat inside source route-map nonat interface Dialer1 overload
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer1
no ip http server
ip pim bidir-enable
!
!
access-list 1 permit 10.1.1.0 0.0.0.255 log
access-list 102 permit ip 10.0.0.0 0.255.255.255 any
no cdp run
route-map nonat permit 10
match ip address 102
!
!
line con 0
exec-timeout 120 0
stopbits 1
line vty 0 4
access-class 1 in
exec-timeout 0 0
password 7
login
!
scheduler max-task-time 5000
ntp clock-period 17176001
ntp server
end

Cheers,

Cisco_God
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top