温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Monitor the switch

发布时间:2020-07-16 01:02:00 来源:网络 阅读:342 作者:卍伪装卍 栏目:移动开发

-------------------------------Switch-------------------------------


Switch>en
Switch#conf t
Switch(config)#snmp-server community first-switch ro

Switch(config)#snmp-server enable traps



-------------------------------Monitoring Server-------------------------------


Install snmp:
#rpm -ivh lm_sensors-2.10.7-9.el5.x86_64.rpm
#rpm -ihv net-snmp-5.3.2.2-17.el5.x86_64.rpm

#rpm -ivh net-snmp-utils-5.3.2.2-17.el5.x86_64.rpm


Re-compile and install nagios-plugins:
#tar -xzf nagios-plugins-1.4.16.tar.gz
#cd nagios-plugins-1.4.16
#./configure --sysconfdir=/etc/nagios \
--with-nagios-user=nagios \
--with-nagios-group=nagios \
--prefix=/usr/local/nagios
#make

#make install


Definition monitor file:
#vi /etc/nagios/objects/switch.cfg
#Add by Kingcraft

define host{

        use             generic-switch,host-pnp         ; Inherit default values from a template

        host_name       linksys-srw224p                 ; The name we're giving to this switch

        alias           Linksys SRW224P Switch         ; A longer name associated with the switch

        address         192.168.60.16                  ; IP address of the switch

        }




define service{

        use                     generic-service,srv-pnp   ; Inherit values from a template

        host_name               linksys-srw224p            ; The name of the host the service is associated with

        service_description     PING                      ; The service description

        check_command           check_ping!200.0,20%!600.0,60%      ; The command used to monitor the service

        normal_check_interval   5                         ; Check the service every 5 minutes under normal conditions

        retry_check_interval    1                         ; Re-check the service every minute until its final/hard state is determined

        }




define service{

        use                     generic-service,srv-pnp   ; Inherit values from a template

        host_name               linksys-srw224p

        service_description     Uptime

        check_command           check_snmp!-C first-switch -o sysUpTime.0

        }




define service{

        use                     generic-service,srv-pnp  ; Inherit values from a template

        host_name               linksys-srw224p

        service_description     Port 1 Link Status

        check_command           check_snmp!-C first-switch -o ifOperStatus.10001 -r 1

        }




define service{

        use                     generic-service,srv-pnp

        host_name               linksys-srw224p

        service_description     Port 24 Link Status

        check_command           check_snmp!-C first-switch -o ifOperStatus.10024 -r 1

        }




define service{

        use                     generic-service,srv-pnp

        host_name               linksys-srw224p

        service_description     ciscoMemoryPoolFree

        check_command           check_snmp!-C first-switch -o .1.3.6.1.4.1.9.9.48.1.1.1.6.16     ; The size of the free memory

        }




define service{

        use                     generic-service,srv-pnp

        host_name               linksys-srw224p

        service_description     ciscoCPUTotal1min

        check_command           check_snmp!-C first-switch -o .1.3.6.1.4.1.9.9.109.1.1.1.1.4.1   ; The overall CPU busy percentage in the last 1 minute period

        }




define service{

        use                     generic-service,srv-pnp

        host_name               linksys-srw224p

        service_description     flow

        check_command           check_snmp!-C first-switch -o ifInOctets.10024 -w 5000000000-6000000000 -c 6000000000-8000000000    ; The total number of octets received on the interface,including framing characters

        }


Empowering for monitoring files:

#chown nagios:nagios /etc/nagios/objects/switch.cfg


Modify the nagios configuration file:
#vi /etc/nagios/nagios.cfg
#Add by Kingcraft

cfg_file=/etc/nagios/objects/switch.cfg


Syntax checking:

#/usr/local/nagios/bin/nagios -v /etc/nagios/nagios.cfg


restart httpd&nagios:
#service httpd restart

#service nagios restart




向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI