FTP 主动模式意味着服务器打开与客户端的连接并自行发送数据。这通常是不切实际的,因此发明了被动模式:服务器打开一个额外的端口来监听传入的连接并在有人连接时开始传输。
因此,被动模式会话如下所示:
$ telnet localhost 21
220 Welcome to EarlGray FTP
USER ftp
331 Please specify the password.
PASS ftp
230 Login successful.
PASV
227 Entering Passive Mode (127,0,0,1,185,37).
LIST
150 Here comes the directory listing.
---> here client opens another telnet session,
---> connecting to the same server on port 185*256+37, specified by server:
$ telnet localhost $((185 * 256 + 37))
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
drwxrwxr-x 2 121 1003 4096 Aug 21 10:57 incoming
drwxrwxr-x 7 0 1003 4096 Nov 09 21:04 pub
Connection closed by foreign host.
<---- end of data transfer session
226 Directory send OK.
而活动会话的示例:
$ telnet localhost 21
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
220 Welcome to EarlGray FTP
USER ftp
331 Please specify the password.
PASS ftp
230 Login successful.
PORT 127,0,0,1,45,45 (ports are specified by client)
200 PORT command successful. Consider using PASV.
LIST
150 Here comes the directory listing.
---> here client listens for an incoming connection on port 45*256+45
$ nc -l 0.0.0.0 $((45 * 256 + 45))
drwxrwxr-x 2 121 1003 4096 Aug 21 10:57 incoming
drwxrwxr-x 7 0 1003 4096 Nov 09 21:04 pub
<--- data are rececived
226 Directory send OK.
PS FTP 是一个非常古老的协议(从大约 1970 年开始定义),在没有路由器、网关和其他传输级别的好东西时定义,通常有几台机器直接连接,所以主动模式工作得很好,被动模式是如何该协议在今天仍然存在。
所以,是的,你已经得到了正确的 PORT 命令,但是没有统一的方法来获取你的外部 IP(本地机器上的几个不同网络中可能有几个你的 IP,可能有几个门在路上有自己的网络服务器,您要使用哪一个?)。问题的第二部分,如何获取服务器看到的 IP,无法回答(这就是被动模式的用途)。