Limiting bandwidth in Apache 2

Get the latest source from http://bwmod.sourceforge.net/
or a possibly older version from here.

Can configure different settings for each virtual host!
<VirtualHost *:80>
        ServerAdmin chris@nocrash.net
        ServerName www.nocrash.net
        DocumentRoot /var/www/html/nocrash
        BandWidthModule On
        ForceBandWidthModule On
        BandWidth 10.0.0.0/24 0
        #Bandwidth all 22000
        #MinBandwidth all 5000
        #This limits files over (or equal to) 300kb to 10kbytes/s
        #LargeFileLimit .jpg 300 10000
        <Directory /var/www/perl/www>
            AddOutputFilterByType MOD_BW image/jpeg image/jpg
            LargeFileLimit * 300 15000
        </Directory>
        RewriteEngine on
        RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
</VirtualHost>