What is Passive Ftp and how it works?

In Passive mode Ftp, the client initiates both connections to the server, solving the problem of firewalls filtering the incoming data port connection to the client from the server.
When opening an Ftp connection, the client opens two random unprivileged ports locally (N > 1024 and N+1). The first port contacts the server on port 21, but instead of then issuing a PORT command and allowing the server to connect back to its data port, the client will issue the PASV command. The result of this is that the server then opens a random unprivileged port (P > 1024) and sends the PORT P command back to the client. The client then initiates the connection from port N+1 to port P on the server to transfer data.

To support Passive mode Ftp, the following communication channels need to be opened:

(a) FTP server's port 21 from anywhere (Client initiates connection)
(b) FTP server's port 21 to ports > 1024 (Server responds to client's control port)
(c) FTP server's ports > 1024 from anywhere (Client initiates data connection to random port specified by server)
(d) FTP server's ports > 1024 to remote ports > 1024 (Server sends ACKs (and data) to client's data port)

In step 1, the client contacts the server on the command port and issues the PASV command. The server then replies in step 2 with PORT 2024, telling the client which port it is listening to for the data connection. In step 3 the client then initiates the data connection from its data port to the specified server data port. Finally, the server sends back an ACK in step 4 to the client's data port.

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to Change the password on an FTP account?

Kindly use the following steps to change a password on an FTP account:- (a) Click on the Ftp...

I have uploaded my files but my site is not coming up in my browser?

When you FTP into your account, you will see 5 folders (tmp, mail, public_html, public_ftp and...

Common FTP codes. What do they mean?

Here's a list of some of the most common FTP codes you might see:- 100 - Codes The requested...

Error: No connection could be made because the target machine actively refused it. Connection closed

The error is occurring because there is no server listening at the hostname and port you...

Error: Unable to resolve host name

This error means that the hostname you are trying to connect to cannot be resolved to an IP...