python netmiko为iso的例子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python netmiko为iso的例子相关的知识,希望对你有一定的参考价值。

from netmiko import ConnectHandler

# credentials
connect = ConnectHandler(device_type=device, host=host, username=user, password=password, secret=enabled_password)

# cisco enable mode
connect.enable()

output = connect.send_command('show run')

output_list = output.splitlines()

connect.disconnect()

以上是关于python netmiko为iso的例子的主要内容,如果未能解决你的问题,请参考以下文章

python netmiko实现cisco网络设备配置备份

IP2Location + Netmiko 到 SSH 到 VM 到 MTR 并打印结果(如果、elif、else 语句问题)PYTHON3

NetDevOps — netmiko

netmiko初窥

Python与Cisco 的事儿

Python与Cisco 的事儿之二