paramiko.SSHException: Error reading SSH protocol banner

佐手、 提交于 2019-12-19 05:58:31

问题


I am using Paramiko and trying to connect to my SFTP server. Here is the code I wrote:

class SFTPUploader:
    def __init__(self, host, username, password, port):
        transport = paramiko.Transport((host, port))
        print transport
        transport.connect(username = username, password = password)
        self.sftp = paramiko.SFTPClient.from_transport(transport)

I can connect to my server from the terminal. This thread didn't help since our scenario is different.


回答1:


That error is generated when paramiko doesn't receive a protocol banner, or the server sends something invalid. If the server is otherwise working correctly, this may be due to some network restrictions.

You can use -vvv as an option to the openssh client to get more information about how it's connecting, and you can get the actual banner easily using netcat or telnet on port 22. The banner should start with 'SSH-', or paramiko will return the above error immediately.



来源:https://stackoverflow.com/questions/9520609/paramiko-sshexception-error-reading-ssh-protocol-banner

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!