如何为主动模式下的 FTP 服务器指定客户端数据端口?
我使用 Python ftplib 连接到在主动模式下运行的 FTP 服务器;这意味着当我们之间发送数据时,服务器将在随机端口上连接我的客户端计算机。
我可以指定客户端的数据端口(或端口范围)并让服务器连接特定端口吗?我不想在防火墙 iptables 中打开 FTP 服务器的所有端口。
I use Python ftplib to connect to an FTP server which is running on active mode; That means the server will connect my client machine on a random port when data is sent between us.
Can I specify the client's data port (or port range) and let the server connect the certain port? I don't want to open all ports to the FTP server in my firewall iptables.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用标准
ftplib
模块无法做到这一点。您要么找到一个提供此功能的备用库,要么在您的
FTP
对象上对makeport()
方法进行猴子修补(如果您有勇气的话)。There is no way to do this with the standard
ftplib
module.You're either going to have find an alternate library which offers this functionality or monkey-patch the
makeport()
method on yourFTP
object if you're feeling brave.您可以重新实现
FTP
的sendport
方法来发送您想要的IP地址,而不是推导出来的IP地址。像这样:虽然通常情况下,更好的解决方案是使用被动模式。通常,人们尝试使用主动模式,因为被动模式不适用于默认代码,因为其外部IP被报告为错误。有关解决方法,请参阅:
无法使用 ftplib 列出 FTP 目录 - 但 FTP 客户端可以工作
You can re-implement the
sendport
method ofFTP
to send your desired IP address instead of the deduced one. Something like this:Though usually, better solution is to use the passive mode. Commonly, people try to use the active mode, because the passive mode does not work with the default code, because its external IP is reported wrong. For a workaround, see:
Cannot list FTP directory using ftplib – but FTP client works
从 Python 3.3 开始,建立连接的 ftplib 函数采用
source_addr
参数,允许您准确地执行此操作。Since Python 3.3, ftplib functions that establish connections take a
source_addr
argument that allows you to do exactly this.