Question fréquemment posée
How to reboot the router periodically
Dernière mise à jour il y a 2 ans
To set an automatic reboot at a specified time, go to the "User Files" tab and add something like this to the "Startup script" field:
#!/bin/sh cron_add("30 8 * * * /sbin/reboot")
or
#!/bin/bash (crontab -l 2>/dev/null; echo "30 8 * * * /sbin/reboot") | crontab -
This will cause the router to reboot at 8:30 every day. We use the crontab syntax (https://pl.wikipedia.org/wiki/Crontab).