I will setup on CRS112-8G-4S-IN the a PPPoE Server.
Hardware Setup:
CRS112-8G-4S-IN — SFP — SFP — DSLAM ——- FritzBox!
Found this Link: https://wiki.mikrotik.com/wiki/Manual:Interface/PPPoE
How setup a passthrough for DNS and NTP Server?
Thanks Markus
Code: Select all
To configure MikroTik RouterOS to be an Access Concentrator (PPPoE Server):
add an address pool for the clients from 10.1.1.62 to 10.1.1.72;
add ppp profile;
add ppp secret (username/password);
add pppoe server itself.
/ip pool
add name="pppoe-pool" ranges=10.1.1.62-10.1.1.72
/ppp profile
add name="pppoe-profile" local-address=10.1.1.1 remote-address=pppoe-pool
/ppp secret
add name=user password=passwd service=pppoe profile=pppoe-profile
/interface pppoe-server server
add service-name=internet interface=wlan1 default-profile=pppoe-profile disabled=no