APACHE 流量控制及连接数限制(bandwidth)

先去http://apache.ivn.cl/#bandwidth  或者到http://bwmod.sourceforge.net/下載符合你作業平台的Bandwidth Mod(mod_bw)版本。
下载这个安装模块

tar -zxvf mod_bw-0.8.tgz
cd mod_bw
apxs -i -a -c mod_bw.c
这样就安装了这个模块

然后进去到httpd.conf里面来添加
LoadModule bandwidth_module   patch/apache/mod_bandwidth.so

DocumentRoot “/var/www”
BandWidthModule On    ——加入些行

<Directory “/var/www”>
Options  Indexes FollowSymLinks
AllowOverride None
BandWidth all 10240000 ——–这样就限制整个站点的速度为10M

BandWidthModule [On|Off]
apaceh 預設是關閉的,所以請把他打開
BandWidthModule on

ForceBandWidthModule [On|Off]
這個設定預設情形,他不會對每個要求限制,如果你把他打開,他就會對每個要求做限制
普通要求:AddOutputFilterByType MOD_BW text/html text/plain
打開設定:ForceBandWidthModule On
BandWidth [From] [bytes/s]

這個設定有2個參數,第一是from,第二是速度,第一你可以用整個ip位址,或者是network mask例如:192.168.0.0/24 or 192.168.0.0/255.255.255.0) or all。最後的all就是全部皆可,不限制
BandWidth localhost 10240
BandWidth 192.168.218.5 0

上面針對 localhost 給 10KB的速度,然後針對 192.168.218.5 不限制速度
在版本0.8還可以針對client端的瀏覽器做限制
BandWidth u:[User-Agent] [bytes/s]

你可以利用正規語法比對client端瀏覽器
BandWidth “u:^Mozilla/5(.*)” 10240
BandWidth “u:wget” 102400

還蠻不錯的功能
MinBandWidth [From] [bytes/s]

BandWidth all 102400
MinBandWidth all 50000
The example above, will have a top speed of 100kb for the 1st client. If more clients come, it will be splitted accordingly but
everyone will have at least 50kb (even if you have 50 clients)

BandWidth all 50000
MinBandWidth all -1
上面這個例子是保證client端下載速度保證 50KB/s

LargeFileLimit [Type] [Minimum Size] [bytes/s]
這個專門是用來限制大型檔案,譬如說影音檔 avi wmv 之類的 還蠻好用的喔
LargeFileLimit .avi 500 10240
上面是說如果 avi檔案超過500KB 就限制速度在 10KB

BandWidthPacket [Size]
這個不用理他,不要隨便調整他

BandWidthError [Error]
這是錯誤訊息導向,比如說超過限制,你可以寫個html檔然後導向那邊
ErrorDocument 510 /errors/maxconexceeded.html
BandWidthError 510

MaxConnection [From] [Max]
限制連線數目,這個還蠻好用的

限制所有連線速度無限,但是只能有20條連線
BandWidth all 0
MaxConnection all 20

限制無限制ip速度無限,連線數20,然後網域192.168.0.0/24的速度 10KB,連線數目5
BandWidth all 0
BandWidth 192.168.0.0/24 10240
MaxConnection all 20
MaxConnection 192.168.0.0/24 5

然後在舉一些官方的例子
Limit every user to a max of 10Kb/s on a vhost :

BandwidthModule On
ForceBandWidthModule On
Bandwidth all 10240
MinBandwidth all -1
Servername www.example.com

Limit al internal users (lan) to 1000 kb/s with a minimum of 50kb/s , and
files greater than 500kb to 50kb/s.

BandwidthModule On
ForceBandWidthModule On
Bandwidth all 1024000
MinBandwidth all 50000
LargeFileLimit * 500 50000
Servername www.example.com

限制 avi 跟 mpg 速度 20kb/s.

BandwidthModule On
ForceBandWidthModule On
LargeFileLimit .avi 1 20000
LargeFileLimit .mpg 1 20000
Servername www.example.com

Using it the “right” way, with output filter by mime type (for text) to 5kb/s:

BandwidthModule On
AddOutputFilterByType MOD_BW text/html text/plain
Bandwidth all 5000
Servername www.example.com

连接数限制
先去这下载一个吧..http://dominia.org/djao/limitipconn2.html

下载后会得到
mod_limitipconn-0.23.tar.bz2
解压出来..tar -jxvf  mod_limitipconn-0.23.tar.bz2
直接make install即可.

并且在mod_status下添加了ExtendedStatus On这一行。这时我们的mod_limitipconn模块就安装完毕,下一步就是对某个目录进行并发连接数的设置了。mod_limitipconn可以对全局和虚拟主机进行不同的限制,其语法结构都是

<IfModule mod_limitipconn.c>
<Location /> #所限制的目录所在,此处表示主机的根目录
MaxConnPerIP 3 #所限制的每个IP并发连接数为3个
NoIPLimit image/* #对图片不做IP限制
</Location>
<Location /mp3> #所限制的目录所在,此处表示主机的/mp3目录
MaxConnPerIP 1 #所限制的每个IP并发连接数为1个
OnlyIPLimit audio/mpeg video #该限制只对视频和音频格式的文件
</Location>
</IfModule>

当对全局进行限制时,将这段代码放在httpd.conf文件没有VirtualHost的地方,若是对某个虚拟主机进行限制,请将其放在 <VirtualHost xxx.xxx.xxx.xxx>和</VirtualHost>之间,我们可以通过更改Location以及 MaxConnPerIP方便的控制所限制的目录和并发连接数。

最后,只要重新启动Apache服务,并发连接数的限制就可以生效。

原文地址 http://blog.sina.com.cn/s/blog_485acedb0100ad2i.html~type=v5_one&label=rela_nextarticle

你可能感兴趣的:(apache)