Manage Apache Download Speed And Traffic Limits With mod_cband

Version 1.0
Author: Falko Timme

In this tutorial I will describe how to install and configure mod_cband on an Apache2 web server. mod_cband is an Apache 2 module which provides bandwidth quota and throttling. It solves the problem of limiting users' and virtualhosts' bandwidth usage. The current version can set virtualhosts' and users' bandwidth quotas, maximal download speed, requests-per-second speed and the maximal number of simultanous IP connections.

mod_cband can be used by hosting companies, which would like to limit data transfer for their users, such as "10 GB of traffic per month".

In the first two chapters I will show how to install mod_cband on Debian Sarge and on Fedora Core 5 (the 64-bit version), and in the third chapter I will describe how to configure Apache for mod_cband which is independent from the distribution you're using.

Please note: mod_cband is an Apache2 module, it does not work with Apache 1.3.x!

I want to say first that this is not the only way of setting up such a system. There are many ways of achieving this goal but this is the way I take. I do not issue any guarantee that this will work for you!

1 Installation On Debian Sarge

In order to compile mod_cband, we must have apxs2 installed. We can achieve that by doing this:

apt-get install apache2-prefork-dev

Next we download and install mod_cband like this:

cd /tmp
wget http://cband.linux.pl/download/mod-cband-0.9.7.4.tgz
tar xzvf mod-cband-0.9.7.4.tgz
cd mod-cband-0.9.7.4
./configure
make
make install

The make install command should have added the mod_cband module to /etc/apache2/httpd.conf. Run

vi /etc/apache2/httpd.conf

and check if you find a line like this:

LoadModule cband_module       /usr/lib/apache2/modules/mod_cband.so

(If you don't find this line, add it yourself.)

Finallly restart Apache:

/etc/init.d/apache2 restart

The mod_cband installation is now finished.

2 Installation On Fedora Core 5

In order to compile mod_cband, we must have apxs installed. We can achieve that by doing this:

yum install httpd-devel

Next we download and install mod_cband like this:

cd /tmp
wget http://cband.linux.pl/download/mod-cband-0.9.7.4.tgz
tar xzvf mod-cband-0.9.7.4.tgz
cd mod-cband-0.9.7.4
./configure
make
make install

The make install command should have added the mod_cband module to /etc/httpd/conf/httpd.conf. Run

vi /etc/httpd/conf/httpd.conf

and check if you find a line like this:

LoadModule cband_module       /usr/lib64/httpd/modules/mod_cband.so

(If you don't find this line, add it yourself.)

Finallly restart Apache:

/etc/init.d/httpd restart

The mod_cband installation is now finished.

Share this page:

Suggested articles

10 Comment(s)

Add comment

Comments

By: Anonymous

mod_throttle

By: Anonymous

The cband Apache2 module is available from Debian's package sources if you are running testing (etch) or unstable (sid). apt-get install libapache2-mod-cband

By: Anonymous

libapache2-mod-cband is on backports.org for sarge.

You do not need to recompile.

By: Anonymous

I have a test Apache 2.2 server on Windows 2003, is it poddible to get mod_cband to work on it?

 

 

By: Anonymous

There is also a package for mod_cband in Fedora. Just install it with:

yum install mod_cband

By: Paki

ThEnX! 

By: Anonymous

Considering the majority of Apache installations are still using Apache 1.X, it's a shame that mod_cband isn't also available for Apache 1.X. I guess that the output filtering functionality of Apache 2.X (far superior to 1.X's) has caused this - one "workaround" might be to put an Apache 2.X reverse proxy in front of your (now backend) Apache 1.X server...

By: bahram

hello, is there anyway to do global limitation for all accounts at once? I have about 500 account and I can not add limitation entry one by one.

By: Anonymous

how to install mod_cband on windows 7?

By: edgar4all

This link http://cband.linux.pl/download/mod-cband-0.9.7.4.tgz isn't working any more. Where can I download it ?