• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

ProFTPd not in pasive mode

E

EdwardDekker

Guest
Hello,

I do have a problem with ProFTPd to retrieve files into passive mode.
Only on a active mode can i get the files.

I have a standard installation of Plesk 10.3.1

Thanks in advance.
 
Unfortunately there is no way to set a default for this. Whether the data transfer is to be active or passive is, by RFC, left to the client to specify.

At most, you can configure proftpd to use active data transfers only by denying the PASV commands from clients, e.g.:

<Limit EPSV PASV>
DenyAll
</Limit>

Alternatively, you can cause proftpd to use passive data transfers only:

<Limit EPRT PORT>
DenyAll
</Limit>
 
Back
Top