• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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