Last active
December 11, 2015 11:07
-
-
Save kokoye2007/b8161fdcc604c133a8bd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# The IP for the server you wish to ping (8.8.8.8 is a public Google DNS server) | |
SERVER=8.8.8.8 | |
# The Ethernet or Wlan or Ath Address | |
NETWORKFACE=wlan0 | |
# Only send two pings, sending output to /dev/null | |
ping -c2 ${SERVER} > /dev/null | |
# If the return code from ping ($?) is not 0 (meaning there was an error) | |
if [ $? != 0 ] | |
then | |
# Restart the wireless interface | |
ifdown --force $NETWORKFACE | |
ifup $NETWORKFACE | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
chmod +x /usr/local/bin/wifi-auto-connect
/etc/crontab
*/5 * * * * root /usr/local/bin/wifi-auto-connect