gpt4 book ai didi

python - EOF 发生在违反 Python ftplib 协议(protocol)的情况下

转载 作者:太空狗 更新时间:2023-10-29 21:56:40 26 4
gpt4 key购买 nike

我正在使用 Python ftplib 开发隐式 TLS 连接程序。我尝试了问题 python-ftp-implicit-tls-connection-issue 中提供的解决方案(包括 Rg Glpj 和 Juan Moreno 的回答)来建立连接。但是当我像这样登录到 ftp 服务器后调用 retrlineretrbinary 时(FTP_ITLSFTP_TLS 的子类):

58 server = FTP_ITLS()
59 server.connect(host="x.x.x.x", port=990)
60 server.login(user="user", passwd="******")
61 server.prot_p()
62
63 server.cwd("doc")
64 print(server.retrlines('LIST'))
65 # server.retrbinary('RETR contents.7z', open('contents.7z', 'wb').write)
66 server.quit()

我收到 EOF 错误:

Traceback (most recent call last):
File "D:/Coding/test/itls.py", line 64, in <module>
print(server.retrlines('LIST'))
File "D:\Python\Python27\lib\ftplib.py", line 735, in retrlines
conn = self.transfercmd(cmd)
File "D:\Python\Python27\lib\ftplib.py", line 376, in transfercmd
return self.ntransfercmd(cmd, rest)[0]
File "D:\Python\Python27\lib\ftplib.py", line 713, in ntransfercmd
server_hostname=self.host)
File "D:\Python\Python27\lib\ssl.py", line 352, in wrap_socket
_context=self)
File "D:\Python\Python27\lib\ssl.py", line 579, in __init__
self.do_handshake()
File "D:\Python\Python27\lib\ssl.py", line 808, in do_handshake
self._sslobj.do_handshake()
ssl.SSLEOFError: EOF occurred in violation of protocol (_ssl.c:590)

因为 ftplib 似乎使用 PROTOCOL_SSLv23 作为 Python 2.7 中的默认协议(protocol),我尝试了PROTOCOL_TLSv1、PROTOCOL_TLSv1_1 和 PROTOCOL_TLSv1_2,但它们都不起作用。而且我还尝试覆盖 ntransfercmdauth,或设置 ctx = ssl._create_stdlib_context(ssl.PROTOCOL_TLSv1) 正如 Steffen Ullrich 在问题 connect-to-ftp-tls-1-2-server-with-ftplib 中所说,但错误从未消失。那我该怎么办?谢谢。

最佳答案

我在尝试连接到 FileZilla FTP 服务器时遇到了这个问题。 FileZilla 在“FTP over TLS 设置” 中有一个设置,称为“使用 PROT P 时需要在数据连接上恢复 TLS session ”。禁用此选项可以解决此问题。

如果您无法控制服务器,请查看 FTPS with Python ftplib - Session reuse required其中介绍了如何启用 session 重用。然而,这似乎需要 Python 3.6+。

关于python - EOF 发生在违反 Python ftplib 协议(protocol)的情况下,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34130441/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com