cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1683
Views
5
Helpful
2
Replies

PPPoe server support configuration for cisco 2901 router

Yasmeen
Level 1
Level 1

Hi Team, 

       Is it possible to configure cisco router 2901 - with pppoe server 

  • can i able to configure pppoe server configuration on cisco router 2901 
  • pls reply me 
  • share me the PPPoe server configuration commands 
  • what are all the routers can support PPPoe server configuartion  
2 Replies 2

Giuseppe Larosa
Hall of Fame
Hall of Fame

Hello Yasmeen,

see the following thread for an example

https://community.cisco.com/t5/networking-documents/pppoe-client-server-setup-and-configuration/ta-p/3122524

 

The commands may be available or not depending on your licenses on the C2900

 

edit:

see this more recent thread using the bba-group command  with explanations by Cisco expert Peter Paluch

https://community.cisco.com/t5/routing/need-help-configuring-pppoe-server-on-a-cisco-router/td-p/3228954

 

Hope to help

Giuseppe

 

 

@Yasmeen hello,

 

This is an example of configuring PPPoE in a back-to-back scenario. The objective here is to simulate a PPPoE server (typically found on the ISP end)

Client--Fa0/0----------------------------------------Fa0/0--Server

In this example, we're using 2 routers connected back-to-back on their Fa0/0 ports. Here're the parameters being simulated

  1. Authentication using Chap/Pap (Username: cisco, password: sisco)
  2. Client being authenticated by the server (one way authentication)
  3. IP address being negotiated using IPCP

Here's the relevant configuration needed on the client router

interface FastEthernet0/0

no ip address

no ip redirects

no ip unreachables

no ip proxy-arp

ip virtual-reassembly

ip tcp adjust-mss 1452

duplex auto

speed auto

pppoe enable

pppoe-client dial-pool-number 1

!

interface Dialer1

ip address negotiated

encapsulation ppp

dialer pool 1

dialer-group 1

no cdp enable

ppp authentication pap chap callin

ppp pap sent-username cisco password sisco

ppp chap hostname cisco

ppp chap password sisco

!

ip route 0.0.0.0 0.0.0.0 Dialer1

Here's the relevant configuration needed on the Server

username cisco password sisco

!

bba-group pppoe global

virtual-template 1

!

interface FastEthernet0/0

ip address 10.252.102.49 255.255.255.240

ip rip advertise 4

load-interval 30

duplex auto

speed auto

pppoe enable group global

!

interface Virtual-Template1

mtu 1492

ip unnumbered FastEthernet0/0

peer default ip address pool pppoepool

ppp authentication pap chap

!

ip local pool pppoepool 10.10.10.1 10.10.10.200

!

Here's how the flow will be

  1. Client negotiates PPPoE using PADo, PADi and PADr with the server, both client and server move into PPP-->LCP phase
  2. Client/Server negotiate authentication, other parameters
  3. Server asks the client for a username/password (using pap, as pap is configured before chap)
  4. Client sends out a username/password configured in it's dialer
  5. Server authenticates this username/password against its global username/password list (alternatively a AAA/Radius server)
  6. Client and Server both move on to IPCP phase
  7. Client sends an ip address of 0.0.0.0 (asking for an ip address from the Server)
  8. Server hands out an IP address from its pool (in this case pppoepool)
  9. Client/Server finish IPCP phase and the link comes up

At this time, the link should be up and able to pass traffic

 

 

Original post here:https://community.cisco.com/t5/networking-documents/pppoe-client-server-setup-and-configuration/ta-p/3122524

Jaderson Pessoa
*** Rate All Helpful Responses ***
Review Cisco Networking products for a $25 gift card