首页 > 后端开发 > Python教程 > Linux下使用python自动修改本机网关代码分享

Linux下使用python自动修改本机网关代码分享

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
发布: 2016-06-06 11:17:20
原创
1145 人浏览过

#!/usr/bin/python
#auto change gateway Created By mickelfeng
import os
import random,re
g='gateway 192.168.1.'
rand=random.randint(1,3)
test='www.baidu.com'
command='/etc/init.d/networking restart'
GW = "%s%d"%(g,rand)
PingTest = 'ping -c 3 ' + test
try:
  result=os.system(PingTest)
  print result
  if result!=0:
    data = open('/etc/network/interfaces').read()
    data = re.sub('gateway 192.168.1.*',GW, data)
    open('/etc/network/interfaces', 'wb').write(data)
    os.system(command)
    os.system(command)
except:
  pass
登录后复制

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
centos7 - git的linux版本没有centos的?
来自于 1970-01-01 08:00:00
0
0
0
学习Linux的先行知识
来自于 1970-01-01 08:00:00
0
0
0
Linux下连接数据库
来自于 1970-01-01 08:00:00
0
0
0
Linux 批量修改文件名
来自于 1970-01-01 08:00:00
0
0
0
Linux中如何查看服务器的日志
来自于 1970-01-01 08:00:00
0
0
0
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板