码迷,mamicode.com
首页 > 其他好文 > 详细

树莓派ssh总掉线

时间:2019-10-03 14:21:30      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:imp   时间   open   就会   gre   system   popen   定时   conf   

之前入手了一个树莓派,但是远程ssh连接经常掉线,开始以为是电源不行,导致机器重启,后面加了一个显示器,观察了一段时间,发现机器并没有重启,应该是WiFi掉线了,在网上发现,树莓派如果一段网络没有流量,就会有WiFi掉线的情况,并且找到了一段定时重启WiFi的脚本,解决了这个问题

#!/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

树莓派ssh总掉线

标签:imp   时间   open   就会   gre   system   popen   定时   conf   

原文地址:https://www.cnblogs.com/xsirfly/p/11619552.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!