authenticated problem for paramiko

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • sa6113

    authenticated problem for paramiko


    I am using this code to connect to a windows machine using paramiko, I have
    installed sshd on the machine and it works properly:

    sock.connect((h ostname, port))
    t = paramiko.Transp ort(sock)
    event = threading.Event ()
    t.start_client( event)
    event.wait()
    if not t.is_active():
    print 'SSH negotiation failed.'
    sys.exit(1)
    else:
    print "SSH negotiation sucessful"
    event.clear()
    t.auth_password (username=usern ame, password=passwo rd,event=event)

    if not t.is_authentica ted():
    print "Authentica tion failed"

    output:

    SSH negotiation successful
    Authentication failed

    I uploaded log file I am sure about username and password on that machine.

    What is the problem?

    http://www.nabble.com/file/p19898048/paramiko.log paramiko.log
    --
    View this message in context: http://www.nabble.com/authenticated-...p19898048.html
    Sent from the Python - python-list mailing list archive at Nabble.com.

Working...