2018-10-15 14:58:48 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2019-03-21 09:29:28 +00:00
|
|
|
while true; do
|
2018-10-15 14:58:48 +00:00
|
|
|
|
|
|
|
ping -c 1 8.8.8.8
|
|
|
|
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo "Connection up, reconnect not required..."
|
|
|
|
else
|
|
|
|
echo "Connection down, reconnecting..."
|
|
|
|
sudo pon
|
|
|
|
fi
|
|
|
|
|
|
|
|
sleep 1
|
|
|
|
done
|