Pppoe: Point-to-Point Protocol Over Ethernet
Pppoe: Point-to-Point Protocol Over Ethernet
PPP (Point to Point Protocol) was originally used on serial interfaces for point-to-point interfaces.
DSL and cable Internet connections and ISPs wanted to keep using PPP
Ethernet so it wasn’t possible to use PPP from your computer or router
MP0x-1 MP0x-2
as it had to travel over an Ethernet link. To fix this problem, a new RFC Downlink
BRAS0x
Downlink
SWITCH CISCO
Luồng traffic
DSLAM
DSLAM
DSLAM
DSLAM
Modem KH
PPPoE Stages
• PPPoE Discovery Stage
The PPPoE discovery stage consists of the following steps:
PPPoE active discovery initiation (PADI)
PPPoE active discovery offer (PADO)
PPPoE active discovery request (PADR)
PPPoE active discovery session-Confirmation (PADS)
interface Virtual-Template 1
ip address 10.0.0.1 255.255.255.0
peer default ip address pool PPPoE_Pool
ppp authentication chap
3. Create Pool IP
ip local pool PPPoE_Pool 10.0.0.2 10.0.0.254
username TUT password MyPPPoE
4.Finally link the PPPoE profile to the physical E0/0 interface, which is connected to the PPPoE client.
interface Ethernet0/0
pppoe enable group MyPPPoEProfile
1. First we need to create a dialer interface with the interface Dialer 2 command.
interface Dialer 2
encapsulation ppp
ip address negotiated
ppp chap hostname TUT
ppp chap password MyPPPoE
ip mtu 1492
dialer pool 1
2. The physical Ethernet0/1 interface that connects toward the PPPoE Server is enabled PPPoE with the pppoe
enable command. This physical interface is then linked to dialer pool 1 with the pppoe-client dial-pool-number 1
command.
interface Ethernet0/1
no ip address
pppoe enable
pppoe-client dial-pool-number 1