CentOS 5.4配置Mrtg网络流量监控系统

1、安装mrtg   apache   net-snmpd

安装命令:yum install mrtg httpd net-snmp net-snmp-utils -y

2、配置httpd.conf

命令:vi /etc/httpd/conf/httpd.conf     修改Web路径为 "/var/www/mrtg"

启动apache服务: service httpd start

3、WEB无法打开  关闭防火墙 

service iptables stop    chkconfig  iptables off
4、配置snmp

vi /etc/snmp/snmpd.conf 

去掉下面这行前的"#"注释

view mib2 included .iso.org.dod.internet.mgmt.mib-2 fc
将下面行中的 systemview 修改为mib2

access notConfigGroup " " any noauth exact systemview none none
启动snmp服务: service snmpd start
5、生成流量页面

cfgmaker --global 'WorkDir: /var/www/mrtg' --output /etc/mrtg/mrtg.cfg --global "Options[_]: growright,bits" [email protected] [email protected]
生成首页

indexmaker --output=/var/www/mrtg/index.html /etc/mrtg/mrtg.cfg
6、加入自动更新计划

执行命令:crontab -e    加入下面一行(每5分钟更新一次数据)

*/5 * * * * LANG=C LC_ALL=C /usr/bin/mrtg /etc/mrtg/mrtg.cfg
7、中文显示
在  /etc/mrtg/mrtg.conf配置之间加入   Language: chinese 
打开httpd.conf,将AddDefaultCharset UTF-8   编码改为GBK  

可以用网页软件对生成的html页面进行编辑美化.

你可能感兴趣的:(centos,网络,职场,休闲,流量监控)