不幸的是,我家中的无线连接经常消失,需要重新启动无线路由器。
更糟糕的是,我的ubuntu媒体PC消失后不会自动重新连接到无线网络,然后在一分钟后出现。该网络在网络设置中设置为“自动连接”。
如果我使用屏幕右上角的无线图标手动选择我的无线网络,则一切正常,直到下一次无线中断。
我正在寻找一种方法,因此不必记住总是手动进行此操作。
不幸的是,我家中的无线连接经常消失,需要重新启动无线路由器。
更糟糕的是,我的ubuntu媒体PC消失后不会自动重新连接到无线网络,然后在一分钟后出现。该网络在网络设置中设置为“自动连接”。
如果我使用屏幕右上角的无线图标手动选择我的无线网络,则一切正常,直到下一次无线中断。
我正在寻找一种方法,因此不必记住总是手动进行此操作。
Answers:
这是使用service network-manager restart
以下方法的替代方法:
#!/usr/bin/env bash
# 1. copy this script into
# /usr/bin
# 2. change permissions
# root:/usr/bin# chmod +x checkwifi.sh
# 3. add to cron as root
# sudo su
# crontab -e
# add this to check your wifi every minute
# * * * * * /usr/bin/checkwifi.sh
is_ok=$(/sbin/ifconfig wlp2s0 | /bin/grep inet\ addr -c)
if [ "$is_ok" -eq 0 ] ; then
# restart
/usr/sbin/service network-manager restart
# wifi is ok
/bin/echo $(date) "wifi was restarted" >> /user/user/Dropbox/wifi.log
/bin/echo $(/sbin/ifconfig wlp2s0) >> /home/user/Dropbox/wifi.log
else
# wifi is ok
/bin/echo $(date) "wifi is ok" >> /home/user/Dropbox/wifi.log
/bin/echo $(/sbin/ifconfig wlp2s0) >> /home/user/Dropbox/wifi.log
fi
这似乎没有很好的解决方案在网上发布。我猜最好的解决方法是使它检查互联网连接,如果没有,请重新连接。我通过对google.com的ping测试做到了这一点,然后我只是让它重新启动了网络。代码未经测试(重新启动部分和cron部分,如果已对语句进行了测试),所以我将只等待它断开连接。我有一个Ubuntu Server 12.10,没有GUI,每次无线塞满时都很难连接显示器和键盘。
Cron部分是通过webmin完成的,因此非常了解。脚本如下:
# edited by dim_voly for networking restart on no pingback every 5 mins
#!/bin/bash
# Name of File: networkingCron
# Purpose: to check if the internet is up (via ping test to google) and if not, restart networking service
# this script is invoked via cron, ideally every 5 mins.
#check if there is internet via ping test
if ! [ "`ping -c 1 google.com`" ]; then #if ping exits nonzero...
sudo service networking restart #restart the whole thing
echo Networking service restarted due to no ping response from google.com
fi
echo Script 'networkingCron' completed, if no message above then there was no network restart.
# dunno how to restart the wifi only since that is the only active connection that server uses.
# also I don't think those echos go anywhere
确保以root用户身份运行,并确保脚本具有执行(u + x)权限。
链接:
只需创建一个新文件vi /root/checkwanup
并添加以下内容:
#!/bin/bash
wlan=`/sbin/ifconfig wlan0 | grep inet\ addr | wc -l`
if [ $wlan -eq 0 ]; then
/sbin/ifdown wlan0 && /sbin/ifup wlan0
else
echo interface is up
fi
然后chmod 555 /root/checkwanup
将其添加到您的crontab中:
crontab -e
*/15 * * * * /bin/bash /root/checkwanup
资料来源:http : //sirlagz.net/2013/01/10/script-wifi-checker-script/
LANG=C
否则grep inet\ addr
可能会失败。