1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 00:38:06 +00:00

closes #268: fix issue with mikrotik commands

This commit is contained in:
thatmattlove 2024-06-30 23:55:05 -04:00
parent e0751311ba
commit 0f52bc438f

View file

@ -29,12 +29,7 @@ netmiko_device_globals = {
"mikrotik_switchos": {"global_cmd_verify": False},
}
netmiko_device_send_args = {
# Netmiko doesn't currently handle the Mikrotik prompt properly, see
# ktbyers/netmiko#1956
"mikrotik_routeros": {"expect_string": r"\S+\s\>\s$"},
"mikrotik_switchos": {"expect_string": r"\S+\s\>\s$"},
}
netmiko_device_send_args = {}
class NetmikoConnection(SSHConnection):