python ciscolib模块

python的第三方模块ciscolib可以登录交换机执行相关命令

ciscolib下载地址:

https://github.com/nickpegg/ciscolib

常见用法如下:

    switch = ciscolib.Device(交换机IP, 登录密码, 登录账号)
    switch.connect()#登录
    switch.enable('xxxx')#enable密码
    switch.cmd('conf t')# 进入全局模式
    switch.cmd(command)# 执行你要进行的操作
    switch.cmd('exit')# 返回到enable模式
    print(switch.cmd('show clock'))#使用show命令查看时间
    switch.disconnect()#退出

 

posted @ 2016-08-11 15:26  张文强Terry  阅读(2017)  评论(0编辑  收藏  举报