如何为主动模式下的 FTP 服务器指定客户端数据端口?

发布于 2024-09-11 18:15:19 字数 157 浏览 6 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

奶茶白久 2024-09-18 18:15:19

使用标准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 your FTP object if you're feeling brave.

Smile简单爱 2024-09-18 18:15:19

您可以重新实现FTPsendport方法来发送您想要的IP地址,而不是推导出来的IP地址。像这样:

class PatchedFTP(FTP):
    def sendport(self, host, port):
        return super(MyFTP, self).sendport("192.0.2.1", port)

ftp = PatchedFTP(ftp_server)

# the rest of the code would be the same

虽然通常情况下,更好的解决方案是使用被动模式。通常,人们尝试使用主动模式,因为被动模式不适用于默认代码,因为外部IP被报告为错误。有关解决方法,请参阅:
无法使用 ftplib 列出 FTP 目录 - 但 FTP 客户端可以工作

You can re-implement the sendport method of FTP to send your desired IP address instead of the deduced one. Something like this:

class PatchedFTP(FTP):
    def sendport(self, host, port):
        return super(MyFTP, self).sendport("192.0.2.1", port)

ftp = PatchedFTP(ftp_server)

# the rest of the code would be the same

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

痴骨ら 2024-09-18 18:15:19

从 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文