实现 WiFi 断线自动重连。原理是用 Python 监测网络是否断线,如果断线则重启网络服务。
1.Python 代码 autowifi.py,放在 /home/pi 目录下:
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/python
import
os, time
while
True :
if
'192' not in os.popen( 'ifconfig | grep 192' ).read():
print
'\n****** wifi is down, restart... ******\n'
os.system( 'sudo /etc/init.d/networking restart' )
time.sleep( 5 * 60 ) #5 minutes
|
2.Shell脚本autowifi.sh,也放在 /home/pi 目录下:
1
2
|
#!/bin/sh
python / home / pi / autowifi.py &
|
3.开机自动启动以上脚本:在终端窗口执行以下命令即可
1
2
3
4
5
6
7
8
|
sudo
cp - f / home / pi / autowifi.sh / etc / init.d /
sudo
chmod + x / etc / init.d / autowifi.sh
sudo
chown root:root / etc / init.d / autowifi.sh
sudo
update - rc.d autowifi.sh default
|
以上所述是小编给大家介绍的Python实现树莓派WiFi断线自动重连,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
原文链接:http://blog.csdn.net/iyjr38/article/details/62421479