lede(openwrt) 设置 cron定时重启lan

2020-04-28

wan链接久了 网络不稳定 需要定时重启 才行

ssh root登陆路由器

image

使用vim编辑crontabs 配置文件

vim /etc/crontabs/root

image

写入定时重启wan命令

image

10 2 * * * /sbin/ifup wan &
33 11 * * * /sbin/ifup wan &
33 17 * * * /sbin/ifup wan
~
~

配置文件参数意义是 

每天2点10分 使用ifup命令 重新链路 wan链接
每天11点33分 使用ifup命令 重新链路 wan链接
每天17点33分 使用ifup命令 重新链路 wan链接
每天早中晚都重启wan链路一次 一天重启3次吧 建议大家和我一样设置 网络稳定

稳定运行5天

image