Nginx proxy FTP

Содержание

Recently, it is necessary to use nginx to proxy the intranet FTP service for external users to access. Therefore, technical research is carried out on this.
Software version:

  • Nginx: 1.18.0;
  • vsftpd: 3.0.2;
  • CentOS: CentOS Linux release 7.9.2009 (Core).

2 FTP mode

FTP has two ports: control port (to complete commands such as login and directory query / switching) and data port (to be responsible for specific data transmission)

After installing vsftpd on CentOS, start the service and find that vsftpd listens for commands on port 21 (there is no client access at this time), as shown in the following figure:

Nginx proxy FTP

There are two FTP connection modes: active mode (port) and passive mode (PASV).

(1) When the FTP client connects to the server in the active mode, the client initiates the connection to the command port of the server with the dynamically selected port number;

(2) After the connection is established, the user will ask to establish a data connection after issuing the command of column directory or transfer file;

(3) The FTP client sends an active mode command on the control connection to inform the server client of the data connection port number;

(4) After receiving the instruction, the server will use port 20 to connect to the data connection port number specified by the client, so as to establish a data connection.

The connection process of passive mode is similar to that of active mode. The difference is that after the client sends the command of column directory or transfer file, the client will send PASV command to the server;

After receiving the PASV instruction, the server informs the client of the data connection IP address and port number of the server;

The client initiates the data connection according to the returned server data connection IP and port number.

3. Problems Solutions

Currently, the client needs to access the FTP server through the nginx agent. The forwarding of control commands can be realized through nginx stream, but it is difficult to realize the proxy for the data connection negotiated between the client and the server.

However, referring to relevant documents, vsftpd supports setting the port range of data connection and the IP of data connection.

Therefore, we can specify the vsftpd mode as the passive mode (the default is the passive mode), set the data connection IP address as the nginx proxy address, and reasonably set the data connection port range (nginx listens to the local data within this port range). After the FTP client negotiates the data connection with the vsftpd server, the FTP client initiates the connection according to the data connection IP (set as the nginx proxy address) and port number (actually connected to the nginx server), and nginx forwards the data monitored on this port to the data port corresponding to vsftpd.

4 scheme example

Machine information:

  • Nginx agent: 192.168.56.101;
  • Vsftpd server: 192.168.56.102;
  • Testing machine: 192.168.56.106.

Here, the virtual machine installed on the development machine is used to complete the verification, and the network segment is not specifically limited.

Vsftpd server configuration:

pasv_ There are potential safety hazards when promiscuous is closed;
In the actual networking situation, the source IP information can be reserved during nginx forwarding, but the client and server cannot access it directly, so they can only give up the reservation of the source IP information.

Nginx configuration:

The specific control of FTP data connection (such as speed limit) is omitted here.

5 verification

Restart vsftpd and nginx and initiate a connection from the tester: 192.168.56.103, as shown below:


Источник: developpaper.com