Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions WiFi_Check
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ wlan='wlan0'
##################################################################
echo
echo "Starting WiFi check for $wlan"
date
/bin/date
echo

# Check to see if there is a lock file
Expand All @@ -62,19 +62,19 @@ echo $$ > $lockfile

# We can perform check
echo "Performing Network check for $wlan"
if ifconfig $wlan | grep -q "inet addr:" ; then
if /sbin/ifconfig $wlan | grep -q "inet addr:" ; then
echo "Network is Okay"
else
echo "Network connection down! Attempting reconnection."
ifdown $wlan
/sbin/ifdown $wlan
sleep 5
ifup --force $wlan
ifconfig $wlan | grep "inet addr"
/sbin/ifup --force $wlan
/sbin/ifconfig $wlan | grep "inet addr"
fi

echo
echo "Current Setting:"
ifconfig $wlan | grep "inet addr:"
/sbin/ifconfig $wlan | grep "inet addr:"
echo

# Check is complete, Remove Lock file and exit
Expand Down