From 0f52bc438fddf9369d054d7325566dacbbf6ebf4 Mon Sep 17 00:00:00 2001 From: thatmattlove Date: Sun, 30 Jun 2024 23:55:05 -0400 Subject: [PATCH] closes #268: fix issue with mikrotik commands --- hyperglass/execution/drivers/ssh_netmiko.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/hyperglass/execution/drivers/ssh_netmiko.py b/hyperglass/execution/drivers/ssh_netmiko.py index 7f05718..e96f68c 100644 --- a/hyperglass/execution/drivers/ssh_netmiko.py +++ b/hyperglass/execution/drivers/ssh_netmiko.py @@ -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):