我有以下代码:
from ncclient import manager
router = {"host": "ios-xe-mgmt.cisco.com", "port": "8181",
"username": "developer", "password": "C1sco12345"}
with manager.connect(host=router["host"], port=router["port"], username=router["username"], password=router["password"], hostkey_verify=False) as m:
print('*' * 50)
print(capability)
m.close_session()
调试时的错误显示为:
Exception has occurred: SessionCloseError
Unexpected session close
File "C:\Users\mathewsl\VScodeWorkSpace\.vscode\testnetconf.py", line 6, in <module>
with manager.connect(host=router["host"], port=router["port"], username=router["username"], password=router["password"], hostkey_verify=False) as m:
任何想法具体是什么导致/抛出此错误?
谢谢 ?