-
|
Hello team, so far my code is simple `import socket host = input("Enter Hostname :") sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) session.handshake(sock) channel = session.open_session() channel.close() currently the [session.userauth_keyboardinteractive(user, password)] line is getting ssh2.exceptions.AuthenticationError Any help is appreciated |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Try with the standard username/password authentication feature and see if that works for you. |
Beta Was this translation helpful? Give feedback.
Try with the standard username/password authentication feature and see if that works for you.