Home
last modified time | relevance | path

Searched refs:ssh_client (Results 1 – 1 of 1) sorted by relevance

/tools/test/connectivity/acts/framework/acts/controllers/fuchsia_lib/
Dutils_lib.py94 ssh_client = paramiko.SSHClient()
95 ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
96 ssh_client.connect(hostname=ip_address,
103 ssh_client.get_transport().set_keepalive(1)
104 return ssh_client
107 def ssh_is_connected(ssh_client): argument
114 return ssh_client and ssh_client.get_transport().is_active()