README
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1.  Mihai Claudiu Capatina <mick@aignet.ro> 
  2.  aka Mick
  3.  This is a small script that I use on FreeBSD machines running ALTQ 
  4.  This machines acts like a traffic management system and I need to see 
  5.  the traffic for each class ( CBQ ) 
  6.  All you need to change in this script is the path to "altqstat"
  7.  and the name of the interfaces
  8.  In my case fxp0 is connected to my LAN and fxp1 is connected to my ISP
  9.  so...I measure on fxp0 the download and on the fxp1 the upload for each class
  10.  This script has only one parameter....this is the class number assigned 
  11.  by ALTQ. 
  12.  If you want to use this script I suppose that you already instaled ALTQ
  13.  In any case do "altqstat -w 0 -c 2 -i your_interface" to see what your
  14.  class number is...for each class
  15.  If you want to count packets instead of bytes change the st line of the script
  16.  instead of $octeti_down and $octeti_up put $pakete_down and $pakete_up
  17.  You will call this script from mrtg.conf like this :
  18.  Target[name]: `/your/path/to/my/script/stfc [class_number]
  19.   - name - can be an ip address or a client name or whatever you want
  20.   - class_number - explained above...
  21.  VERY IMPORTANT : always define classes in the same order for upload and 
  22.                   download...so they will have the same class number 
  23.  If you need additional information please feel free to mail me...I'll be glad
  24.  to help you...;-))
  25. Mick <mick@aignet.ro>