Python脚本查看思科设备的接口

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python脚本查看思科设备的接口相关的知识,希望对你有一定的参考价值。

   记录利用Python脚本查看思科设备的接口。

#!/usr/bin/env python
import paramiko
import sys
import time
 
class CiscoSwitch():
         def __init__(self,host,username,password):
                  self.username  = username
                  self.host      = host
                  self.password  = password
 
         def Login(self):
                  self.child = paramiko.SSHClient()
                  self.child.set_missing_host_key_policy(paramiko.AutoAddPolicy())
                  self.child.connect(self.host,username=self.username,password=self.password)
                  self.remote = self.child.invoke_shell()
        
        def showcmd(self,cmd):
                 print "[+] Connect to Router..."
                 self.remote.send("\n")
                 self.remote.send(cmd)
                 time.sleep(0.5)
                 output = self.remote.recv(5000)
                 print output
 
if __name__ == '__main__':
       print "[+] This Program is beging done..."
       for ip in open("/opt/other/ip.txt"):
            Switch = CiscoSwitch(ip,'admin','Password.123')
            Switch.Login()
            Switch.showcmd("show ip int brief\n")

 技术分享图片

以上是关于Python脚本查看思科设备的接口的主要内容,如果未能解决你的问题,请参考以下文章

Python 通过telnet 配置思科网络设备

思科和华三的邻居发现

网络设备(思科,华为交换机路由器)自动备份配置脚本

Cisco接口恢复出厂配置

懂思科交换机配置的进来下

思科时钟频率配置命令