zabbix2.4.6监控交换机各端口流量并加端口描述(huaV2)

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

zabbix2.4.6监控思科交换机各端口流量并作注释

目录

一、交换机开启snmp (1)

1.配置snmp (1)

2.配置各端口描述 (2)

1)为什么要做描述说明 (2)

2)配置交换机各端口描述 (3)

二、使用zabbix模板自动发现各接口 (4)

1.复制zabbix自动模板 (4)

2.修改模板 (5)

本例子用的是思科(C2960-LANBASE-M), Version 12.2(46)SE,24口交换机,因为是交换机所以zabbix只能用snmp协议,snmp协议这里不做详解,百度一下一大堆!

一、交换机开启snmp

1.配置snmp

telnet登陆交换机,配置snmp,配置命令如下:

Switch#conf t

Switch(config)#snmp-server community hua ro

Switch(config)#end

Switch#write //此命令为保存配置

注:hua为community团队名,等下zabbix监控要用到,ro为只读的意思,如果要读死操作可以添加如下命令:为安全起见,读写分开,需要用到的时候再添加

snmp-server community huaadmin rw

2.配置各端口描述

1)为什么要做描述说明

zabbix默认Template SNMP Interfaces用的是基于端口名发现的(即用ifDescrw),然后自动添加,但效果不好,如下图所示:

上图只知道交换机的接口,这样出问题都不知道是哪台服务器的,很不人性化!

如果我们连所连接的服务器的名字或IP地址显示出来,会不会好些呢!

我们要达到如下效果:

上图中是基于ifAlias自动添加的效果,这个效果是基于交换机端口描述做的

这样就知道这个交换机接口是哪那个IP地址,是不是很人性化,哈哈~~

2)配置交换机各端口描述

zabbix基于ifAlias发现,需要每一个交换机接口都做描述,否则的话它只会自动添加有端口描述的接口(注:各接口描述要有唯一性,不要有相同!)

配置命令如下:

conf t

interface f0/1

description f0/1 (xxx)

exit

interface f0/2

description f0/2 (xxx)

exit

interface f0/3

description f0/3 (xxx)

exit

interface f0/4

description f0/4 (xxx)

exit

interface f0/5

description f0/5 (xxx)

exit

interface f0/6

description f0/6 (xxx))

exit

interface f0/7

description f0/7 (xxx)

exit

interface f0/8

description f0/8 (xxx)

exit

interface f0/9

description f0/9 (xxx)

exit

interface f0/10

description f0/10 (xxx)

exit

interface f0/11

description f0/11 (xxx)

exit

interface f0/12

description f0/12 (xxx)

exit

interface f0/13

description f0/13 (xxx)

exit

interface f0/14

description f0/14 (xxx)

exit

interface f0/15

description f0/15 (xxx)

exit

interface f0/16

description f0/16 (xxx)

exit

interface f0/17

description f0/17 (xxx)

exit

interface f0/18

description f0/18 (xxx)

exit

interface f0/19

description f0/19 (xxx)

exit

interface f0/20

description f0/20 (xxx)

exit

interface f0/21

description f0/21 (xxx)

exit

interface f0/22

description f0/22 (xxx)

exit

interface f0/23

description f0/23 (xxx)

exit

interface f0/24

description f0/24 (xxx)

exit

interface g0/1

description g0/1 (xxx)

exit

interface g0/2

description g0/2 (xxx)

exit

interface Vl1

description Vl1 (xxx)

exit

end

show int des

注:其中(xxx)为你要添加的内容,如服务器的外网和内网IP,注不要用中文,以免产生乱码!

二、使用zabbix模板自动发现各接口

使用snmp监控提前是要安装net-snmp net-snmp-utils

如果你配置了zabbix yum源,可以直接yum install net-snmp net-snmp-utils –y

相关文档
最新文档