Apache流量控制及连接数限制

这里下载符合你操作系统的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]
限制連線數目,這個還蠻好用的

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyjsyw.html