これのタイムアウトを設定する方法を探しています:
transport = paramiko.Transport((Host, port))
transport.connect(username = username, password = password)
sftp = paramiko.SFTPClient.from_transport(transport)
sftp.get(remotepath, localpath)
sftp.close()
transport.close()
接続タイムアウトはtimeout
パラメータ(説明されているように、タイムアウトの秒の数を示します)で設定できます here )のconnect
関数。
ssh = paramiko.SSHClient()
ssh.set_missing_Host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(Host, username=username, password=password, timeout=10)
sftp = ssh.open_sftp()
sftp.get(remotepath, localpath)
sftp.close()