提问者:小点点

Python FTPS上传错误: 425无法建立数据连接:不允许操作


我试图使用ftps发送文件到FTP服务器。登录和更改目录工作:

import ftplib
ftps = ftplib.FTP_TLS('host','user','pwd')
ftps.set_pasv(True)
ftps.prot_p()
ftps.cwd('/target_directory')

但是,当我尝试上传我的文件:

file = open(file, 'rb')
send_cmd = 'STOR file_name.txt'
ftps.storbinary(send_cmd, file)
file.close()
ftps.quit()

我得到以下错误:

File "/script/location/script.py", line 161, in <module>
ftps.storbinary(send_cmd,file)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/ftplib.py", line 772, in storbinary
return self.voidresp()
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/ftplib.py", line 229, in voidresp
resp = self.getresp()
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/ftplib.py", line 222, in getresp
raise error_temp, resp
ftplib.error_temp: 425 Unable to build data connection: Operation not permitted

我读过425响应代码通常是处于活动模式的结果,这就是为什么我包含了ftps.set_pasv(True)(尽管默认情况下这是True)。

我还尝试使用ftps.retrlines('LIST')列出目录内容,但基本上得到相同的错误。我正在使用Python 2.7.10。任何帮助将不胜感激。


共1个答案

匿名用户

这是python中报告的错误:https://bugs.python.org/issue19500

您可以在新类中应用补丁

class Explicit_FTP_TLS(ftplib.FTP_TLS):
    """Explicit FTPS, with shared TLS session"""
    def ntransfercmd(self, cmd, rest=None):
        conn, size = ftplib.FTP.ntransfercmd(self, cmd, rest)
        if self._prot_p:
            conn = self.context.wrap_socket(conn,
                                            server_hostname=self.host,
                                            session=self.sock.session)
        return conn, size