You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Joshua Slive <jo...@slive.ca> on 2007/02/08 17:24:03 UTC

Re: Large Resource Consumption by One User Access to mp3 File

On 2/8/07, Greg Sims <gr...@headingup.net> wrote:

> This consumption of server resource by one user is unfair to everyone else
> trying to use http at the same time.  Is it possible to control resource
> allocation so that it is fair to all users?

The user in question is using some kind of download accelerator that
uses multiple byte-range requests to access the same file
simultaneously over multiple connections.  In general, these
accelerators are designed simply to squeeze out other users and hence
get faster downloads.  It should be considered and handled like a
denial-of-service attack.  Some documentation on that is here:
http://httpd.apache.org/docs/trunk/misc/security_tips.html#dos

In general, either use a firewall to restrict number of connections
per IP, or use a third-party module to do the same.  See
http://modules.apache.org/

Joshua