Originally posted by: buleyb
Originally posted by: rfb FTP always uses two sockets, one for the control connection and one for the data connection. Normally, the FTP client establishes the control connection to the FTP server and the FTP server establishes the data connection to the FTP client. However, many/most firewalls block inbound connections. Passive mode FTP allows the FTP client to establish the data connection to the FTP server so that both the control connection and data connection are established from the FTP client to the FTP server. No advice on using My Network Places for FTP as I don't use it (I use a traditional FTP client for file transfer). Roy
I like the idea, but I don't buy into this...because the passive connections I use are blocked several times from using control ports. Data is good, control is blocked, passive works...any links you have to clarify this?
FTP is an unusual protocol in that it uses two ports, one for commands and the other for data. (This is one of the reasons it is superior to HTTP for transferring large files.) Active FTP was invented first. The client initiates a connection on the server?s command port. The server then initiates a connection with the client from its data port. In Passive FTP, the client initiates both connections with the server, which remains ?passive?.
Active FTP may cause problems if your client is behind a firewall. From the firewall?s point of view, the FTP server that is trying to initiate a connection with your client looks like an intruder and is usually blocked. This is why many users have difficulty using FTP to download files from behind a firewall.
Passive FTP solves this problem, but creates other problems, notably where FTP server security is concerned. The server must listen on a large number of ports. This requires the firewall to let a lot of unqualified traffic through. Most firewall administrators do not like this.