Apache 1.3.x 限制頻寬(mod_bandwidth)
僅限 Apache 1.3.x 使用 mod_bandwidth 來限制用戶流量。
安裝步驟
- 安裝 mod_bandwidth 模組,並建立相關目錄:
apt-get install mod_bandwidth mkdir /tmp/apachebw mkdir /tmp/apachebw/link mkdir /tmp/apachebw/master chmod -R 777 /tmp/apachebw
- 編輯 /ect/httpd/conf/httpd.conf,檢查是否有
<IfDefine HAVE_BANDWIDTH> LoadModule bandwidth_module modules/mod_bandwidth.so </IfDefine>
及
<IfDefine HAVE_BANDWIDTH> AddModule mod_bandwidth.c </IfDefine>
沒有的話請自行加入。
- 在 AddModule 的區段之後再加上:
BandWidthModule on BandWidth 192.168.1 0 #內網(192.168.1.*)不限流量 BandWidth all 10240 #其它網路限流 10KB/s
- 儲存 httpd.conf 之後,重新啟動 Apache 即可。
No comments yet.