PPPoE – PPP over Ethernet

PPP can be encapsulated over Ethernet and it can be used to offer authentication over Ethernet connections. It cannot be used for Multilinking Ethernet connections. When using PPPoE we need a server and a client.

Server Side

Configuring the server makes use of the Virtual Template/Virtual Access interfaces. We configure the Virtual Template interface, but the Virtual Access interface will be up/up in the process. Its configuration will be taken from the Vitual Template interface. First define the Virtual Template that will hold the PPP configuration:

R1(config)# int VIRTUAL-TEMPLATE-INT
R1(config-if)# ip address IP-ADDR NETMASK
! define IP assignment for clients:
R1(config-if)# peer default ip address {CLIENT-IP | pool [IP-POOL]| dhcp-pool [DHCP-POOL] |dhcp}

See PPP 101 for details about client IP assignment. Then, configure the Broadband Access Group that points to the Virtual-Template interface:

R1(config)# bba-group pppoe {GROUP-NAME|default}
R1(config-bba-group)# VIRTUAL-TEMPLATE-INT

The last step is to enable PPPoE on the physical interface and assign it to the BBA-Group:

R1(config)# interface FAST-ETHERNET-INT
R1(config-if)# pppoe enable group {GROUP|default}

Client Side

On the client side, we have to make use of Dialer Interfaces. Dialer Interfaces will look for a physical interface available in their Dialer Pool before initiating connections

PPPoE Dialer

Physical interfaces are assigned to Dialer Pools:

Additional information about Dialer Interfaces, can be found here.

After a little while we will see the assigned IP address on the interface and the PPP /32 ip route:

If we want to enable authentication, just configure the PPP interfaces on each device, that is the Virtual-Template on the Server and the Dialer interface on the Client.

Last updated

Was this helpful?