Limit maximum incoming connections to a port using iptables

Posted by Harley on Server Fault See other posts from Server Fault or by Harley
Published on 2012-03-20T22:46:39Z Indexed on 2012/03/20 23:32 UTC
Read the original article Hit count: 283

Filed under:
|

I have a server that has apache listening on a number of ports. Some ports are used for configuring the server, and another is used to download large files.

My problem is that when I have a large number of clients downloading files, the web interface is uncontactable. I would like to limit the number of clients connecting on the "large file" port so that apache always has available connections to configure the server. A REJECT is fine, the client trying to download the file will back off and retry later. Each client only has one connection open to the server at a time, so limiting by IP won't work.

I know I could put something in front of apache to manage this, but I'd really like to do it in iptables, without adding more software.

© Server Fault or respective owner

Related posts about iptables

Related posts about port