码迷,mamicode.com
首页 > 移动开发 > 详细

nagios 监控交换机端口

时间:2015-07-06 20:03:47      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:nagios

1.下载监控插件


wget http://nagios-snmp.cvs.sourceforge.net/nagios-snmp/plugins/check_snmp_int.pl



2. 首先查看交换机目前开启的所有端口

for i in `seq 1 48`;do /usr/local/nagios/libexec/check_snmp_int.pl -H 192.168.0.254  -C public -n "^GigabitEthernet1/0/$i$";done


3. 添加监控

------------------------------------------------------------------------------------------ 

vim hosts.cfg 

define host {

                use     generic-switch

                host_name       3750M-port

                alias           3750M-port

                address         192.168.0.254

}

define host {

                use     generic-switch

                host_name       3750S-port

                alias           3750S-port

                address         192.168.0.253

}

define hostgroup {

    hostgroup_name 3750-port

    alias   3750 port

    members 3750M-port,3750S-port

}


------------------------------------------------------------------------------------------


vim commands.cfg


define command{

  command_name check_snmp_int

  command_line $USER1$/check_snmp_int.pl -H $HOSTADDRESS$ -C $ARG1$ -n $ARG2$

}


------------------------------------------------------------------------------------------


vim switch.cfg


define service{

        use                             generic-service

        hostgroup_name                  3750-port

        service_description             GigabitEthernet1/0/0

        contact_groups                  admins

        check_command                   check_snmp_int!public!‘^GigabitEthernet1/0/[12456789]$‘

}


参考文档:

http://nagios.proy.org/snmp_int.html



nagios 监控交换机端口

标签:nagios

原文地址:http://zhaoyong012.blog.51cto.com/2106550/1671364

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!