5

决定第一次尝试 Python,如果答案很明显,请见谅。

我正在尝试使用 paramiko 创建一个 ssh 连接。我正在使用以下代码:

#!/home/bin/python2.7

import paramiko
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())

ssh.connect("somehost.com", username="myName", pkey="/home/myName/.ssh/id_rsa.pub")
stdin, stdout, stderr = ssh.exec_command("ls -l")

print stdout.readlines()
ssh.close()

很标准的东西,对吧?除了我收到此错误:

 ./test.py
Traceback (most recent call last):
File "./test.py", line 10, in <module>
ssh.connect("somehost", username="myName", pkey="/home/myName/.ssh/id_rsa.pub")
File "/home/lib/python2.7/site-packages/paramiko/client.py", line 327, in connect
self._auth(username, password, pkey, key_filenames, allow_agent, look_for_keys)
File "/home/lib/python2.7/site-packages/paramiko/client.py", line 418, in _auth
self._log(DEBUG, 'Trying SSH key %s' % hexlify(pkey.get_fingerprint()))
AttributeError: 'str' object has no attribute 'get_fingerprint'

它指的是什么“str”对象?我以为我只需要将路径传递给 RSA 密钥,但它似乎需要一些对象。

4

2 回答 2

18

pkey参数应该是实际的私钥而不是包含密钥的文件的名称。请注意,pkey 应该是 PKey 对象而不是字符串(例如private_key = paramiko.RSAKey.from_private_key_file (private_key_filename))。您可以使用参数代替 pkeykey_filename直接传递文件名。

请参阅. _connect

于 2012-05-30T23:42:56.867 回答
4

如果你有你的私钥作为字符串,你可以在 python 3+

from io import StringIO
ssh = paramiko.SSHClient()  

private_key = StringIO("you-private-key-here")
pk = paramiko.RSAKey.from_private_key(private_key)

ssh.connect('somehost.com', username='myName', pkey= pk)

如果您的私钥存储在环境变量中,则特别有用。

于 2017-12-26T06:53:56.360 回答