Dial PPPoE connection

Point-to-Point Protocol over Ethernet (PPPoE) allow mbox to dial to ISP DSL service through an ethernet connection. PPPoE is getting less popular now but still exists in some countries.

In order to connect to PPPoE, we just need to connect mbox ethernet port to a DSL modem (with RJ45 connection) and input the given username & password (provided by ISP).

When configuring PPPoE interfaces, please note:

SAMPLE CONFIG

!interface eth0 description "connect to ISP/PPPoE" enable pppoe 101500223 20160205665 default!interface eth1 description "connect to LAN" enable ip address 192.168.10.1/24 dhcp-server  dns 8.8.8.8  range 192.168.10.5 192.168.10.254!ip dhcp-server start!firewall-access 11 permit outbound ppp0!firewall-snat 11 overload outbound ppp0!

NOTE: when using PPPoE with Multi-WAN config, there're a few points to note:

1. the next-hop is usually dynamic or unknown, so in the MWAN config, use ppp0/ppp1 as next-hop, eg. 

!ip route 0.0.0.0/0 nexthop ppp0ip route 0.0.0.0/0 nexthop ppp1ip route 0.0.0.0/0 nexthop ppp2

2. the MWAN config is applied under ppp interface config, eg. 

!interface ppp 0 mwan-group 0  track 8.8.8.8  metric 1  weight 1!

Attached below is a sample config for configuring MWAN with PPPoE,  where mbox is connecting to two ISPs, eth0 to ISP1 using fiber/ONT; eth1 to ISP2 using PPPoE/DSLModem.