Roaring - Penguin Pppoe Server

Download from Roaring Penguin site 3. Basic PPPoE Server Setup Step 1 – Configure PPP options Edit /etc/ppp/pppoe-server-options (create if missing):

ifconfig | grep ppp Create /etc/systemd/system/pppoe-server.service :

[Install] WantedBy=multi-user.target

sudo pppoe-server -I eth0 -L 10.0.0.1 -R 10.0.0.100 -N 50 -C "MyISP" -S "internet" Find your server from a client:

sudo apt update sudo apt install pppoe

[Unit] Description=PPPoE Server After=network.target [Service] ExecStart=/usr/sbin/pppoe-server -I eth0 -L 192.168.100.1 -R 192.168.100.10 -N 64 ExecStop=/usr/bin/killall pppoe-server Restart=always

Then:

pppoe-discovery -I eth0 :