1.通过netmiko模块登录交换机,协议ssh,执行收集信息命令,保存至txt文件
2.过滤txt文件中的内容,保存到excel,使用xlwt模块实现。
3.sendmai发送excel邮件。或者发送给钉钉机器人也可以
4.使用crond定时发送巡检报表。
代码如下
#!/usr/bin/python3 #H3c交换机 import time from netmiko import ConnectHandler now = time.strftime("%Y%m%d",time.localtime(time.time())) log_time = time.strftime("%Y-%m-%d %H:%M:%S",time.localtime()) ip_list = [ ['sw-001','192.168.1.1'], ['sw-002','192.168.1.2'], ] SW = { 'device_type':'hp_comware', 'username':'admin', 'ip':'', 'password':"$password" } for ip_item in ip_list: SW['ip'] = ip_item[1] connect = ConnectHandler(**SW) print(log_time + 'Successfully connected to ' + ip_item[0]) output = connect.send_command('system view') iproute = connect.send_command("display ip routing-table") version = connect.send_command('dis version') fan = connect.send_command('display fan') cpu = connect.send_command('display cpu-usage') mem = connect.send_command('display memory') env = connect.send_command('display environment') fo = open('xusj','w') fo.write(iproute) fo.write(fan) fo.write(cpu) fo.write(mem) fo.write(env) fo.close()
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持呐喊教程。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:notice#nhooo.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。