FTP客户端从服务器接收到错误的端口

时间:2018-07-19 14:39:42

标签: sockets ftp passive-mode

我正在从头开始编写FTP客户端,无法打开PASV连接。服务器似乎发送了正确的端口,但是客户端收到了不同的原始字符串,随后无法连接。

这是服务器日志(Filezilla):

2018.07.19 16:29:44 - (not logged in) (x.x.10.33)> Connected on port 21, sending welcome message...
2018.07.19 16:29:44 - (not logged in) (x.x.10.33)> 220 Hello from FileZilla Server 0.9.60 beta
2018.07.19 16:29:44 - (not logged in) (x.x.10.33)> USER test
2018.07.19 16:29:44 - (not logged in) (x.x.10.33)> 331 Password required for test
2018.07.19 16:29:45 - (not logged in) (x.x.10.33)> PASS test
2018.07.19 16:29:45 - test (x.x.10.33)> 230 Logged on
2018.07.19 16:29:45 - test (x.x.10.33)> PASV
2018.07.19 16:29:45 - test (x.x.10.33)> 227 Entering Passive Mode (y,y,105,118,93,232)

这是客户端日志(我的程序):

> USER test
2018.07.19 14.29.02 - 220 Hello from FileZilla Server 0.9.60 beta
2018.07.19 14.29.02 - 331 Password required for test
> PASS test
2018.07.19 14.29.02 - 230 Logged on
> PASV
2018.07.19 14.29.03 - 227 Entering Passive Mode (y,y,105,118,214,224)

显示的输出是从套接字接收的原始数据。所有服务器输出都到达,但是227响应的端口号错误。我很困惑这怎么可能。

该连接是通过VPN(OpenVPN)从越南连接到德国的,服务器也位于德国。我已经验证了Filezilla和我的客户端在同一台计算机上运行时是否可以协同工作(无网络流量)。我还验证了我的客户端可以与独立服务器(本地和不安全的Internet)一起使用,因此问题似乎出在Filezilla?

0 个答案:

没有答案