小编典典

如何使用PPK公钥通过SSH Paramiko SSH连接

python

我正在使用Paramiko通过ssh连接到服务器。

基本身份验证效果很好,但我不明白如何使用公钥进行连接。

当我连接腻子时,服务器告诉我这一点:

Using username "root".
Authenticating with public key "rsa-key@ddddd.com"
Passphrase for key "rsa-key@ddddd.com": [i've inserted the passphrase here]
Last login: Mon Dec  5 09:25:18 2011 from ...

我用这个ppk文件连接到它:

PuTTY-User-Key-File-2: ssh-rsa
Encryption: aes256-cbc
Comment: rsa-key@dddd.com
Public-Lines: 4
[4 lines key]
Private-Lines: 8
[8 lines key]
Private-MAC: [hash]

使用基本身份验证,我从日志中得到的错误是:

DEB [20111205-09:48:44.328] thr=1   paramiko.transport: userauth is OK
DEB [20111205-09:48:44.927] thr=1   paramiko.transport: Authentication type (password) not permitted.
DEB [20111205-09:48:44.927] thr=1   paramiko.transport: Allowed methods: ['publickey', 'gssapi-with-mic']

我尝试包含该ppk文件并将其设置为auth_public_key,但是没有用。

你能帮助我吗?


阅读 361

收藏
2020-12-20

共1个答案

小编典典

好的@Adam和@Kimvais是正确的,paramiko无法解析.ppk文件。

因此,方法(也要感谢@JimB)是将.ppk文件转换为openssh私钥格式;这可以使用来实现的puttygen描述这里。

然后,很简单地与之建立联系:

import paramiko
ssh = paramiko.SSHClient()

ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())

ssh.connect('<hostname>', username='<username>', password='<password>', key_filename='<path/to/openssh-private-key-file>')

stdin, stdout, stderr = ssh.exec_command('ls')
print stdout.readlines()
ssh.close()
2020-12-20