如何通过 NetMiko 上的串行总线连接?我知道3年前提出的这个问题。但是,它似乎不再相关。
我有以下代码。
from netmiko import ConnectHandler
device = {
"device_type": "aruba_osswitch",
"username": "manager",
"password": "",
"serial_settings": {"port": "COM4"}
}
net_connect = ConnectHandler(**device)
output = net_connect.send_command("show version")
print(output)
我收到错误:ValueError:必须设置 ip 或主机。但是,由于它是串行的,据我所知,它不需要主机或 IP。有人可以建议吗?
谢谢,