无法使用paramiko连接到远程主机?

时间:2017-01-18 11:47:17

标签: python ssh pip scp paramiko

我想使用scp在两个Ubuntu服务器之间传输文件,我在两个系统之间测试了scp并且它工作得很好。所以我不想每次都需要获取文件时执行命令所以我想写一个python脚本使用scp自动从其他主机下载文件。

在网上搜索时我发现了这个Paramiko模块,我在安装时遇到了问题,我已经使用模块cryptography对此进行了纠正。现在真正的麻烦在下面的终端解释了。

>>> from paramiko import SSHClient
>>> from scp import SCPClient
>>> ssh = SSHClient()
>>> ssh
<paramiko.client.SSHClient object at 0x1a41c90>
>>> ssh.load_system_host_keys()
>>> ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) 
>>> ssh.connect('somename@192.168.100.100')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python2.7/dist-packages/paramiko/client.py", line 296, in c                                                                                    onnect
    to_try = list(self._families_and_addresses(hostname, port))
  File "/usr/local/lib/python2.7/dist-packages/paramiko/client.py", line 200, in _                                                                                    families_and_addresses
    addrinfos = socket.getaddrinfo(hostname, port, socket.AF_UNSPEC, socket.SOCK_S                                                                                    TREAM)
socket.gaierror: [Errno -2] Name or service not known
>>> ssh.connect('192.168.100.100')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python2.7/dist-packages/paramiko/client.py", line 361, in c                                                                                    onnect
    server_key)
  File "/usr/local/lib/python2.7/dist-packages/paramiko/client.py", line 672, in m                                                                                    issing_host_key
    raise SSHException('Server %r not found in known_hosts' % hostname)
paramiko.ssh_exception.SSHException: Server '192.168.100.100' not found in known_hos                                                                                    ts

我已经更改了ip和用户名以便安全使用somename is replaced,但我已尝试使用original username。所以我尝试了几次,但我仍然遇到同样的错误。

有关此问题的任何建议吗?请帮助。

3 个答案:

答案 0 :(得分:21)

也许你错过了missing_host_key_policy

这个怎么样:

proxy = None
client = paramiko.SSHClient()
client.load_system_host_keys()
client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
client.connect(host['hostname'], username=host['user'], sock=proxy)

此处有更多示例:www.programcreek.com

答案 1 :(得分:1)

尝试使用:

ssh.connect(&#39;主机&#39;,用户名=&#39;用户名&#39;,密码=&#39;密码&#39;)

如果您希望跳过密码并在不提供密码的情况下进行连接,也可以将公钥添加到服务器中的已知主机。 在这种情况下使用:

ssh.connect(&#39;主机&#39;,用户名=&#39;用户名&#39;)

答案 2 :(得分:0)

对我而言,解决方案是:

client = SSHClient()
client.load_system_host_keys()
client.set_missing_host_key_policy(AutoAddPolicy())
client.connect(host, username=user,password=password)