如何在 Windows 上将 Pageant 与 Paramiko 一起使用?
我知道Paramiko在Windows下支持Pageant,但默认情况下它不起作用。
我正在寻找使用 Pageant 中加载的密钥进行连接的示例。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是我用来连接和自动登录的方法,使用 Pageant 来存储我的密钥,并从我的 Python 脚本中连接到它。它依赖于已经加载的选美,(我还没有找到一个好的可靠的方法来启动它并加载密钥(提示输入密钥密码)),但下面的方法目前有效。
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.