Frequently Asked Question

How to reboot the router periodically
最后更新 2 年前

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).

请稍候!

请稍候...它将需要一点时间 !