I know that paramiko supports pageant under Windows but it doesn't work by default.

I am looking for an example of connecting using the key that is loaded in Pageant.

link|improve this question

64% accept rate
feedback

1 Answer

up vote 1 down vote accepted

This is what I am using to connect and do an automated login using pageant to store my key, and connecting to it from within my python script. It counts on pageant already being loaded, (and I haven't found a good reliable way to launch it and load the key (prompt for key password ) but the below works for now.

    ssh = paramiko.SSHClient()
    ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
    host = 'somehost.com'
    port = 22
    ssh.connect(host, port=port,  username='user', allow_agent=True)
    stdin,stdout,stderr = ssh.exec_command("ps -ef")
    print stdout.read()
    print stderr.read()

Hope this helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.