FTP - 530 Sorry, the maximum number of clients...?

6

2

My problem is that my FTP work great, except when I upload files on a particular client server!

On this server it happens that some files are uploaded fine and others not. They stop halfway through the upload, then this error is displayed:

530 Sorry, the maximum number of clients (4) from your host are already connected. Unable to make a connection. Please try again.

Obviously this is not true, I'm the only one that is uploading!

Anyone had the same experience with this? I have tried many different FTP clients; they all display the same error or just hang up.

Luca Filosofi

Posted 2010-03-28T17:26:13.903

Reputation: 215

Answers

8

It's possible for a single ftp client to open multiple connections to a server, even though it looks like one to you, there might be multiple connections between your host and the server.

In a program like filezilla you can select File -> Site Manager On the Transfer Settings tab, set the Limit number of simultaneous connections field to, in your case, less than 4.

DaveParillo

Posted 2010-03-28T17:26:13.903

Reputation: 13 402

1this somehow doesn't seem to work (anymore) in FileZilla 3.13.1. I changed the setting but I'm still getting the exact same error. – RubenGeert – 2015-08-30T04:41:20.927

In CyberDuck, you can go to Preferences > Transfers > Transfer Files and set it to Open single connection – Matt Fletcher – 2019-06-04T10:34:56.740

2

There are two other possible causes for this error:

  1. The FTP server is sitting behind a NAT and sees all incoming connections arriving from the same IP address. (Don't laugh - I've seen this many times!) Therefore...you just happened to be the fourth connection...

  2. Other people from YOUR network are accessing the same FTP server. Since you all may appear to be coming from the same IP address...

There are FTP servers that allow you to lift limits like this for particular user accounts, user groups, IP ranges, etc.

user309526

Posted 2010-03-28T17:26:13.903

Reputation: 41

Thank you, We change the networking type from NAT to bridge mode, and It's working, now. :) – Chu-Saing Lai – 2016-08-22T06:25:08.527