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!

pppoe server in cisco

Status
Not open for further replies.

fatonk

ISP
Sep 27, 2005
12
0
0
US
Hello,

I'am trying to configure a cisco 806 router as a pppoe server, just to do some test but I'm failing to complete the configuration, does anyone has a configuration which has been tested working.

Please find my configuration below:

Router#sh run
Building configuration...

Current configuration : 1252 bytes
!
version 12.3
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Router
!
boot-start-marker
boot-end-marker
!
!
aaa new-model
!
!
aaa authentication ppp ipko group faton
aaa authorization network ipko group faton
aaa accounting exec ipko start-stop group faton
aaa accounting network ipko start-stop group faton
aaa session-id common
ip subnet-zero
!
ip dhcp pool ipko
network 192.168.2.0 255.255.255.0
dns-server 80.80.160.9
default-router 192.168.2.1
!
vpdn enable
!
vpdn-group faton
accept-dialin
protocol pppoe
virtual-template 11
!
!
username faton password 0 faton
!
!
!
!
!
interface Loopback0
no ip address
!
interface Ethernet0
ip address 192.168.2.1 255.255.255.0
pppoe enable
!
interface Ethernet1
ip address 10.1.0.74 255.255.255.0
!
interface Virtual-Template11
no ip address
peer default ip address pool customers
vpdn authorization ipko
ppp authentication pap ipko
ppp authorization ipko
ppp accounting ipko
!
ip local pool customers 192.168.2.10 192.168.2.100
ip classless
ip route 0.0.0.0 0.0.0.0 10.1.0.254
ip http server
no ip http secure-server
!
!
line con 0
stopbits 1
line vty 0 4
!
scheduler max-task-time 5000
end

Best regards

Faton
 
Try a combination of 1 or both of the following changes:

A. interface Virtual-Template11
ip unnumbered Ethernet1

B. interface Virtual-Template11
ip mtu 1492
 
Hi,

I am also trying to configure my 2611 as a PPPoE server. However, I cannot add the virtual-template into the vpdn-group. The command virtual-template doesn't exist under vpdn-group command. I'm running IOS version 12.3(15a). Any help will be greatly appreciated. Thanks.
 
I just did this on a 1750 last week. i didn't use a 'virtual-template' commnad anywhere though.

Code:
vpdn-group 1
 request-dialin
  protocol pppoe


interface Ethernet0
 description DSL WAN Interface
 no ip address
 no ip redirects
 no ip unreachables
 no ip proxy-arp
 no ip mroute-cache
 half-duplex
 pppoe enable
 pppoe-client dial-pool-number 1
 no cdp enable
!
interface FastEthernet0
 description DSL LAN Interface
 ip address 192.168.7.1 255.255.255.0
 no ip redirects
 no ip unreachables
 no ip proxy-arp
 ip nat inside
 ip tcp adjust-mss 1408
 no ip mroute-cache
 speed auto
 no cdp enable
!
interface Dialer1
 description DSL WAN Dialer
 ip address xx.xxx.xx.xx 255.255.255.248
 no ip unreachables
 ip nat outside
 encapsulation ppp
 no ip mroute-cache
 dialer pool 1
 dialer-group 1
 no cdp enable
 ppp authentication pap callin
 ppp pap sent-username ********* password 0 ************
 crypto map towash
!
ip nat inside source list nonat interface Dialer1 overload
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer1
no ip http server
no ip http secure-server

Mine ain't perfect yet but it is up and running. If you wanna post your config I'd be happy to compare it to mine.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top