標籤:網卡 檢測 流量 command
一:主要步驟
1,安裝snmpd服務包,並且設定好團體名稱,添加系統啟動
2,部署check_traffic.sh到nagios的外掛程式目錄到libexec並且授權哦。
3,網卡檢測參數。
4,nagios設定command.cfg的command,添加service.cfg
二:具體幹活細節
1,安裝snmpd,修改內容,設定開機啟動
安裝snmpd
yum install net-snmp*
修改snmpd.conf
vim /etc/snmp/snmpd.conf
內容如下:(注意修改加粗部分內容)
650) this.width=650;" src="http://s5.51cto.com/wyfs02/M02/89/C6/wKiom1gcEyHzQ1YDAAAV7tyYAV8921.png" style="float:none;" title="1111111111111111111111111111.png" alt="wKiom1gcEyHzQ1YDAAAV7tyYAV8921.png" />
650) this.width=650;" src="http://s5.51cto.com/wyfs02/M02/89/C3/wKioL1gcEyGg7JlVAAAgOD1PrNs356.png" style="float:none;" title="2222222222222222222222222.png" alt="wKioL1gcEyGg7JlVAAAgOD1PrNs356.png" />
把下面那行注釋去掉
650) this.width=650;" src="/e/u261/themes/default/images/spacer.gif" style="background:url("/e/u261/lang/zh-cn/images/localimage.png") no-repeat center;border:1px solid #ddd;" alt="spacer.gif" />650) this.width=650;" src="http://s3.51cto.com/wyfs02/M00/89/C6/wKiom1gcEy7BIY0hAAAMig2nbic404.png" title="33333333333333333333333.png" alt="wKiom1gcEy7BIY0hAAAMig2nbic404.png" />
設定系統啟動
chkconfig --add snmpdchkconfig snmpd on
2,部署check_traffic.sh
上傳到nagios的安裝目錄/usr/lib64/nagios/plugins,並且授權755
chmod 755 check_traffic.sh
3、網卡參數檢測
./check_traffic.sh -V 2c -C 團體名稱 -H 10.60.30.52 -L
[[email protected] plugins]# ./check_traffic.sh -V 2c -C nagios -H 172.16.22.225 -LList Interface for host 172.16.22.225.Interface index 1 orresponding to loInterface index 2 orresponding to eth0
可以測試是否能夠正常採集到資料(如果取不到,檢查snmpd的團體名稱、被監控者的IP,還有selinux是否關閉)
./check_traffic.sh -V 2c -C 團體名稱 -H 10.60.30.52 -I 2 -w 1200,1500 -c 1700,1800 -K -B
[[email protected] plugins]# ./check_traffic.sh -V 2c -C nagios -H 172.16.22.225 -I 2 -w 1200,1500 -c 1700,1800 -K -BOK - The Traffic In is 0.12KB, Out is 0.12KB, Total is 0.24KB. The Check Interval is 30s |In=0.12KB;1200;1700;0;0 Out=0.12KB;1500;1800;0;0 Total=0.24KB;2700;3500;0;0 Interval=30s;1200;1800;0;0
解釋:
-V snmp協議版本
-C 共同體名
-I 參數對應上面-L輸出的網卡index值。標示監視相應的網卡。
-w 警告值
-c警示值
4,nagios的配置
增加nagios的command.cfg
vim /etc/nagios/objects/commands.cfg添加下面內容define command{ command_name check_traffic command_line $USER1$/check_traffic.sh -V 2c -C nagios -H $HOSTADDRESS$ -I $ARG1$ -w $ARG2$ -c $ARG3$ -K -B}
增加nrpe.cfg
vim /etc/nagios/nrpe.cfg添加下面內容command[check_traffic]=/usr/lib64/nagios/plugins/check_traffic.sh -V 2c -C nagios -H 172.16.22.225 -I 2 -w 1200,1500 -c 1700,1800 -K -B
解釋:-I 第幾個網卡 -K –B設定的警示參數數值是KB,不是MB
增加service.cfg
vim /etc/nagios/conf.d/172.16.22.225.cfg添加下面內容define service{ use generic-service ; Name of service template to use host_name 172.16.22.225 service_description check_traffic check_command check_traffic!2!4000,5000!6000,7000;該處設定的是kB,不是MB}
nagios使用check_traffic.sh監控網卡流量