You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The key-File has a passphrase it will be irgnord at connect function.
Exeption:
Could not establish SSH connection: private key file is encrypted
if self.key is not None:
self.key = paramiko.RSAKey.from_private_key_file(self.key)
replace by
if self.key is not None:
if self.key_passphrase is not None:
self.key = paramiko.RSAKey.from_private_key_file(self.key, self.key_passphrase)
else
self.key = paramiko.RSAKey.from_private_key_file(self.key)
The text was updated successfully, but these errors were encountered:
The key-File has a passphrase it will be irgnord at connect function.
Exeption:
Could not establish SSH connection: private key file is encrypted
replace by
The text was updated successfully, but these errors were encountered: