Frequently Asked Question

How to reboot the router periodically
最後更新 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).

請稍後!

請稍後幾分鐘!