用paramiko多线程SSH登陆华为交换机处理简单的命令。

前面提到过可以用netconf来管理交换机,可是我们的交换机没有提前开启netconf。难道要一台台登陆上开,NO NO...下面介绍用paramiko登陆交换批量修改。

  • 首先建一个交换机信息文件hz_sw_ip.py,主要保存交换机名与管理地址,重点是后面的管理地址要能SSH登陆到交换机,内容如下
hz_ip={
'1F-E03-ES' : '192.168.45.62',
'1F-E04-kvm' : '192.168.45.67',
'1F-E10-kvm   ' : '192.168.45.68',
'4F-A32-kvm   ' : '192.168.45.13',
'4F-A34-kvm   ' : '192.168.45.14',
'4F-A36-kvm   ' : '192.168.45.57',
};
  • 再建一个远程登陆执行命令文件:enablenetconf.py
#-*- coding: utf-8 -*-
#!/usr/bin/python 
import paramiko
import threading
import time
from hz_sw_ip import hz_ip  #导入交换机信息
def ssh2(ip,username,passwd,cmd):
    try:
        ssh = paramiko.SSHClient()
        ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
        ssh.connect(ip,22,username,passwd,timeout=5)
        ssh_shell = ssh.invoke_shell()  #使用invoke是为了可以执行多条命令
        print ssh_shell.recv(1024)
        for m in cmd:
            res = ssh_shell.sendall(m+'\n')
            time.sleep(float(1))
        print ssh_shell.recv(1024)
        ssh.close()
    except :
        print '%s\tError\n'%(ip)


if __name__=='__main__':
    cmd = ['sys','snetconf server enable','commit'] #你要执行的命令列表
    username = "wsf535"  #用户名
    passwd = "*****"    #密码
    threads = [10]   #多线程
    print "Begin......"
    for key in hz_ip:
        ip = hz_ip[key]
        a=threading.Thread(target=ssh2,args=(ip,username,passwd,cmd))
        a.start() 
  • 执行:python enablenetconf.py 查看运行过程。
[root@192-168-56-48 enablenetconf]# python enablenetconf.py
Begin......

Info: The max number of VTY users is 5, the number of current VTY users online is 1, and total number of terminal users online is 1.
      The current login time is 2018-03-14 13:36:48+08:00.
      The last login time is 2017-12-18 15:25:07+08:00 from 192.168.48.8 through SSH.

Info: The max number of VTY users is 5, the number of current VTY users online is 1, and total number of terminal users online is 1.
      The current login time is 2018-03-14 13:36:49+08:00.







Info: The max number of VTY users is 5, the number of current VTY users online is 1, and total number of terminal users online is 1.
      The current login time is 2018-03-14 21:54:51+08:00.

<1F-E04-kvm>sys
Enter system view, return user view with return command.
[1F-E04-kvm]

      The last login time is 2018-02-15 18:27:37+08:00 from 192.168.48.8 through SSH.
<1F-E10-kvm>sys
Enter system view, return user view with return command.
[~1F-E10-kvm]
Info: The max number of VTY users is 5, the number of current VTY users online is 1, and total number of terminal users online is 1.
      The current login time is 2018-03-14 13:36:49+08:00.
      The last login time is 2018-03-13 14:42:09+08:00 from 192.168.48.8 through SSH.
<1F-E03-ES>sys
Enter system view, return user view with return command.
[~1F-E03-ES]
Info: The max number of VTY users is 5, the number of current VTY users online is 1, and total number of terminal users online is 1.
      The current login time is 2018-03-14 21:47:26+08:00.
      The last login time is 2017-12-27 22:18:05+08:00 from 192.168.48.8 through SSH.
<4F-A34-kvm>sys
Enter system view, return user view with return command.
[4F-A34-kvm]
Info: The max number of VTY users is 5, the number of current VTY users online is 1, and total number of terminal users online is 1.
      The current login time is 2018-03-14 13:36:49+08:00.
      The last login time is 2017-11-16 17:57:08+08:00 from 192.168.48.8 through SSH.
<4F-A36-kvm>sys
Enter system view, return user view with return command.
[4F-A36-kvm]

      The last login time is 2017-10-31 08:41:39+08:00 from 192.168.48.8 through SSH.
<4F-A32-kvm>sys
Enter system view, return user view with return command.
[~4F-A32-kvm]
snetconf server enable
Info: Succeeded in starting the SNETCONF server on SSH port 22.
[*1F-E04-kvm]
snetconf server enable
Info: Succeeded in starting the SNETCONF server on SSH port 22.
[*F-E10-kvm]
snetconf server enable
Info: Succeeded in starting the SNETCONF server on SSH port 22.
[*1F-E03-ES]
snetconf server enable
Info: Succeeded in starting the SNETCONF server on SSH port 22.
[*4F-A34-kvm]
snetconf server enable
Info: Succeeded in starting the SNETCONF server on SSH port 22.
[*4F-A36-kvm]
snetconf server enable
Info: Succeeded in starting the SNETCONF server on SSH port 22.
[*4F-A32-kvm]
commit
Committing.
commit

commit
Committing.
commit

commit
Committing.
commit
  • 验证:查看命令执行成功
<XS-4F-A36-kvm>dis current-configuration | in netcon
snetconf server enable
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,539评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,911评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,337评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,723评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,795评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,762评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,742评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,508评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,954评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,247评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,404评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,104评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,736评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,352评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,557评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,371评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,292评论 2 352

推荐阅读更多精彩内容

  • 0×1.帧中继概述Frame Relay,简称FR,可以将它看做X.25协议的简化版本,帧中继网络中不考虑传输差错...
    Zero___阅读 2,271评论 0 2
  • Python 面向对象Python从设计之初就已经是一门面向对象的语言,正因为如此,在Python中创建一个类和对...
    顺毛阅读 4,213评论 4 16
  • linux资料总章2.1 1.0写的不好抱歉 但是2.0已经改了很多 但是错误还是无法避免 以后资料会慢慢更新 大...
    数据革命阅读 12,157评论 2 33
  • 从昨天的预约到今天的成行,从南街出发跨过锦江来到北街,从高安二中老校区来到高安中学老校区,见到罗老师的时间从按小时...
    长江秋水阅读 538评论 1 2
  • 灯泡 卫生间的灯泡烧坏了,我跑出去买了一个回来准备换上,一进门却见老婆面有怒色,原来坏的是浴室的镜前灯——那是一种...
    众山小阅读 328评论 0 1