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()#退出