Sixfab_PPP_Installer/ppp_installer/reconnect_baseshield
2019-07-31 14:48:18 -07:00

14 lines
170 B
Bash

#!/bin/sh
while true; do
ping -q -I ppp0 -c 1 8.8.8.8 -s 0 >/dev/null
if [ $? -ne 0 ]; then
echo "Connection down, reconnecting..."
sudo pon
fi
sleep 10
done