• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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