欧美一区二区三区老妇人-欧美做爰猛烈大尺度电-99久久夜色精品国产亚洲a-亚洲福利视频一区二区

nagios監(jiān)控cisco交換機(jī)

nagios 監(jiān)控  cisco 交換機(jī)

目前創(chuàng)新互聯(lián)建站已為上千的企業(yè)提供了網(wǎng)站建設(shè)、域名、雅安服務(wù)器托管、網(wǎng)站改版維護(hù)、企業(yè)網(wǎng)站設(shè)計(jì)、高安網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

一、環(huán)境:
        1.已搭建好nagios4.0.8
        2.Centos6.5 x86_64    

二、需要有4個(gè)監(jiān)控cisco的腳本
check_snmp_cisco_ifstatus   
check_snmp_cisco_loadavg
check_snmp_cisco_memutil
check_snmp_env
下載鏈接:http://down.51cto.com/data/2118262


三、配置
vim /usr/local/nagios/etc/objects/templates.cfg

define host{
        name                    etnet-switch    
        use                     generic-host    
        check_period            24x7            
        check_interval          1               
        retry_interval          1/2             
        max_check_attempts      2               
        check_command           check-host-alive        
        notification_period     24x7            
        notification_interval   30              
        notification_options    d,r             
        contact_groups          admins          
        register                0               
        }


vim /usr/local/nagios/etc/objects/commands.cfg

##check cisco
#define  check_snmp_env
define command{
command_name check_snmp_env
command_line $USER1$/check_snmp_env -H $HOSTADDRESS$ -C $ARG1$ $ARG2$
}
#define  check_snmp  cisco mem
define command{
command_name check_snmp_cisco_mem
command_line $USER1$/check_snmp_cisco_memutil -H $HOSTADDRESS$ -C $ARG1$ -w $ARG2$ -c $ARG3$
}
#define  check_snmp cisco cpu
define command{
command_name check_snmp_cisco_cpu
command_line $USER1$/check_snmp_cisco_loadavg -H $HOSTADDRESS$ -C $ARG1$ -w $ARG2$ -c $ARG3$
}
#define  check_snmp cisco  if
define command{
command_name check_snmp_cisco_if
command_line $USER1$/check_snmp_cisco_ifstatus -H $HOSTADDRESS$ -C $ARG1$ -i $ARG2$ -w $ARG3$ -c $ARG4$
}

vim /usr/local/nagios/etc/objects/151.3.cfg

define host{
        use             etnet-switch
        host_name       Office-192.168.151.3
        alias           Switch 151.3
        address         192.168.151.3
        }
define service{
        use                     generic-service
        host_name               Office-192.168.151.3
        service_description     PING
        check_command           check_ping!200.0,20%!600.0,60%
        normal_check_interval   5
        retry_check_interval    1
        }
define service{
        use                     generic-service
        host_name               Office-192.168.151.3
        service_description     Uptime
        check_command           check_snmp!-C public -o sysUpTime.0
        }
define service{
        use                     generic-service
        host_name               Office-192.168.151.3
        service_description     Port 1 Link Status
        check_command           check_snmp!-C public -o ifOperStatus.1 -r 1 -m RFC1213-MIB
        }
define service {
  use                         generic-service
  host_name                   Office-192.168.151.3
  service_description         Memutil
  check_command               check_snmp_cisco_mem!public!90!95
 }
define service {
  use                         generic-service
  host_name                   Office-192.168.151.3
  service_description         LoadAVG
  check_command               check_snmp_cisco_cpu!public!90!95
  }
define service {
  use                         generic-service
  host_name                   Office-192.168.151.3
  service_description         Environment
  check_command               check_snmp_env!public
  }

添加監(jiān)控交換機(jī)
vim /usr/local/nagios/etc/nagios.cfg

cfg_file=/usr/local/nagios/etc/objects/151.3.cfg



重啟nagios
/etc/init.d/nagios restart

四、可能會(huì)報(bào)錯(cuò)

No output on stdout) stderr: Can't locate Net/SNMP.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 
/usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at 
/usr/local/nagios/libexec/check_snmp_env line 21.

 
問題1:
perl -MCPAN -e shell
Can't locate CPAN.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl

/usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .).

解決:

yum install -y perl-CPAN*



問題2:
No output on stdout) stderr: Can't locate Net/SNMP.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5

/usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at

/usr/local/nagios/libexec/check_snmp_env line 21.

解決:

 perl -MCPAN -e shell
cpan[1]> install Net::SNMP
cpan[2]> quit

網(wǎng)上的解決方案
How do I install Net::SNMP               perl module ?            There are 2 ways of doing this
            1) By CPAN (best)
            on command line, as root :
              
              [your_host]# perl -MCPAN -e shell
              cpan shell -- CPAN exploration and modules installation (v1.76)
              ReadLine support enabled
              cpan> install Net::SNMP
            
            If it's the first time you run CPAN, it will               probably ask you some (simple) questions.
            CPAN will also ask you to satisfy some dependencies               (Crypt::DES, Digest::MD5, etc..).
            2) "By hand"
            
            Get the folowings modules (tar.gz format) on               www.cpan.org
            - Crypt::DES
              - Digest::MD5
              - Digest::SHA1
              - Digest::HMAC
              - Net::SNMP
              
              for each one (you must install Net::SNMP at the end) :
              tar zxf <module>.tar.gz
              cd <module>
              perl Makefile.pl
              make test
              make install

本文題目:nagios監(jiān)控cisco交換機(jī)
文章出自:http://www.chinadenli.net/article18/iejjdp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供電子商務(wù)企業(yè)建站建站公司網(wǎng)站設(shè)計(jì)云服務(wù)器ChatGPT

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都做網(wǎng)站