亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

nagios監控cisco交換機流量

發布時間:2020-08-06 00:58:07 來源:網絡 閱讀:1341 作者:plpy 欄目:移動開發

一、交換機配置

        snmp-server community public ro

        snmp-server enable traps

        snmp-server host *.*.*.* version 2c public

       snmp-server trap-source vlan 1


二、Nagios服務器配置


下載check_traffic.sh腳本,chech_traffic.sh并不是nagios-plugins自帶插件,需要自行下載。

chmod 777 check_traffic.sh  賦予腳本執行權限



      1. 獲取交換機的index信息

         [root@m ~]#/usr/lib64/nagios/plugins/check_traffic.sh -V 2c -C public -H 10.10.3.252 -L
        List Interface for host 10.10.3.252.
        Interface index 1 orresponding to  Vlan1
        Interface index 5137 orresponding to  StackPort1
        Interface index 5138 orresponding to  StackSub-St1-1
        Interface index 5139 orresponding to  StackSub-St1-2
        Interface index 10101 orresponding to  GigabitEthernet1/0/1
        Interface index 10102 orresponding to  GigabitEthernet1/0/2
        Interface index 10103 orresponding to  GigabitEthernet1/0/3
        Interface index 10104 orresponding to  GigabitEthernet1/0/4
        Interface index 10105 orresponding to  GigabitEthernet1/0/5
        Interface index 10106 orresponding to  GigabitEthernet1/0/6
        Interface index 10107 orresponding to  GigabitEthernet1/0/7
        Interface index 10108 orresponding to  GigabitEthernet1/0/8
        Interface index 10109 orresponding to  GigabitEthernet1/0/9
        Interface index 10110 orresponding to  GigabitEthernet1/0/10
        Interface index 10111 orresponding to  GigabitEthernet1/0/11
        Interface index 10112 orresponding to  GigabitEthernet1/0/12
        Interface index 10113 orresponding to  GigabitEthernet1/0/13
        Interface index 10114 orresponding to  GigabitEthernet1/0/14
        Interface index 10115 orresponding to  GigabitEthernet1/0/15
        Interface index 10116 orresponding to  GigabitEthernet1/0/16
        Interface index 10117 orresponding to  GigabitEthernet1/0/17
        Interface index 10118 orresponding to  GigabitEthernet1/0/18
        Interface index 10119 orresponding to  GigabitEthernet1/0/19
        Interface index 10120 orresponding to  GigabitEthernet1/0/20
        Interface index 10121 orresponding to  GigabitEthernet1/0/21
        Interface index 10122 orresponding to  GigabitEthernet1/0/22
        Interface index 10123 orresponding to  GigabitEthernet1/0/23
        Interface index 10124 orresponding to  GigabitEthernet1/0/24
        Interface index 10125 orresponding to  GigabitEthernet1/0/25
        Interface index 10126 orresponding to  GigabitEthernet1/0/26
        Interface index 10127 orresponding to  GigabitEthernet1/0/27
        Interface index 10128 orresponding to  GigabitEthernet1/0/28
        Interface index 12001 orresponding to  Null0
        Interface index 12002 orresponding to  FastEthernet0

        命令注解如下:#/usr/lib64/nagios/plugins/check_traffic.sh [ -v ] [ -6 ] [ -i Suffix ] [ -F s|S ] [-p N] [ -r ] -V 1|2c|3 -C snmp-community -H host [ -L ] -I interface -w in,out-warning-value  -c in,out-critical-value -K/M -B/b


        2.獲取交換機G1/0/28的端口流量

        [root@m ~]# /usr/lib64/nagios/plugins/check_traffic.sh -V 2c -C public -H 10.10.3.252 -I 10128 -w 200,300 -c 400,500 -K -B
        OK - It's the first time for this plugins run. We'll get the data from the next time.


        [root@m ~]# /usr/lib64/nagios/plugins/check_traffic.sh -V 2c -C public -H 10.10.3.252 -I 10128 -w 200,300 -c 400,500 -K -B
        OK - The Traffic In is 82.00KB, Out is 0.0KB, Total is 82.00KB. The Check Interval is 290s |In=82.00KB;200;400;0;0 Out=0.0KB;300;500;0;0 Total=82.00KB;500;900;0;0 Interval=290s;1200;1800;0;0


        3.配置nagios配置文件

        [root@m ~]#vim /etc/nagios/nagios.cfg

         cfg_file=/etc/nagios/objects/switch.cfg                #去掉該行前面的#號字符


        4.配置commands.cfg

        [root@m ~]# vim /etc/nagios/objects/commands.cfg

        define command{

              command_name   check_switch_traffic

              command_line   $USER1$/check_traffic.sh -V 2c -C public -H  $HOSTADDRESS$ -I $ARG1$ -w $ARG2$,$ARG3$ -c $ARG4$,$ARG5$ -M -b
              }


        5.配置switch.cfg

        

        define host{
                use             generic-switch          ; Inherit default values from a template
                host_name       H17_2960SW1_3.251               ; The name we're giving to this switch
                alias           Linksys SRW224P Switch  ; A longer name associated with the switch
                address         10.10.3.251             ; IP address of the switch
                hostgroups      switches                ; Host groups this switch is associated with
                }

        define host{
                use             generic-switch          ; Inherit default values from a template
                host_name       H18_2960SW1_3.247               ; The name we're giving to this switch
                alias           Linksys SRW224P Switch  ; A longer name associated with the switch
                address         10.10.3.247             ; IP address of the switch
                hostgroups      switches                ; Host groups this switch is associated with
                }

        define service{
                use                     generic-service,srv-pnp ; Inherit values from a template
                host_name               H17_2960SW1_3.251
                service_description     check_traffice_g1/0/28
                check_command           check_switch_traffic!10128!200!400!500!800
                }


        define service{
                use                     generic-service,srv-pnp ; Inherit values from a template
                host_name               H18_2960SW1_3.247
                service_description     check_traffice_g1/0/28
                check_command           check_switch_traffic!10128!200!400!500!800
                }


        6.配置權限(有待驗證)

        [root@m ~]# chmod 777 /var/tmp/check_traffic_10.10.3.249_10128.hist_dat_root__64


        7.重啟nagios服務

         [root@m ~]# /etc/init.d/nagios restart






















向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

萨嘎县| 镇宁| 珠海市| 景洪市| 双牌县| 临江市| 清涧县| 阳泉市| 米林县| 会理县| 容城县| 桑植县| 马公市| 五大连池市| 乐昌市| 五华县| 米脂县| 鹤岗市| 青神县| 类乌齐县| 天水市| 临海市| 九江县| 利川市| 开阳县| 巫溪县| 惠安县| 北安市| 柘荣县| 岫岩| 廉江市| 乐平市| 南皮县| 凤翔县| 常熟市| 高雄县| 隆回县| 古交市| 三明市| 美姑县| 海原县|