Page 1 of 1

Unable To Retrieve Files From FileZilla Server FTP

Posted: 2019-02-22 22:57
by jderita23
I'm working with a new vendor who uses FileZilla Server FTP site to transfer files. We're able to login to their FTP server and access the correct directory but are unable to retrieve files. The mget command hangs up.

Any advice on how to get this working?

Re: Unable To Retrieve Files From FileZilla Server FTP

Posted: 2019-02-23 23:00
by botg
What is this "mget command" you speak of? There's no such thing in the FTP specifications.

Re: Unable To Retrieve Files From FileZilla Server FTP

Posted: 2019-02-25 20:31
by jderita23
Should I be using a different command? Maybe just get or retr?

Re: Unable To Retrieve Files From FileZilla Server FTP

Posted: 2019-02-25 22:20
by boco
Both mget and get are not FTP commands. Some clients, like the crappy MS one, translate between DOS and FTP commands. To show the actual commands, use the command "debug".

The abstract "get" command results in a PORT and a RETR FTP command, the "mget" one results in multiple PORT+RETR pairs of FTP commands. The MS FTP does not support Passive mode, btw. Due to the lack of Passive and any configuration, the MS FTP will not work if behind NAT.


Solution: Use an FTP client proper. For interactive use, FileZilla. For command line, e. g. lftp.

Re: Unable To Retrieve Files From FileZilla Server FTP

Posted: 2019-03-11 12:41
by MRicardo
boco wrote:
2019-02-25 22:20
Both mget and get are not FTP commands. Some clients, like the crappy MS one, translate between DOS and FTP commands. To show the actual commands, use the command "debug".

The abstract "get" command results in a PORT and a RETR FTP command, the "mget" one results in multiple PORT+RETR pairs of FTP commands. The MS FTP does not support Passive mode, btw. Due to the lack of Passive and any configuration, the MS FTP will not work if behind NAT.


Solution: Use an FTP client proper. For interactive use, FileZilla. For command line, e. g. lftp.
thx, i'll try