如何對網站做頻寬控制

如何對網站做頻寬控制—-mod_bw

用過cband頻寬控制後覺得還是以下好用
理由:cband他限制網站所有檔案的流量,無法對檔案作控管
其實最有效果是對檔案作頻寬流量控制,比如說對jpg做限制…  

先去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 ——加入些行
  
  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可以對全局和虛擬主機進行不同的限制,其語法結構都是
  
  #所限制的目錄所在,此處表示主機的根目錄
  MaxConnPerIP 3 #所限制的每個IP併發連接數為3個
  NoIPLimit image/* #對圖片不做IP限制
  
  #所限制的目錄所在,此處表示主機的/mp3目錄
  MaxConnPerIP 1 #所限制的每個IP併發連接數為1個
  OnlyIPLimit audio/mpeg video #該限制只對視頻和音頻格式的檔
  
  
  當對全局進行限制時,將這段代碼放在httpd.conf檔沒有VirtualHost的地方,若是對某個虛擬主機進行限制,請將其放在 和之間,我們可以通過更改Location以及 MaxConnPerIP方便的控制所限制的目錄和併發連接數。
  最後,只要重新啟動Apache服務,併發連接數的限制就可以生效。