实验环境:
vmware workstation 11
centos6.5的系统下
服务器: ip 192.168.239.140 防火墙关闭 setenforce 0
SecureCRT (ssh远程连接软件)
软件介绍:
Multi Router Traffic Grapher------MRTG是一个监控网络链路流量负载的工具软件,通过snmp协议得到设备的流量信息,并将流量负载以包含PNG格式的图形的HTML 文档方式显示给用户,以非常直观的形式显示流量负载。
实验过程:
一、相关软件的安装。
[[email protected] ~]# yum install -y net-snmp mrtg httpd
二、配置snmp。
三、启动snmp服务
[[email protected] ~]# service snmpd start
四、生成mrtg配置文件/etc/mrtg/mrtg.cfg
[[email protected] ~]# cfgmaker --global "WorkDir:/var/www/mrtg" --output /etc/mrtg/mrtg.cfg [email protected]
五、初始化运行mrtg
六、生成索引文件
[[email protected] ~]# indexmaker /etc/mrtg/mrtg.cfg --output /var/www/mrtg/index.html
七、因为我们是通过web来查看mrtg信息的,所以要编辑/etctpd/conf.d/mrtg.conf,允许主机通过网络监控网络流量信息
八、重启httpd服务
[[email protected] ~]# service httpd restart
Stopping httpd: [FAILED]
Starting httpd: httpd: Could not reliably determine the server‘s fully qualified domain name, using localhost.localdomain for ServerName
[ OK ]
九、测试
谢谢大家。