Skip to content
Advertisement

Apache Commons FTP Passive mode, how to set remote listening port (data stream)

I try to connect with an FTP server with apache-commons-net-3.7.2 (implicit TLS, double factor authentication with client cert + login/password).

I can authenticate myself, enter in passive mode, but the client doesn’t succeed in connecting to the server in order to get data by the data socket.

I can connect myself, on the same computer, with WinSCP (same settings). I have activated WinSCP logs to see protocol details, and I have adjusted my source code with the same options. I can verify that my protocol is ok with a ProtocolCommandListener. I know that passive mode is required because WinSCP emits PASV command.

I can see that WinSCP connects to the data socket on port 62564 (I have replaced FTP IP address with XXX)

JavaScript

Also I can see that the reply sended by the server for PASV command doesn’t include the port to connect to.

JavaScript

I suppose that the API doesn’t know on which port data request have to be sended and use a default which is not ok. I don’t know how WinSCP succeeds in computing 62564 port number.

JavaScript

After hours searching in API documentation, source code, FTP RFC, I don’t see how to do it.

Advertisement

Answer

Your assumption is wrong. You do not set the port. The server tells you what port to connect to.

For WinSCP:

2021-01-06 10:25:35.575 227 Entering Passive Mode (192,168,4,122,244,100).

2021-01-06 10:25:35.575 Connexion à 83.XXX.XXX.XXX:62564

Where 62564 = (244 << 8) + 100

See RFC 959, section 4.1.2. Transfer parameter commands, Page 28.


The parsing of the PASV response fails, because you are using a wrong code. The _parseExtendedPassiveModeReply is for EPSV. For PASV, use _parsePassiveModeReply. There you will also see the implementation of the above formula:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement