监控路由器、思科交换机
因为在交换机、路由器无法安装监控客户端,所以要用到snmp插件
查看
#vi/usr/local/nagios/libexec/下有没有check_snmp插件,没有则需要安装。
一、安装snmp服务
#yuminstall-ynet-snmpnet-snmp-develnet-snmp-perlnet-snmp-utilsmrtg
安装snmp后要重新编译安装nagios插件nagios-plugins-2.0才会在
/usr/local/nagios/libexec/下生成check_snmp插件 [root@cache-2~]#tar-xvfnagios-plugins-2.0.tar.gz [root@cache-2~]#cdnagios-plugins-2.0 [root@cache-2~]#./configure--with-nagios-user=nagios--with-nagios-group=nagios--prefix=/usr/local/nagios--with-MysqL [root@cache-2~]#make&&makeinstall
思科交换机:
系统测试:
check_snmp命令提供了详细的使用说明,只需要在Linux命令行输入 check_snmp –help即可查看帮助信息,这其中包括每一项参数的使用等。
这里以检测Cisco交换机的系统为例,示范如何使用check_snmp。交换机为Cisco 4500系列,系统描述的OID为.1.3.6.1.2.1.1.1.0
[root@wardking libexec]# ./check_snmp -H 10.241.10.1 -o .1.3.6.1.2.1.1.1.0 -C public
SNMP OK – “Cisco IOS Software,Catalyst 4500 L3 Switch Software (cat4500-ENTSERV | K9-M),Version 12.2(53)SG2,RELEASE SOFTWARE (fc1)
建议用于Nagios监控的OID:
系统内存使用(5分钟内)1.3.6.1.4.1.9.9.48.1.1.1.5.1
系统可用内存(5分钟内)1.3.6.1.4.1.9.9.48.1.1.1.6.1
cpu使用率(5分钟内)1.3.6.1.4.1.9.2.1.58.0
硬件状态1.3.6.1.4.1.9.9.13
rosteros:
在RouterOS中启用SNMP:
[admin@MikroTik]/snmp>print 启用:不 联系: 位置: 发动机ID: 陷阱社区:(不明) 陷阱版本:1[admin@MikroTik]/snmp>setenabledyes
对象标识符(OID)
[admin@MikroTik]/interface>printoid标志:D-动态,X-禁用,R-运行,S-奴隶 0Rname=.1.3.6.1.2.1.2.2.1.2.1mtu=.1.3.6.1.2.1.2.2.1.4.1 mac-address=.1.3.6.1.2.1.2.2.1.6.1admin-status=.1.3.6.1.2.1.2.2.1.7.1 操作状态=.1.3.6.1.2.1.2.2.1.8.1bytes-in=.1.3.6.1.2.1.2.2.1.10.1 packet-in=.1.3.6.1.2.1.2.2.1.11.1discards-in=.1.3.6.1.2.1.2.2.1.13.1 errors-in=.1.3.6.1.2.1.2.2.1.14.1bytes-out=.1.3.6.1.2.1.2.2.1.16.1 packets-out=.1.3.6.1.2.1.2.2.1.17.1discard-out=.1.3.6.1.2.1.2.2.1.19.1 错误超时=.1.3.6.1.2.1.2.2.1.20.1
上面是oid是接口流量这些的
下面是cpu和men的oid
配置文件:
defineservice{ usegeneric-service;Inheritvaluesfromatemplate host_namerouteros-xxxxx service_descriptioncpu check_commandcheck_snmp!-cpublic-o.1.3.6.1.2.1.25.3.3.1.2.1-w30-c50 }
转载参考:
https://wiki.mikrotik.com/wiki/Manual:SNMP
http://www.net130.com/CMS/Pub/Tech/tech_zh/2011_07_13_89499.htm
原文链接:/centos/374808.html