• 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.

FAIL: ftp per_source_limit from

JuanCar

Regular Pleskian
When I send files to my through FTP, the server cuts connection and I get this message in messages log file

FAIL: ftp per_source_limit from xxx.xxx.xxx.xxx

xxx.... my IP

And I've observed the connection is closed and opened during the transfer.

Which is the cause of this behavior?

I avoid disconnection adding per_source=unlimited in /etc/xinetd.d/ftp_psa
But I see this entry in the same message log

mod_delay/0.7: unable to open DelayTable '/var/proftpd.delay': No such file or directory

Any info about this?
Thanks
 
You have a configuration file called "/etc/xinetd.d/ftp_psa" for PROFTP, which looks like this:

Code:
#ATTENTION!
#
#DO NOT MODIFY THIS FILE BECAUSE IT WAS GENERATED AUTOMATICALLY,
#SO ALL YOUR CHANGES WILL BE LOST AFTER YOU UPGRADE PARALLELS PLESK PANEL.

service ftp
{
   flags       = IPv6
   flags        = IPv4
    disable    = no
    socket_type    = stream
    protocol    = tcp
    wait        = no
    user        = root
    instances    = UNLIMITED
    server        = /usr/sbin/in.proftpd
    server_args    = -c /etc/proftpd.conf
}
Please consider adding "per_source = UNLIMITED" right under "instances = UNLIMITED" and restart xinetd with the command "service xinetd restart", to avoid the described issue.
 
Back
Top