监控路由器、思科交换机
因为在交换机、路由器无法安装监控客户端,所以要用到snmp插件
查看
# vi /usr/local/nagios/libexec/下有没有check_snmp插件,没有则需要安装。
一、安装snmp服务
#yum install -y net-snmp net-snmp-devel net-snmp-perl net-snmp-utils mrtg
安装snmp后要重新编译安装nagios插件nagios-plugins-2.0才会在
/usr/local/nagios/libexec/下生成 check_snmp插件 [root@cache-2 ~]# tar -xvf nagios-plugins-2.0.tar.gz [root@cache-2 ~]# cd nagios-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 && make install
思科交换机:
系统测试:
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> set enabled yes
对象标识符(OID)
[admin @ MikroTik] / interface> print oid标志:D - 动态,X - 禁用,R - 运行,S - 奴隶 0 R name = .1.3.6.1.2.1.2.2.1.2.1 mtu = .1.3.6.1.2.1.2.2.1.4.1 mac-address = .1.3.6.1.2.1.2.2.1.6.1 admin-status = .1.3.6.1.2.1.2.2.1.7.1 操作状态= .1.3.6.1.2.1.2.2.1.8.1 bytes-in = .1.3.6.1.2.1.2.2.1.10.1 packet-in = .1.3.6.1.2.1.2.2.1.11.1 discards-in = .1.3.6.1.2.1.2.2.1.13.1 errors-in = .1.3.6.1.2.1.2.2.1.14.1 bytes-out = .1.3.6.1.2.1.2.2.1.16.1 packets-out = .1.3.6.1.2.1.2.2.1.17.1 discard-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
配置文件:
define service{ use generic-service ; Inherit values from a template host_name routeros-xxxxx service_description cpu check_command check_snmp!-C public -o .1.3.6.1.2.1.25.3.3.1.2.1 -w 30 -c 50 }
转载参考:
https://wiki.mikrotik.com/wiki/Manual:SNMP
http://www.net130.com/CMS/Pub/Tech/tech_zh/2011_07_13_89499.htm
转载于:https://blog.51cto.com/hellvenus/2064334