I am using the "ftp" command of linux to send data to a 3rd party provider. This company states that we need to "Disable passive mode in your FTP client", and I confirm it doesn't work in passive mode.

However, when I googled the linux command, I see that the "-p" flag is "the default now for all clients (ftp and pftp) due to security concerns using the PORT transfer mode. The flag is kept for compatibility only and has no effect anymore."

How do I disable passive mode then? And, is it that bad?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

once you've logged into the site with ftp, type passive and then do your transfer

link|improve this answer
wait I'm confused, typing "passive" would make me go into "active" mode? – nute Jun 17 '10 at 20:29
It's a boolean trigger. Each issuance of passive (or pasv for old client) flips the active/passive flag. – sysadmin1138 Jun 17 '10 at 20:30
feedback

Just run passive within the client.

Passive mode changes the method used for connecting to the FTP, as active mode often encounters issues with more restrictive firewall rules.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.