diff --git a/hyperglass/execution/drivers/ssh_netmiko.py b/hyperglass/execution/drivers/ssh_netmiko.py index e96f68c..c89744f 100644 --- a/hyperglass/execution/drivers/ssh_netmiko.py +++ b/hyperglass/execution/drivers/ssh_netmiko.py @@ -52,7 +52,10 @@ class NetmikoConnection(SSHConnection): global_args = netmiko_device_globals.get(self.device.platform, {}) - send_args = netmiko_device_send_args.get(self.device.platform, {}) + send_args = { + "read_timeout": params.request_timeout, + **netmiko_device_send_args.get(self.device.platform, {}), + } driver_kwargs = { "host": host or self.device._target,