The previous page covered securing a local FTP server. This page expands on that for securing an FTP server to run over the Internet. Before proceeding, ensure you have configured and tested your FTP server as explained on the previous page. There are two transfer modes: active or passive. When an FTP server is configured for Internet use, the user (FTP client) is given priority. Everything is geared to make it easier for the client. Hence, your server must support passive mode. The following covers this mode and the added complication of running an FTP server behind a wireless router with NAT. FTP BasicsFTP uses two ports, a command (control) port and data port. Traditionally, these are assigned ports 21 and 20 respectively. Depending on the operating mode, the data port is not always on port 20. Passive FTP Most browsers use passive mode for connection. This mode changes the data port as follows. A secure FTP server follows the above procedure with one minor difference; the command port used is reserved port 990. During a data transfer, the FTP server needs to send its visible IP address back to a client. Because of address translation through a NAT device, the FTP server has no way of determining this IP address. It needs to be set during FTP server configuration, which is not a problem if you have a fixed IP address. However, a dynamic IP is problematic. The FileZilla team neatly resolves this issue by providing a dynamic IP address resolution service. Active FTPIf you have ever set up an FTP client behind a NAT (Network Address Translation) router, you will have been forced to change mode from active to passive. Reason for this, active FTP will not work behind a NAT device. SummaryThe above is intended to explain why you need to twiddle certain settings and how to choose options for your installation. All settings for passive mode are on a single page, making the whole set-up process easier. Configure Passive Mode
Configure NAT Router
SummaryThat concludes this two part secure FTP configuration guide. You now have a fully working secure FTP server that will transfer files locally or over the Internet. --oOo--
|