监控无线AP是否在线python脚本

由于工作需要,编写了一个自动检查办公区无线AP是否掉线的python脚本,我这里用的是python3环境,请大家注意
还有要注意的是我这里用的是锐捷的无线AC及无线AP。其它品牌只需要替换相关命令即可,就是脚本内容的中的command内容更改成你的品牌无线AC命令即可。
下面是实际脚本内容:
#!/usr/local/python3/bin/python3
import telnetlib,time,os
def do_telnet(Host,password,finish,commands):
import telnetlib
'''''Telnet远程登录:Windows客户端连接Linux服务器'''

# 连接Telnet服务器
tn = telnetlib.Telnet(Host, port=23)
#tn.set_debuglevel(2)#开启telnet调试模式

# 输入登录用户名
# tn.read_until(b'Password: ')
# tn.write(password + b'\n')

# 输入登录密码
tn.read_until(b'Password:')
tn.write(password + b'\n')

# 登录完毕后执行命令
tn.read_until(finish)
tn.write(commands1 + b'\r\n')
time.sleep(1)
tn.read_until(b'Password:')
tn.write(password + b'\n')
time.sleep(1)
tn.read_until(b'#')
tn.write(commands + b'\n')
time.sleep(10)  # 这里一定要等待10秒,因为你write命令以后,会等待很长时间。
# 执行完毕后,终止Telnet连接(或输入exit退出)
tn.write(b'exit\n')
result = tn.read_all()
file_object = open('/opt/scripts/network/result.txt', 'wb')
file_object.write(result)
file_object.close()
tn.close()

if name == 'main':

配置选项

Host = '192.168.1.12'  # Telnet服务器IP
# username = 'xxxx'.encode(encoding='utf-8')  # 登录用户名
password = 'abc123'.encode(encoding='utf-8')  # 登录密码
finish = '>'.encode(encoding='utf-8')  # 命令提示符
commands = 'show web-api ibeacon'.encode(encoding='utf-8')
commands1 = 'en'.encode(encoding='utf-8')
do_telnet(Host,password,finish,commands)

#判断AP是否在线
with open('/opt/scripts/network/result.txt','r') as f:
for i in f:
if 'code' in i:br/>#把ac@exit替换成空的并转换成字典
i = eval(i.replace('ac#exit',''))
aplist = i['data']['list']
day = time.strftime('%Y-%m-%d', time.localtime())
time = time.strftime('%H:%M:%S', time.localtime())
for j in aplist:
if j['status'] != 'run':
ip = j['ip']
mac = j['mac']
name = j['name']
status = j['status']
with open('satus.txt','a') as f1:
message = '当前时间:' + day + ' ' + time + ',' + '无线AP的ip:' + ip + ',' + '当前状态是不在线,' + '无线AP的mac地址:' + mac + ',' + '无线AP名称是:' + name + ',' + '无线AP状态:不在线'
f1.write(message + '\n')
#发送微信报警
os.system('./weixin.py a abc 无线AP名称:%s不在线,请检查!' %name)
else:
print('无线AP状态正常!')

猜你喜欢

转载自blog.51cto.com/461884/2136409