步骤
1、下载模块 mod_bandwidth
2、编译和安装
a) 编译:
由于 apache 是用编译好的包安装的,因此只有采用 apxs 方式编译
/usr/local/sbin/apxs -c mod_bandwidth.c -o /usr/local/libexec/apache/mod_bandwidth.so
b) 创建 mod_bandwidth 运行需要的目录:
mkdir /tmp/apachebw
mkdir /tmp/apachebw/link
mkdir /tmp/apachebw/master
chmod -r 777 /tmp/apachebw
c) 修改 /usr/local/etc/apache/httpd.conf 文件:
c.1) 增加下列内容
loadmodule bandwidth_module libexec/apache/mod_bandwidth.so
addmodule mod_bandwidth.c
注意:这两行必须分别加在相应区域的最前面,使得这个模块以最低的优先级运行。
c.2) 增加下列内容
bandwidthdatadir "/tmp/apachebw/"
bandwidthmodule on
c.3) 修改 的设置
# 不限制局域网内用户的下载速度
bandwidth 192.168.0 0
# 限制其他用户的下载速度为每秒 8192 字节
bandwidth all 8192
....
按照上面的方式修改其他 小节
d) 重新启动 apache:
apachectl configtest
apachectl restart
--------------------------------------------------
mod_bandwidth 的选项简单说明:
..............................
bandwidthdatadir
格式: bandwidthdatadir
默认: "/tmp/apachebw"
上下文: server config
设置 mod_bandwidth 保存运行时数据的目录。需要在该目录下创建 ./master
和 ./link 两个子目录,并设置为权限为 777。
注意:有些系统会定时清理 /tmp 目录,所以在这些系统上最好把
bandwidthdatadir 设置到其他地方。
..............................
bandwidthmodule
格式: bandwidthmodule
默认: off
上下文: per server config
允许或者禁止模块。
..............................
bandwidthpulse
格式: bandwidthpulse
默认: 1000
上下文: per server config
改变计算带宽的时间间隔,默认为1000毫秒(1秒)。使用更低的间隔可以获得
更精确的带宽控制,但消耗更多的cpu时间,反之亦然。
注意:这个选项的详细说明请参考 mod_bandwidth 的文档。
..............................
bandwidth
格式: bandwidth
默认: 无
上下文: per directory, .htaccess
限制这个目录下文件下载的速率。
domain 指定来自哪个域的连接受到这个设置的影响。
ip 指定来自哪个ip地址(或者ip段)的连接受到影响。
all 所有连接都受到影响。
示例:
# 来自 dualface.com 的连接不限制下载速度
bandwidth dualface.com 0
# 来自 192.168.0.0/16(或者192.168.0) 网段的连接不限制下载速度
bandwidth 192.168.0.0/16 0
# 其他连接限制下载速度为每秒1024字节
bandwidth all 1024
# 越前面的设置优先权越高
..............................
largefilelimit
格式: largefilelimit
默认: 无
上下文: per directory, .htaccess
对于超过指定大小的文件,下载时使用的速率。如果速率设置0即不限制速度,
但下载速度仍然要受到bandwidth设置的影响。如果设置成-1,则完全不受影响。
通过设置不同的文件大小和速率,可以设置不同大小范围内文件的下载速度。
示例:
# 文件尺寸大于等于200千字节的文件,下载速率为每秒3072字节
largefilelimit 200 3072
largefilelimit 1024 2048
..............................
maxconnection
格式: maxconnection
默认: 0 (不限制)
上下文: per directory, .htaccess
当超过指定连接数时,拒绝新的连接。
..............................
minbandwidth
格式: minbandwidth
默认: all 256
上下文: per directory, .htaccess
设置最小带宽,默认为每秒256字节。根据bandwidth和largefilelimit设置的速
率。mod_bandwidth会计算允许的连接数。例如bandwidth为4096字节,而
minbandwidth为1024字节,则最大并发连接数为4。
注意:这个选项的详细说明请参考 mod_bandwidth 的文档。
阅读(688) | 评论(0) | 转发(0) |