Frequently Asked Question
How to reboot the router periodically
Last Updated 2 years ago
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).