Reboot PPPoE-Server

Hi,

I look for a Script, with which I can every 24 hours again start the PPPoe-Server. Does someone have an idea?

dingsingo

i did not try this, but should be something like this:

/system script add name=pppoe_restarter source={/interface pppoe-server server disable; /interface pppoe-server server enable}
/system scheduler add on-event=pppoe_restarter interval=1d start-time=startup

reboot the computer that is running pppoe or restart the pppoe service?

reboot computer:

/ system scheduler add interval=24h on-event={ / system reboot }

reboot pppoe service only:

/ system scheduler add interval=24h on-event={
/ interface pppoe-server server { disable [ find ] ; :delay 30s; enable [ find ] }
}