• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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