我知道Paramiko在Windows下支持Pageant,但是默认情况下它不起作用。

我正在寻找使用Pageant中加载的 key 进行连接的示例。

最佳答案

这就是我用来连接并使用Pageant进行自动登录以存储我的 key ,并从我的Python脚本中进行连接的方式。它依靠的是已经加载的Pageant(并且我还没有找到一种很好的可靠方法来启动它并加载 key (提示输入 key 密码)),但是下面的方法现在可以使用了。

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()

关于python - 如何在Windows上的Paramiko中使用Pageant?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8490228/

10-12 22:09