python交换机ssh巡检_python利用paramiko实现交换机巡检的示例

直接上代码

#-*- coding:UTF-8 -*-

import paramiko

import time

starttime = time.strftime('%Y-%m-%d %T')

start_info = "巡检开始时间:"+str(starttime)

cmd_filepath = r"d:\Python\py\xunjian\cmd.txt"

cmd_file = open(cmd_filepath,"r")

cmds = cmd_file.readlines()

dev_filepath = r"d:\Python\py\xunjian\device_info.txt"

dev_file = open(dev_filepath,"r")

while 1:

dev_info = dev_file.readline()

if not dev_info :

break

else :

devs = dev_info.split(',')

ip = devs[0]

username = devs[1]

password = devs[2].strip()

password = password.strip('\n')

ssh = paramiko.SSHClient()

ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())

ssh.connect(hostname = ip,username = username,password = password)

print("成功连接",ip)

command = ssh.invoke_shell()

time.sleep(3)

command.send('N\n') #该行非必须

command.send('screen-length 0 temporary\n') #取消分屏显示

for cmd in cmds:

command.send(cmd+'\n')

time.sleep(5)

output = command.recv(65535).decode()

log = open(r"d:\Python\py\xunjian\\"+ip+".txt",'a')

endtime = time.strftime('%Y-%m-%d %T')

end_info = "巡检结束时间:"+str(endtime)

log.write(start_info+'\n\n'+output+'\n\n'+end_info)

log.close()

dev_file.close()

#巡检命令文档cmd.txt

display device

display environment

display alarm urgen

display memory-usage

display cpu-usage

display logbuffer level 0

display logbuffer level 1

display logbuffer level 2

display logbuffer level 3

display logbuffer level 4

#设备信息 device_info.txt

192.168.10.11,admin,Huawei@123

192.168.10.12,admin,Huawei@123

192.168.10.13,admin,Huawei@123

192.168.10.14,admin,Huawei@123

以上就是python利用paramiko实现交换机巡检的示例的详细内容,更多关于paramiko交换机巡检的资料请关注随便开发网其它相关文章!

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值