• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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