diff options
-rw-r--r-- | rumba/ssh_support.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rumba/ssh_support.py b/rumba/ssh_support.py index 5d62b81..7b3a163 100644 --- a/rumba/ssh_support.py +++ b/rumba/ssh_support.py @@ -95,6 +95,7 @@ def ssh_connect(hostname, port, username, password, time_out, proxy_server): look_for_keys=True, timeout=time_out) trans = proxy_client.get_transport() + trans.set_keepalive(30) proxy = trans.open_channel('direct-tcpip', (hostname, port), ('127.0.0.1', 0)) else: @@ -134,6 +135,7 @@ def ssh_chan(ssh_config, testbed, time_out): max_retries = 2 while retry < max_retries: try: + ssh_config.client.get_transport().set_keepalive(30) chan = ssh_config.client.get_transport().open_session() return chan except paramiko.ssh_exception.SSHException as e: |