N1 armbian 断线自动重拨 pppoe
vi auto_pppd.sh
#!/bin/sh
status=`ifconfig | grep 'ppp0'`
if [[ $status = "" ]]
then
poff -a
pon dsl-provider
fi chomd +x auto_pppd.sh
添加定时任务1分钟1次
vi auto_pppd.sh
#!/bin/sh
status=`ifconfig | grep 'ppp0'`
if [[ $status = "" ]]
then
poff -a
pon dsl-provider
fi chomd +x auto_pppd.sh
添加定时任务1分钟1次