Advertisement
Guest User

Untitled

a guest
Aug 11th, 2017
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. paramiko.BadAuthenticationType: Bad authentication type (allowed_types=
  2. ['publickey', 'keyboard-interactive'])
  3.  
  4. import paramiko
  5. client = paramiko.SSHClient()
  6. client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
  7. client.connect('MACHINE NAME', username='USER', password='PASSWORD')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement