Compare commits
No commits in common. "master" and "github_ci" have entirely different histories.
694 changed files with 6777 additions and 32682 deletions
12
.github/dependabot.yml
vendored
12
.github/dependabot.yml
vendored
|
|
@ -1,12 +0,0 @@
|
|||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: github-actions
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: daily
|
||||
time: "04:00"
|
||||
reviewers:
|
||||
- "waja"
|
||||
pull-request-branch-name:
|
||||
separator: "-"
|
||||
open-pull-requests-limit: 10
|
||||
20
.github/issue-branch.yml
vendored
20
.github/issue-branch.yml
vendored
|
|
@ -1,20 +0,0 @@
|
|||
mode: auto
|
||||
branchName: '${issue.number}-${issue.title[0,40]}'
|
||||
gitSafeReplacementChar: '-'
|
||||
branches:
|
||||
- label: question
|
||||
skip: true
|
||||
- label: feature
|
||||
prefix: feature/
|
||||
- label: bug
|
||||
prefix: bugfix/
|
||||
- label: security
|
||||
prefix: security/
|
||||
- label: automation
|
||||
prefix: automation/
|
||||
openDraftPR: true
|
||||
copyIssueDescriptionToPR: false
|
||||
copyIssueLabelsToPR: true
|
||||
copyIssueAssigneeToPR: true
|
||||
copyIssueProjectsToPR: false
|
||||
copyIssueMilestoneToPR: true
|
||||
25
.github/workflows/automate-issue-branch.yml
vendored
25
.github/workflows/automate-issue-branch.yml
vendored
|
|
@ -1,25 +0,0 @@
|
|||
name: Tools - Automate Issue Branch
|
||||
on:
|
||||
issues:
|
||||
types: [ assigned ]
|
||||
issue_comment:
|
||||
types: [ created ]
|
||||
|
||||
jobs:
|
||||
create_issue_branch_job:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
actions: read
|
||||
checks: write
|
||||
contents: write
|
||||
deployments: none
|
||||
issues: write
|
||||
packages: none
|
||||
pull-requests: write
|
||||
repository-projects: none
|
||||
security-events: none
|
||||
steps:
|
||||
- name: Create Issue Branch
|
||||
uses: robvanderleek/create-issue-branch@main
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
16
.github/workflows/packaging_test.yml
vendored
16
.github/workflows/packaging_test.yml
vendored
|
|
@ -17,20 +17,22 @@ jobs:
|
|||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v2
|
||||
env:
|
||||
DEBIAN_FRONTEND: "noninteractive"
|
||||
- name: Remove github artefacts
|
||||
run: |
|
||||
rm -rf .github*
|
||||
rm -rf .github/
|
||||
- name: Adjust distibution in changelog file
|
||||
run: |
|
||||
sed -i '0,/restricted/s//stable/' debian/changelog
|
||||
- name: Build Debian package
|
||||
uses: dawidd6/action-debian-package@v1.6.0
|
||||
uses: dawidd6/action-debian-package@v1
|
||||
# uses: pi-top/action-debian-package@v4
|
||||
with:
|
||||
# source_directory: "${SOURCE_DIR}"
|
||||
# artifacts_directory: "${ARTIFACTS_DIR}"
|
||||
artifacts_directory: debian/build/release/
|
||||
os_distribution: testing
|
||||
- name: Debug
|
||||
run: |
|
||||
ls -la
|
||||
# target_architectures: "amd64,i386"
|
||||
# distribution: 'stable'
|
||||
# os: 'debian'
|
||||
|
|
|
|||
59
.github/workflows/release.yml
vendored
59
.github/workflows/release.yml
vendored
|
|
@ -1,71 +1,38 @@
|
|||
on:
|
||||
push:
|
||||
# Sequence of patterns matched against refs/tags
|
||||
tags:
|
||||
- 'debian/*' # Push events to matching debian/*, i.e. debian/1.0-2, debian/20.15.10, debian/23.20020326
|
||||
name: Build Packages
|
||||
|
||||
name: Release Process
|
||||
on:
|
||||
release:
|
||||
types: [published, created, edited]
|
||||
# Run tests for any PRs
|
||||
# pull_request:
|
||||
|
||||
env:
|
||||
SOURCE_DIR: ./
|
||||
ARTIFACTS_DIR: debian/build/release/
|
||||
|
||||
jobs:
|
||||
create-release:
|
||||
name: Create Release
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
release-id: ${{ steps.create_release.outputs.id }}
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
- name: Install needed packages
|
||||
run: |
|
||||
if [ $(dpkg -l | grep -c dpkg-dev) -ne 1 ]; then sudo apt-get update && sudo apt-get install -y dpkg-dev; fi
|
||||
- name: Gather changelog
|
||||
run: |
|
||||
ls -la
|
||||
dpkg-parsechangelog | tail -n +9 > debian.changelog
|
||||
- name: Create Release
|
||||
id: create_release
|
||||
uses: actions/create-release@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
|
||||
with:
|
||||
tag_name: ${{ github.ref }}
|
||||
release_name: Release ${{ github.ref }}
|
||||
body_path: debian.changelog
|
||||
draft: false
|
||||
prerelease: false
|
||||
|
||||
build:
|
||||
name: Build and upload packages
|
||||
needs: create-release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v2
|
||||
env:
|
||||
DEBIAN_FRONTEND: "noninteractive"
|
||||
- name: Remove github artefacts
|
||||
run: |
|
||||
rm -rf .github*
|
||||
rm -rf .github/
|
||||
- name: Adjust distibution in changelog file
|
||||
run: |
|
||||
sed -i '0,/restricted/s//stable/' debian/changelog
|
||||
- name: Build Debian package
|
||||
uses: dawidd6/action-debian-package@v1.6.0
|
||||
uses: pi-top/action-debian-package@v4
|
||||
with:
|
||||
artifacts_directory: debian/build/release/
|
||||
os_distribution: testing
|
||||
# - name: Build Debian package
|
||||
# uses: pi-top/action-debian-package@v0.2.0
|
||||
# with:
|
||||
# artifacts_directory: debian/build/release/
|
||||
# target_architectures: "amd64,i386"
|
||||
target_architectures: "amd64,i386"
|
||||
- name: Upload the artifacts
|
||||
uses: skx/github-action-publish-binaries@release-2.0
|
||||
uses: skx/github-action-publish-binaries@master
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
releaseId: ${{ needs.create-release.outputs.release-id }}
|
||||
# releaseId: 'debian/18.20201012+4'
|
||||
# releaseId: ${{ needs.create_release.outputs.id }}
|
||||
args: debian/build/release/*
|
||||
|
|
|
|||
|
|
@ -1,149 +0,0 @@
|
|||
#!/bin/bash
|
||||
# Nagios plugin to monitor Nic Bonding state
|
||||
#
|
||||
# Based on check_bond.sh written by L.Gill 10/08/06 - V.1.0 as found on
|
||||
# http://exchange.nagios.org/directory/Plugins/Operating-Systems/Linux/check-network-bonding/details
|
||||
|
||||
# currently I maintain my own version at https://github.com/aswen/nagios-plugins/blob/master/check_bond
|
||||
# Copyright (c) 2010 L.Gill
|
||||
# Copyright (c) 2011 Alexander Swen <a@swen.nu>
|
||||
#
|
||||
# Permission to use, copy, modify, and distribute this software for any
|
||||
# purpose with or without fee is hereby granted, provided that the above
|
||||
# copyright notice and this permission notice appear in all copies.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
#
|
||||
#
|
||||
# Example configuration
|
||||
#
|
||||
# Typical this check is placed on a client and runs via nrpe
|
||||
# So add this to nrpe.cfg:
|
||||
# command[check_bond]=/usr/lib/nagios/plugins/check_bond
|
||||
# This should warn when one of the slaves is down and go critical when the whole bond is not available.
|
||||
# This plugin defaults to bond0. If you have multiple bonds you can tell the script so by adding -i <if>.
|
||||
# It will also warn if the Currently Active Slave is not the expected primary interface,
|
||||
# the default primary interface is eth0, You can override this with -p <if>
|
||||
# -p can be a comma separated list like "-p eno49,eno50"
|
||||
|
||||
# if you have dont_blame_nrpe=1 set you can choose to
|
||||
# command[check_bond]=/usr/lib/nagios/plugins/check_bond -i $ARG1$ -p $ARG2$
|
||||
#
|
||||
# define service {
|
||||
# use generic-service
|
||||
# service_description Bond state
|
||||
# check_command check_nrpe!check_bond
|
||||
# or
|
||||
# check_command check_nrpe!check_bond!bond1
|
||||
# or
|
||||
# check_command check_nrpe!check_bond!bond1!eth1
|
||||
#}
|
||||
#
|
||||
|
||||
# ------------------------------------------
|
||||
# ######## Script Modifications ##########
|
||||
# ------------------------------------------
|
||||
# Who When What
|
||||
# --- ---- ----
|
||||
# A.Swen 2011-09-07 Add support for other bond module than bond0 (defaults to bond0 however)
|
||||
# A.Swen 2013-10-11 Remove some obsolete stuff and make the script shorter
|
||||
# B.Potts 2017-01-16 Check and display expected primary interface on bond
|
||||
# J.Guldmyr 2018-09-25 Check for a list of primary interfaces instead of a single one
|
||||
#
|
||||
#
|
||||
# SETTINGS
|
||||
# Default if is bond0
|
||||
if=bond0
|
||||
# Default pri is eth0
|
||||
pri=eth0
|
||||
|
||||
# commands
|
||||
GREP=/bin/grep
|
||||
AWK=/usr/bin/gawk
|
||||
LSMOD=/sbin/lsmod
|
||||
|
||||
# FUNCTIONS
|
||||
get_options () {
|
||||
[ $# -gt 0 ]||result 5
|
||||
while getopts "i:p:" opt;do
|
||||
case ${opt} in
|
||||
i) export if=`echo ${OPTARG}` ;;
|
||||
p) export pri=`echo ${OPTARG}` ;;
|
||||
*) result 5;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
result () {
|
||||
case $1 in
|
||||
0) echo "OK: - Bondingmode: $(grep "Bonding Mode:" /proc/net/bonding/${if}), active link: $2";;
|
||||
1) echo "UNKNOWN: plugin error";rc=3;;
|
||||
2) echo "CRITICAL: bonding module not loaded";rc=2;;
|
||||
3) echo "WARNING: state of ${if} device $2 is $3";rc=1;;
|
||||
4) echo "UNKNOWN: no bondinterface with name ${if} found";rc=3;;
|
||||
5) echo "UNKNOWN: Usage: ${me} [-i <bond interface name>] [-p <expected primary interface name>]";rc=3;;
|
||||
6) echo "CRITICAL: bondinterface ${if} has no active slaves";rc=2;;
|
||||
7) echo "WARNING: Bondingmode: $(grep "Bonding Mode:" /proc/net/bonding/${if}), (unexpected) active link: $2";rc=1;;
|
||||
8) echo "WARNING: bondinterface with name ${if} has less than 2 interfaces - so zero redundancy";rc=1;;
|
||||
esac
|
||||
}
|
||||
|
||||
# SCRIPT
|
||||
# 1st set default return code:
|
||||
rc=0
|
||||
|
||||
# test if this script was called correctly
|
||||
[ $# -eq 1 -o $# -eq 3 -o $# -gt 4 ] && result 5
|
||||
[ $rc -gt 0 ] && exit $rc
|
||||
|
||||
[ $# -eq 2 -o $# -eq 4 ] && get_options $@
|
||||
[ $rc -gt 0 ] && exit $rc
|
||||
|
||||
# 1st we check if bonding module is loaded
|
||||
[ "$(${LSMOD}|grep bonding)" = "" ] && result 2
|
||||
[ $rc -gt 0 ] && exit $rc
|
||||
|
||||
# test if there is any bond interface with this name
|
||||
[ -f "/proc/net/bonding/${if}" ] || result 4
|
||||
[ $rc -gt 0 ] && exit $rc
|
||||
|
||||
case $(grep "Bonding Mode:" /proc/net/bonding/${if}) in
|
||||
*"IEEE 802.3ad Dynamic link aggregation"*) bondingmode=lacp;;
|
||||
*) bondingmode=masterslave;;
|
||||
esac
|
||||
|
||||
# Inspect the state of the entire bond interface
|
||||
if [ "$bondingmode" == "lacp" ]
|
||||
then
|
||||
ifstate=$(${AWK} '/MII Status:/ {print $3}' /proc/net/bonding/bond0 | head -n 1)
|
||||
ifslavecount=$(${AWK} '/Slave Interface:/ {print $3}' /proc/net/bonding/bond0 | wc -l)
|
||||
[ "${ifstate}" != "up" ]&& result 6
|
||||
[[ "${pri}" =~ "${ifstate}" ]] || result 7 "${ifstate}"
|
||||
[ ${ifslavecount} -lt 2 ]&& result 8
|
||||
else
|
||||
ifstate=$(${AWK} '/Currently Active Slave/ {print $4}' /proc/net/bonding/${if})
|
||||
[ "${ifstate}" = "None" ]&& result 6
|
||||
[[ "${pri}" =~ "${ifstate}" ]] || result 7 "${ifstate}"
|
||||
[ $rc -gt 0 ] && exit $rc
|
||||
fi
|
||||
|
||||
# test state of each if in bond
|
||||
ethdevs=$(${AWK} '/Slave Interface/ {print $3}' /proc/net/bonding/${if})
|
||||
for ethdev in ${ethdevs};do
|
||||
state=$(${GREP} -A1 "Slave Interface: ${ethdev}" /proc/net/bonding/${if}|${AWK} '/MII Status:/ {print $3}')
|
||||
if [ "${state}" != "up" ];then
|
||||
result 3 ${ethdev} ${state}
|
||||
fi
|
||||
done
|
||||
|
||||
[ $rc -eq 0 ] && result 0 "${ifstate}"
|
||||
exit $rc
|
||||
|
||||
#END
|
||||
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
Homepage: https://raw.githubusercontent.com/aswen/nagios-plugins/master/check_bond
|
||||
Uploaders: Jan Wagner <waja@cyconet.org>
|
||||
Description: plugin that checks for the status of bonding interfaces.
|
||||
Recommends: gawk
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
Copyright (c) 2010 L.Gill
|
||||
Copyright (c) 2011 Alexander Swen <a@swen.nu>
|
||||
|
||||
License: ISC license
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
||||
SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
||||
RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
|
||||
CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
||||
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
#/usr/bin/make -f
|
||||
|
||||
PLUGIN = src/check_es_system
|
||||
CLEANEXTRAFILES = $(PLUGIN)
|
||||
DOCFILES = src/README.md
|
||||
|
||||
include ../common.mk
|
||||
|
||||
src/$(PLUGIN): src/$(PLUGIN).sh
|
||||
cp $< $@
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
---
|
||||
sudo: required
|
||||
dist: focal
|
||||
language: generic
|
||||
|
||||
services:
|
||||
- elasticsearch
|
||||
|
||||
before_install:
|
||||
- sudo apt-get update -q
|
||||
- sudo apt-get install curl jq
|
||||
|
||||
before_script:
|
||||
#- sleep 10
|
||||
|
||||
script:
|
||||
- ./check_es_system.sh --help || true
|
||||
- test/test_status.sh
|
||||
- test/test_readonly.sh
|
||||
- test/test_disk.sh
|
||||
|
||||
|
||||
|
|
@ -1,339 +0,0 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc., <http://fsf.org/>
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Lesser General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
{description}
|
||||
Copyright (C) {year} {fullname}
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
{signature of Ty Coon}, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License.
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
# check_es_system
|
||||
This is a monitoring plugin to check the status of an ElasticSearch cluster node. Besides the classical status check (green, yellow, red) this plugin also allows to monitor disk or memory usage of Elasticsearch. This is especially helpful when running Elasticsearch in the cloud (e.g. Elasticsearch as a service) because, as ES does not run on your own server, you cannot monitor the disk or memory usage. This is where this plugin comes in. Just tell the plugin how much resources (diskspace, memory capacity) you have available (-d) and it will alarm you when you reach a threshold.
|
||||
Besides that, the plugin offers additional (advanced) checks of a Elasticsearch node/cluster (Java Threads, Thread Pool Statistics, Master Verification, Read-Only Indexes, ...).
|
||||
|
||||
Please refer to https://www.claudiokuenzler.com/monitoring-plugins/check_es_system.php for full documentation and usage examples.
|
||||
|
||||
Requirements
|
||||
------
|
||||
- The following commands must be available: `curl`, `expr`
|
||||
- One of the following json parsers must be available: `jshon` or `jq` (defaults to jq)
|
||||
|
||||
Usage
|
||||
------
|
||||
|
||||
./check_es_system.sh -H ESNode [-P port] [-S] [-u user] [-p pass] [-d available] -t check [-o unit] [-i indexes] [-w warn] [-c crit] [-m max_time] [-e node] [-X jq|jshon]
|
||||
|
|
@ -1,767 +0,0 @@
|
|||
#!/bin/bash
|
||||
################################################################################
|
||||
# Script: check_es_system.sh #
|
||||
# Author: Claudio Kuenzler www.claudiokuenzler.com #
|
||||
# Purpose: Monitor ElasticSearch Store (Disk) Usage #
|
||||
# Docs: www.claudiokuenzler.com/monitoring-plugins/check_es_system.php #
|
||||
# License: GPLv2 #
|
||||
# GNU General Public Licence (GPL) http://www.gnu.org/ #
|
||||
# This program is free software; you can redistribute it and/or #
|
||||
# modify it under the terms of the GNU General Public License #
|
||||
# as published by the Free Software Foundation; either version 2 #
|
||||
# of the License, or (at your option) any later version. #
|
||||
# #
|
||||
# This program is distributed in the hope that it will be useful, #
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||
# GNU General Public License for more details. #
|
||||
# #
|
||||
# You should have received a copy of the GNU General Public License #
|
||||
# along with this program; if not, see <https://www.gnu.org/licenses/>. #
|
||||
# #
|
||||
# Copyright 2016,2018-2021,2023 Claudio Kuenzler #
|
||||
# Copyright 2018 Tomas Barton #
|
||||
# Copyright 2020 NotAProfessionalDeveloper #
|
||||
# Copyright 2020 tatref #
|
||||
# Copyright 2020 fbomj #
|
||||
# Copyright 2021 chicco27 #
|
||||
# #
|
||||
# History/Changelog: #
|
||||
# 20160429: Started programming plugin #
|
||||
# 20160601: Continued programming. Working now as it should =) #
|
||||
# 20160906: Added memory usage check, check types option (-t) #
|
||||
# 20160906: Renamed plugin from check_es_store to check_es_system #
|
||||
# 20160907: Change internal referenced variable name for available size #
|
||||
# 20160907: Output now contains both used and available sizes #
|
||||
# 20161017: Add missing -t in usage output #
|
||||
# 20180105: Fix if statement for authentication (@deric) #
|
||||
# 20180105: Fix authentication when wrong credentials were used #
|
||||
# 20180313: Configure max_time for Elastic to respond (@deric) #
|
||||
# 20190219: Fix alternative subject name in ssl (issue 4), direct to auth #
|
||||
# 20190220: Added status check type #
|
||||
# 20190403: Check for mandatory parameter checktype, adjust help #
|
||||
# 20190403: Catch connection refused error #
|
||||
# 20190426: Catch unauthorized (403) error #
|
||||
# 20190626: Added readonly check type #
|
||||
# 20190905: Catch empty cluster health status (issue #13) #
|
||||
# 20190909: Added jthreads and tps (thread pool stats) check types #
|
||||
# 20190909: Handle correct curl return codes #
|
||||
# 20190924: Missing 'than' in tps output #
|
||||
# 20191104: Added master check type #
|
||||
# 20200401: Fix/handle 503 errors with curl exit code 0 (issue #20) #
|
||||
# 20200409: Fix 503 error lookup (issue #22) #
|
||||
# 20200430: Support both jshon and jq as json parsers (issue #18) #
|
||||
# 20200609: Fix readonly check on ALL indices (issue #26) #
|
||||
# 20200723: Add cluster name to status output #
|
||||
# 20200824: Fix typo in readonly check output #
|
||||
# 20200916: Internal renaming of -i parameter, use for tps check (issue #28) #
|
||||
# 20201110: Fix thresholds in jthreads check #
|
||||
# 20201125: Show names of read_only indexes with jq, set jq as default parser #
|
||||
# 20210616: Fix authentication bug (#38) and non ES URL responding (#39) #
|
||||
# 20211202: Added local node (-L), SSL settings (-K, -E), cpu check #
|
||||
# 20230929: Bugfix in readonly check type for missing privileges #
|
||||
################################################################################
|
||||
#Variables and defaults
|
||||
STATE_OK=0 # define the exit code if status is OK
|
||||
STATE_WARNING=1 # define the exit code if status is Warning
|
||||
STATE_CRITICAL=2 # define the exit code if status is Critical
|
||||
STATE_UNKNOWN=3 # define the exit code if status is Unknown
|
||||
export PATH=$PATH:/usr/local/bin:/usr/bin:/bin # Set path
|
||||
version=1.12.1
|
||||
port=9200
|
||||
httpscheme=http
|
||||
unit=G
|
||||
include='_all'
|
||||
max_time=30
|
||||
parsers=(jq jshon)
|
||||
################################################################################
|
||||
#Functions
|
||||
help () {
|
||||
echo -e "$0 $version (c) 2016-$(date +%Y) Claudio Kuenzler and contributors (open source rulez!)
|
||||
|
||||
Usage: ./check_es_system.sh -H ESNode [-P port] [-S] [-u user -p pass|-E cert -K key] -t checktype [-o unit] [-w int] [-c int] [-m int] [-e string] [-X parser]
|
||||
|
||||
Options:
|
||||
|
||||
* -H Hostname or ip address of ElasticSearch Node
|
||||
-L Run check on local node instead of cluster
|
||||
-P Port (defaults to 9200)
|
||||
-S Use https
|
||||
-E Certs for Authentication
|
||||
-K Key for Authentication
|
||||
-u Username if authentication is required
|
||||
-p Password if authentication is required
|
||||
* -t Type of check (disk, mem, cpu, status, readonly, jthreads, tps, master)
|
||||
-o Disk space unit (K|M|G) (defaults to G)
|
||||
-i Space separated list of included object names to be checked (index names on readonly check, pool names on tps check)
|
||||
-w Warning threshold (see usage notes below)
|
||||
-c Critical threshold (see usage notes below)
|
||||
-m Maximum time in seconds to wait for response (default: 30)
|
||||
-e Expect master node (used with 'master' check)
|
||||
-X The json parser to be used jshon or jq (default: jq)
|
||||
-h Help!
|
||||
|
||||
*mandatory options
|
||||
|
||||
Threshold format for 'disk', 'mem' and 'cpu': int (for percent), defaults to 80 (warn) and 95 (crit)
|
||||
Threshold format for 'tps': int,int,int (active, queued, rejected), no defaults
|
||||
Threshold format for all other check types': int, no defaults
|
||||
|
||||
Requirements: curl, expr and one of $(IFS=,; echo "${parsers[*]}")"
|
||||
exit $STATE_UNKNOWN;
|
||||
}
|
||||
|
||||
authlogic () {
|
||||
if [[ -z $user ]] && [[ -z $pass ]]; then echo "ES SYSTEM UNKNOWN - Authentication required but missing username and password"; exit $STATE_UNKNOWN
|
||||
elif [[ -n $user ]] && [[ -z $pass ]]; then echo "ES SYSTEM UNKNOWN - Authentication required but missing password"; exit $STATE_UNKNOWN
|
||||
elif [[ -n $pass ]] && [[ -z $user ]]; then echo "ES SYSTEM UNKNOWN - Missing username"; exit $STATE_UNKNOWN
|
||||
fi
|
||||
}
|
||||
|
||||
authlogic_cert () {
|
||||
if [[ -z $cert ]] && [[ -z $key ]]; then echo "ES SYSTEM UNKNOWN - Authentication required but missing cert and key"; exit $STATE_UNKNOWN
|
||||
elif [[ -n $cert ]] && [[ -z $key ]]; then echo "ES SYSTEM UNKNOWN - Authentication required but missing key"; exit $STATE_UNKNOWN
|
||||
elif [[ -n $key ]] && [[ -z $cert ]]; then echo "ES SYSTEM UNKNOWN - Missing cert"; exit $STATE_UNKNOWN
|
||||
fi
|
||||
}
|
||||
|
||||
unitcalc() {
|
||||
# ES presents the currently used disk space in Bytes
|
||||
if [[ -n $unit ]]; then
|
||||
case $unit in
|
||||
K) availsize=$(expr $available / 1024); outputsize=$(expr ${size} / 1024);;
|
||||
M) availsize=$(expr $available / 1024 / 1024); outputsize=$(expr ${size} / 1024 / 1024);;
|
||||
G) availsize=$(expr $available / 1024 / 1024 / 1024); outputsize=$(expr ${size} / 1024 / 1024 / 1024);;
|
||||
esac
|
||||
if [[ -n $warning ]] ; then
|
||||
warningsize=$(expr $warning \* ${available} / 100)
|
||||
fi
|
||||
if [[ -n $critical ]] ; then
|
||||
criticalsize=$(expr $critical \* ${available} / 100)
|
||||
fi
|
||||
usedpercent=$(expr $size \* 100 / $available)
|
||||
else echo "UNKNOWN - Shouldnt exit here. No units given"; exit $STATE_UNKNOWN
|
||||
fi
|
||||
}
|
||||
|
||||
thresholdlogic () {
|
||||
if [ -n $warning ] && [ -z $critical ]; then echo "UNKNOWN - Define both warning and critical thresholds"; exit $STATE_UNKNOWN; fi
|
||||
if [ -n $critical ] && [ -z $warning ]; then echo "UNKNOWN - Define both warning and critical thresholds"; exit $STATE_UNKNOWN; fi
|
||||
}
|
||||
|
||||
default_percentage_thresholds() {
|
||||
if [ -z $warning ] || [ "${warning}" = "" ]; then warning=80; fi
|
||||
if [ -z $critical ] || [ "${critical}" = "" ]; then critical=95; fi
|
||||
}
|
||||
|
||||
json_parse() {
|
||||
json_parse_usage() { echo "$0: [-r] [-q] [-c] [-a] -x arg1 -x arg2 ..." 1>&2; exit; }
|
||||
|
||||
local OPTIND opt r q c a x
|
||||
while getopts ":rqcax:" opt
|
||||
do
|
||||
case "${opt}" in
|
||||
r) raw=1;;
|
||||
q) quiet=1;; # only required for jshon
|
||||
c) continue=1;; # only required for jshon
|
||||
a) across=1;;
|
||||
x) args+=("$OPTARG");;
|
||||
*) json_parse_usage;;
|
||||
esac
|
||||
done
|
||||
|
||||
case ${parser} in
|
||||
jshon)
|
||||
cmd=()
|
||||
for arg in "${args[@]}"; do
|
||||
cmd+=(-e $arg)
|
||||
done
|
||||
jshon ${quiet:+-Q} ${continue:+-C} ${across:+-a} "${cmd[@]}" ${raw:+-u}
|
||||
;;
|
||||
jq)
|
||||
cmd=()
|
||||
for arg in "${args[@]}"; do
|
||||
cmd+=(.$arg)
|
||||
done
|
||||
jq ${raw:+-r} $(IFS=; echo ${across:+.[]}"${cmd[*]}")
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# Check for people who need help - aren't we all nice ;-)
|
||||
if [ "${1}" = "--help" -o "${#}" = "0" ]; then help; exit $STATE_UNKNOWN; fi
|
||||
################################################################################
|
||||
# Get user-given variables
|
||||
while getopts "H:LP:SE:K:u:p:d:o:i:w:c:t:m:e:X:" Input
|
||||
do
|
||||
case ${Input} in
|
||||
H) host=${OPTARG};;
|
||||
L) local=true;;
|
||||
P) port=${OPTARG};;
|
||||
S) httpscheme=https;;
|
||||
E) cert=${OPTARG};;
|
||||
K) key=${OPTARG};;
|
||||
u) user=${OPTARG};;
|
||||
p) pass=${OPTARG};;
|
||||
d) oldavailable=${OPTARG};;
|
||||
o) unit=${OPTARG};;
|
||||
i) include=${OPTARG};;
|
||||
w) warning=${OPTARG};;
|
||||
c) critical=${OPTARG};;
|
||||
t) checktype=${OPTARG};;
|
||||
m) max_time=${OPTARG};;
|
||||
e) expect_master=${OPTARG};;
|
||||
X) parser=${OPTARG:=jq};;
|
||||
*) help;;
|
||||
esac
|
||||
done
|
||||
|
||||
# Check for mandatory opts
|
||||
if [[ -z ${host} ]]; then help; exit $STATE_UNKNOWN; fi
|
||||
if [[ -z ${checktype} ]]; then help; exit $STATE_UNKNOWN; fi
|
||||
|
||||
# Check for deprecated opts
|
||||
if [[ -n ${oldavailable} ]]; then
|
||||
echo "ES SYSTEM UNKNOWN: -d parameter is now invalid. Capacities are now discovered directly from Elasticsearch."
|
||||
exit ${STATE_UNKNOWN}
|
||||
fi
|
||||
|
||||
# Local checks are only useful for certain check types
|
||||
if [[ -n ${local} ]] && ( ! [[ ${checktype} =~ ^(cpu|mem|disk|jthreads)$ ]] ); then
|
||||
echo "ES SYSTEM UNKNOWN: Node local checks (-L) only work with the following check types: cpu, mem, disk, jthreads"
|
||||
exit ${STATE_UNKNOWN}
|
||||
fi
|
||||
################################################################################
|
||||
# Check requirements
|
||||
for cmd in curl expr ${parser}; do
|
||||
if ! `which ${cmd} >/dev/null 2>&1`; then
|
||||
echo "UNKNOWN: ${cmd} does not exist, please check if command exists and PATH is correct"
|
||||
exit ${STATE_UNKNOWN}
|
||||
fi
|
||||
done
|
||||
# Find parser
|
||||
if [ -z ${parser} ]; then
|
||||
for cmd in ${parsers[@]}; do
|
||||
if `which ${cmd} >/dev/null 2>&1`; then
|
||||
parser=${cmd}
|
||||
break
|
||||
fi
|
||||
done
|
||||
if [ -z "${parser}" ]; then
|
||||
echo "UNKNOWN: No JSON parser found. Either one of the following is required: $(IFS=,; echo "${parsers[*]}")"
|
||||
exit ${STATE_UNKNOWN}
|
||||
fi
|
||||
fi
|
||||
|
||||
################################################################################
|
||||
# Retrieve information from Elasticsearch cluster
|
||||
getstatus() {
|
||||
if [[ ${local} ]]; then
|
||||
esurl="${httpscheme}://${host}:${port}/_nodes/_local/stats"
|
||||
else
|
||||
esurl="${httpscheme}://${host}:${port}/_cluster/stats"
|
||||
fi
|
||||
eshealthurl="${httpscheme}://${host}:${port}/_cluster/health"
|
||||
|
||||
if [[ -z $user ]] && [[ -z $cert ]]; then
|
||||
# Without authentication
|
||||
esstatus=$(curl -k -s --max-time ${max_time} $esurl)
|
||||
esstatusrc=$?
|
||||
if [[ $esstatusrc -eq 7 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Failed to connect to ${host} port ${port}: Connection refused"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ $esstatusrc -eq 28 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - server did not respond within ${max_time} seconds"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ "$esstatus" =~ "503 Service Unavailable" ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Elasticsearch not available: ${host}:${port} return error 503"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ "$esstatus" =~ "Unknown resource" ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Elasticsearch not available: ${esstatus}"
|
||||
exit $STATE_CRITICAL
|
||||
elif ! [[ "$esstatus" =~ "cluster_name" ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Elasticsearch not available at this address ${host}:${port}"
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
# Additionally get cluster health infos
|
||||
if [ $checktype = status ]; then
|
||||
eshealth=$(curl -k -s --max-time ${max_time} $eshealthurl)
|
||||
if [[ -z $eshealth ]]; then
|
||||
echo "ES SYSTEM CRITICAL - unable to get cluster health information"
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
if [[ -n $user ]] || [[ -n $(echo $esstatus | grep -i authentication) ]] ; then
|
||||
# Authentication required
|
||||
authlogic
|
||||
esstatus=$(curl -k -s --max-time ${max_time} --basic -u ${user}:${pass} $esurl)
|
||||
esstatusrc=$?
|
||||
if [[ $esstatusrc -eq 7 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Failed to connect to ${host} port ${port}: Connection refused"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ $esstatusrc -eq 28 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - server did not respond within ${max_time} seconds"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ "$esstatus" =~ "503 Service Unavailable" ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Elasticsearch not available: ${host}:${port} return error 503"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ "$esstatus" =~ "Unknown resource" ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Elasticsearch not available: ${esstatus}"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ -n $(echo "$esstatus" | grep -i "unable to authenticate") ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Unable to authenticate user $user for REST request"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ -n $(echo "$esstatus" | grep -i "unauthorized") ]]; then
|
||||
echo "ES SYSTEM CRITICAL - User $user is unauthorized"
|
||||
exit $STATE_CRITICAL
|
||||
elif ! [[ "$esstatus" =~ "cluster_name" ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Elasticsearch not available at this address ${host}:${port}"
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
# Additionally get cluster health infos
|
||||
if [[ $checktype = status ]]; then
|
||||
eshealth=$(curl -k -s --max-time ${max_time} --basic -u ${user}:${pass} $eshealthurl)
|
||||
if [[ -z $eshealth ]]; then
|
||||
echo "ES SYSTEM CRITICAL - unable to get cluster health information"
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
if [[ -n $cert ]] || [[ -n $(echo $esstatus | grep -i authentication) ]] ; then
|
||||
# Authentication with certificate
|
||||
authlogic_cert
|
||||
esstatus=$(curl -k -s --max-time ${max_time} -E ${cert} --key ${key} $esurl)
|
||||
esstatusrc=$?
|
||||
if [[ $esstatusrc -eq 7 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Failed to connect to ${host} port ${port}: Connection refused"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ $esstatusrc -eq 28 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - server did not respond within ${max_time} seconds"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ "$esstatus" =~ "503 Service Unavailable" ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Elasticsearch not available: ${host}:${port} return error 503"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ -n $(echo "$esstatus" | grep -i "unable to authenticate") ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Unable to authenticate user $user for REST request"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ -n $(echo "$esstatus" | grep -i "unauthorized") ]]; then
|
||||
echo "ES SYSTEM CRITICAL - User $user is unauthorized"
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
# Additionally get cluster health infos
|
||||
if [[ $checktype = status ]]; then
|
||||
eshealth=$(curl -k -s --max-time ${max_time} -E ${cert} --key ${key} $eshealthurl)
|
||||
if [[ -z $eshealth ]]; then
|
||||
echo "ES SYSTEM CRITICAL - unable to get cluster health information"
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
# Catch empty reply from server (typically happens when ssl port used with http connection)
|
||||
if [[ -z $esstatus ]] || [[ $esstatus = '' ]]; then
|
||||
echo "ES SYSTEM UNKNOWN - Empty reply from server (verify ssl settings)"
|
||||
exit $STATE_UNKNOWN
|
||||
fi
|
||||
}
|
||||
################################################################################
|
||||
# Do the checks
|
||||
case $checktype in
|
||||
disk) # Check disk usage
|
||||
getstatus
|
||||
default_percentage_thresholds
|
||||
if [[ ${local} ]]; then
|
||||
size=$(echo $esstatus | json_parse -x 'nodes|' -x '[]' -x indices -x store -x size_in_bytes)
|
||||
available=$(echo $esstatus | json_parse -x 'nodes|' -x '[]' -x fs -x total -x total_in_bytes)
|
||||
else
|
||||
size=$(echo $esstatus | json_parse -x indices -x store -x size_in_bytes)
|
||||
available=$(echo $esstatus | json_parse -x nodes -x fs -x total_in_bytes)
|
||||
fi
|
||||
|
||||
unitcalc
|
||||
if [ -n "${warning}" ] || [ -n "${critical}" ]; then
|
||||
# Handle tresholds
|
||||
thresholdlogic
|
||||
if [ $size -ge $criticalsize ]; then
|
||||
echo "ES SYSTEM CRITICAL - Disk usage is at ${usedpercent}% ($outputsize $unit from $availsize $unit)|es_disk=${size}B;${warningsize};${criticalsize};0;${available}"
|
||||
exit $STATE_CRITICAL
|
||||
elif [ $size -ge $warningsize ]; then
|
||||
echo "ES SYSTEM WARNING - Disk usage is at ${usedpercent}% ($outputsize $unit from $availsize $unit)|es_disk=${size}B;${warningsize};${criticalsize};0;${available}"
|
||||
exit $STATE_WARNING
|
||||
else
|
||||
echo "ES SYSTEM OK - Disk usage is at ${usedpercent}% ($outputsize $unit from $availsize $unit)|es_disk=${size}B;${warningsize};${criticalsize};0;${available}"
|
||||
exit $STATE_OK
|
||||
fi
|
||||
else
|
||||
# No thresholds
|
||||
echo "ES SYSTEM OK - Disk usage is at ${usedpercent}% ($outputsize $unit from $availsize $unit)|es_disk=${size}B;;;0;${available}"
|
||||
exit $STATE_OK
|
||||
fi
|
||||
;;
|
||||
|
||||
mem) # Check memory usage
|
||||
getstatus
|
||||
default_percentage_thresholds
|
||||
if [[ ${local} ]]; then
|
||||
size=$(echo $esstatus | json_parse -x 'nodes|' -x '[]' -x jvm -x mem -x heap_used_in_bytes)
|
||||
available=$(echo $esstatus | json_parse -x 'nodes|' -x '[]' -x jvm -x mem -x heap_max_in_bytes)
|
||||
else
|
||||
size=$(echo $esstatus | json_parse -x nodes -x jvm -x mem -x heap_used_in_bytes)
|
||||
available=$(echo $esstatus | json_parse -x nodes -x jvm -x mem -x heap_max_in_bytes)
|
||||
fi
|
||||
|
||||
unitcalc
|
||||
if [ -n "${warning}" ] || [ -n "${critical}" ]; then
|
||||
# Handle tresholds
|
||||
thresholdlogic
|
||||
if [ $size -ge $criticalsize ]; then
|
||||
echo "ES SYSTEM CRITICAL - Memory usage is at ${usedpercent}% ($outputsize $unit) from $availsize $unit|es_memory=${size}B;${warningsize};${criticalsize};0;${available}"
|
||||
exit $STATE_CRITICAL
|
||||
elif [ $size -ge $warningsize ]; then
|
||||
echo "ES SYSTEM WARNING - Memory usage is at ${usedpercent}% ($outputsize $unit from $availsize $unit)|es_memory=${size}B;${warningsize};${criticalsize};0;${available}"
|
||||
exit $STATE_WARNING
|
||||
else
|
||||
echo "ES SYSTEM OK - Memory usage is at ${usedpercent}% ($outputsize $unit from $availsize $unit)|es_memory=${size}B;${warningsize};${criticalsize};0;${available}"
|
||||
exit $STATE_OK
|
||||
fi
|
||||
else
|
||||
# No thresholds
|
||||
echo "ES SYSTEM OK - Memory usage is at ${usedpercent}% ($outputsize $unit from $availsize $unit)|es_memory=${size}B;;;0;${available}"
|
||||
exit $STATE_OK
|
||||
fi
|
||||
;;
|
||||
|
||||
cpu) # Check memory usage
|
||||
getstatus
|
||||
default_percentage_thresholds
|
||||
if [[ ${local} ]]; then
|
||||
value=$(echo $esstatus | json_parse -x 'nodes|' -x '[]' -x process -x cpu -x percent)
|
||||
else
|
||||
value=$(echo $esstatus | json_parse -x nodes -x process -x cpu -x percent)
|
||||
fi
|
||||
|
||||
if [ -n "${warning}" ] || [ -n "${critical}" ]; then
|
||||
# Handle tresholds
|
||||
thresholdlogic
|
||||
if [ $value -ge $critical ]; then
|
||||
echo "ES SYSTEM CRITICAL - CPU usage is at ${value}% |es_cpu=${value}%;${warning};${critical};0;100"
|
||||
exit $STATE_CRITICAL
|
||||
elif [ $value -ge $warning ]; then
|
||||
echo "ES SYSTEM WARNING - CPU usage is at ${value}% |es_cpu=${value}%;${warning};${critical};0;100"
|
||||
exit $STATE_WARNING
|
||||
else
|
||||
echo "ES SYSTEM OK - CPU usage is at ${value}% |es_cpu=${value}%;${warning};${critical};0;100"
|
||||
exit $STATE_OK
|
||||
fi
|
||||
else
|
||||
# No thresholds
|
||||
echo "ES SYSTEM OK - CPU usage is at ${value}% |es_cpu=${value}%;${warning};${critical};0;100"
|
||||
exit $STATE_OK
|
||||
fi
|
||||
;;
|
||||
|
||||
status) # Check Elasticsearch status
|
||||
getstatus
|
||||
status=$(echo $esstatus | json_parse -r -x status)
|
||||
clustername=$(echo $esstatus | json_parse -r -x cluster_name)
|
||||
shards=$(echo $esstatus | json_parse -r -x indices -x shards -x total)
|
||||
docs=$(echo $esstatus | json_parse -r -x indices -x docs -x count)
|
||||
nodest=$(echo $esstatus | json_parse -r -x nodes -x count -x total)
|
||||
nodesd=$(echo $esstatus | json_parse -r -x nodes -x count -x data)
|
||||
relocating=$(echo $eshealth | json_parse -r -x relocating_shards)
|
||||
init=$(echo $eshealth | json_parse -r -x initializing_shards)
|
||||
unass=$(echo $eshealth | json_parse -r -x unassigned_shards)
|
||||
if [ "$status" = "green" ]; then
|
||||
echo "ES SYSTEM OK - Elasticsearch Cluster \"$clustername\" is green (${nodest} nodes, ${nodesd} data nodes, ${shards} shards, ${docs} docs)|total_nodes=${nodest};;;; data_nodes=${nodesd};;;; total_shards=${shards};;;; relocating_shards=${relocating};;;; initializing_shards=${init};;;; unassigned_shards=${unass};;;; docs=${docs};;;;"
|
||||
exit $STATE_OK
|
||||
elif [ "$status" = "yellow" ]; then
|
||||
echo "ES SYSTEM WARNING - Elasticsearch Cluster \"$clustername\" is yellow (${nodest} nodes, ${nodesd} data nodes, ${shards} shards, ${relocating} relocating shards, ${init} initializing shards, ${unass} unassigned shards, ${docs} docs)|total_nodes=${nodest};;;; data_nodes=${nodesd};;;; total_shards=${shards};;;; relocating_shards=${relocating};;;; initializing_shards=${init};;;; unassigned_shards=${unass};;;; docs=${docs};;;;"
|
||||
exit $STATE_WARNING
|
||||
elif [ "$status" = "red" ]; then
|
||||
echo "ES SYSTEM CRITICAL - Elasticsearch Cluster \"$clustername\" is red (${nodest} nodes, ${nodesd} data nodes, ${shards} shards, ${relocating} relocating shards, ${init} initializing shards, ${unass} unassigned shards, ${docs} docs)|total_nodes=${nodest};;;; data_nodes=${nodesd};;;; total_shards=${shards};;;; relocating_shards=${relocating};;;; initializing_shards=${init};;;; unassigned_shards=${unass};;;; docs=${docs};;;;"
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
;;
|
||||
|
||||
readonly) # Check Readonly status on given indexes
|
||||
getstatus
|
||||
icount=0
|
||||
for index in $include; do
|
||||
if [[ -z $user ]]; then
|
||||
# Without authentication
|
||||
settings=$(curl -k -s --max-time ${max_time} ${httpscheme}://${host}:${port}/$index/_settings)
|
||||
if [[ $? -eq 7 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Failed to connect to ${host} port ${port}: Connection refused"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ $? -eq 28 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - server did not respond within ${max_time} seconds"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ "$settings" =~ "is unauthorized" ]]; then
|
||||
errormsg=$(echo "$settings" | json_parse -r -q -c -x error -x reason)
|
||||
echo "ES SYSTEM CRITICAL - Access denied ($errormsg)"
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
rocount=$(echo $settings | json_parse -r -q -c -a -x settings -x index -x blocks -x read_only | grep -c true)
|
||||
roadcount=$(echo $settings | json_parse -r -q -c -a -x settings -x index -x blocks -x read_only_allow_delete | grep -c true)
|
||||
if [[ $rocount -gt 0 ]]; then
|
||||
output[${icount}]=" $index is read-only -"
|
||||
roerror=true
|
||||
fi
|
||||
if [[ $roadcount -gt 0 ]]; then
|
||||
output[${icount}]+=" $index is read-only (allow delete) -"
|
||||
roerror=true
|
||||
fi
|
||||
fi
|
||||
|
||||
if [[ -n $user ]] || [[ -n $(echo $esstatus | grep -i authentication) ]] ; then
|
||||
# Authentication required
|
||||
authlogic
|
||||
settings=$(curl -k -s --max-time ${max_time} --basic -u ${user}:${pass} ${httpscheme}://${host}:${port}/$index/_settings)
|
||||
settingsrc=$?
|
||||
if [[ $settingsrc -eq 7 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Failed to connect to ${host} port ${port}: Connection refused"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ $settingsrc -eq 28 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - server did not respond within ${max_time} seconds"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ -n $(echo "$settings" | grep -i "unable to authenticate") ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Unable to authenticate user $user for REST request"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ "$settings" =~ "is unauthorized" ]]; then
|
||||
errormsg=$(echo "$settings" | json_parse -r -q -c -x error -x reason)
|
||||
echo "ES SYSTEM CRITICAL - Access denied ($errormsg)"
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
rocount=$(echo $settings | json_parse -r -q -c -a -x settings -x index -x blocks -x read_only | grep -c true)
|
||||
roadcount=$(echo $settings | json_parse -r -q -c -a -x settings -x index -x blocks -x read_only_allow_delete | grep -c true)
|
||||
if [[ $rocount -gt 0 ]]; then
|
||||
if [[ "$index" = "_all" ]]; then
|
||||
if [[ $parser = "jq" ]]; then
|
||||
roindexes=$(echo $settings | jq -r '.[].settings.index |select(.blocks.read_only == "true").provided_name')
|
||||
fi
|
||||
output[${icount}]=" $rocount index(es) found read-only $roindexes -"
|
||||
else output[${icount}]=" $index is read-only -"
|
||||
fi
|
||||
roerror=true
|
||||
fi
|
||||
if [[ $roadcount -gt 0 ]]; then
|
||||
if [[ "$index" = "_all" ]]; then
|
||||
if [[ $parser = "jq" ]]; then
|
||||
roadindexes=$(echo $settings | jq -r '.[].settings.index |select(.blocks.read_only_allow_delete == "true").provided_name' | tr '\n' ' ')
|
||||
fi
|
||||
output[${icount}]+=" $roadcount index(es) found read-only (allow delete) $roadindexes"
|
||||
else output[${icount}]+=" $index is read-only (allow delete) -"
|
||||
fi
|
||||
roerror=true
|
||||
fi
|
||||
fi
|
||||
let icount++
|
||||
done
|
||||
|
||||
if [[ $roerror ]]; then
|
||||
echo "ES SYSTEM CRITICAL - ${output[*]}"
|
||||
exit $STATE_CRITICAL
|
||||
else
|
||||
echo "ES SYSTEM OK - Elasticsearch Indexes ($include) are writeable"
|
||||
exit $STATE_OK
|
||||
fi
|
||||
;;
|
||||
|
||||
jthreads) # Check JVM threads
|
||||
getstatus
|
||||
if [[ ${local} ]]; then
|
||||
threads=$(echo $esstatus | json_parse -x 'nodes|' -x '[]' -x jvm -x threads -x count)
|
||||
else
|
||||
threads=$(echo $esstatus | json_parse -r -x nodes -x jvm -x "threads")
|
||||
fi
|
||||
|
||||
if [ -n "${warning}" ] || [ -n "${critical}" ]; then
|
||||
# Handle tresholds
|
||||
thresholdlogic
|
||||
if [[ $threads -ge $critical ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Number of JVM threads is ${threads}|es_jvm_threads=${threads};${warning};${critical};;"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ $threads -ge $warning ]]; then
|
||||
echo "ES SYSTEM WARNING - Number of JVM threads is ${threads}|es_jvm_threads=${threads};${warning};${critical};;"
|
||||
exit $STATE_WARNING
|
||||
else
|
||||
echo "ES SYSTEM OK - Number of JVM threads is ${threads}|es_jvm_threads=${threads};${warning};${critical};;"
|
||||
exit $STATE_OK
|
||||
fi
|
||||
else
|
||||
# No thresholds
|
||||
echo "ES SYSTEM OK - Number of JVM threads is ${threads}|es_jvm_threads=${threads};${warning};${critical};;"
|
||||
exit $STATE_OK
|
||||
fi
|
||||
;;
|
||||
|
||||
tps) # Check Thread Pool Statistics
|
||||
getstatus
|
||||
if [[ -z $user ]]; then
|
||||
# Without authentication
|
||||
threadpools=$(curl -k -s --max-time ${max_time} ${httpscheme}://${host}:${port}/_cat/thread_pool)
|
||||
threadpoolrc=$?
|
||||
if [[ $threadpoolrc -eq 7 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Failed to connect to ${host} port ${port}: Connection refused"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ $threadpoolrc -eq 28 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - server did not respond within ${max_time} seconds"
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
fi
|
||||
|
||||
if [[ -n $user ]] || [[ -n $(echo $esstatus | grep -i authentication) ]] ; then
|
||||
# Authentication required
|
||||
authlogic
|
||||
threadpools=$(curl -k -s --max-time ${max_time} --basic -u ${user}:${pass} ${httpscheme}://${host}:${port}/_cat/thread_pool)
|
||||
threadpoolrc=$?
|
||||
if [[ $threadpoolrc -eq 7 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Failed to connect to ${host} port ${port}: Connection refused"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ $threadpoolrc -eq 28 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - server did not respond within ${max_time} seconds"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ -n $(echo $esstatus | grep -i "unable to authenticate") ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Unable to authenticate user $user for REST request"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ -n $(echo $esstatus | grep -i "unauthorized") ]]; then
|
||||
echo "ES SYSTEM CRITICAL - User $user is unauthorized"
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
fi
|
||||
|
||||
if ! [[ $include = "_all" ]]; then
|
||||
tpsgrep=$(echo "$include" | sed "s/ /|/g")
|
||||
threadpools=$(echo "$threadpools" | egrep -i "(${tpsgrep})")
|
||||
if [[ $(echo ${threadpools[*]}) = "" ]]; then
|
||||
echo "Thread Pool check is critical: No thread pools found with given name(s): ${include}."
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
fi
|
||||
|
||||
tpname=($(echo "$threadpools" | awk '{print $1"-"$2}' | sed "s/\n//g"))
|
||||
tpactive=($(echo "$threadpools" | awk '{print $3}' | sed "s/\n//g"))
|
||||
tpqueue=($(echo "$threadpools" | awk '{print $4}' | sed "s/\n//g"))
|
||||
tprejected=($(echo "$threadpools" | awk '{print $5}' | sed "s/\n//g"))
|
||||
|
||||
if [ -n "${warning}" ] || [ -n "${critical}" ]; then
|
||||
# Handle thresholds. They have to come in a special format: n,n,n (active, queue, rejected)
|
||||
thresholdlogic
|
||||
wactive=$(echo ${warning} | awk -F',' '{print $1}')
|
||||
wqueue=$(echo ${warning} | awk -F',' '{print $2}')
|
||||
wrejected=$(echo ${warning} | awk -F',' '{print $3}')
|
||||
cactive=$(echo ${critical} | awk -F',' '{print $1}')
|
||||
cqueue=$(echo ${critical} | awk -F',' '{print $2}')
|
||||
crejected=$(echo ${critical} | awk -F',' '{print $3}')
|
||||
|
||||
i=0; for tp in ${tpname[*]}; do
|
||||
perfdata[$i]="tp_${tp}_active=${tpactive[$i]};${wactive};${cactive};; tp_${tp}_queue=${tpqueue[$i]};${wqueue};${cqueue};; tp_${tp}_rejected=${tprejected[$i]};${wrejected};${crejected};; "
|
||||
let i++
|
||||
done
|
||||
|
||||
i=0
|
||||
for tpa in $(echo ${tpactive[*]}); do
|
||||
if [[ $tpa -ge $cactive ]]; then
|
||||
echo "Thread Pool ${tpname[$i]} is critical: Active ($tpa) is equal or higher than threshold ($cactive)|${perfdata[*]}"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ $tpa -ge $wactive ]]; then
|
||||
echo "Thread Pool ${tpname[$i]} is warning: Active ($tpa) is equal or higher than threshold ($wactive)|${perfdata[*]}"
|
||||
exit $STATE_WARNING
|
||||
fi
|
||||
let i++
|
||||
done
|
||||
|
||||
i=0
|
||||
for tpq in $(echo ${tpqueue[*]}); do
|
||||
if [[ $tpq -ge $cqueue ]]; then
|
||||
echo "Thread Pool ${tpname[$i]} is critical: Queue ($tpq) is equal or higher than threshold ($cqueue)|${perfdata[*]}"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ $tpq -ge $wqueue ]]; then
|
||||
echo "Thread Pool ${tpname[$i]} is warning: Queue ($tpq) is equal or higher than threshold ($wqueue)|${perfdata[*]}"
|
||||
exit $STATE_WARNING
|
||||
fi
|
||||
let i++
|
||||
done
|
||||
|
||||
i=0
|
||||
for tpr in $(echo ${tprejected[*]}); do
|
||||
if [[ $tpr -ge $crejected ]]; then
|
||||
echo "Thread Pool ${tpname[$i]} is critical: Rejected ($tpr) is equal or higher than threshold ($crejected)|${perfdata[*]}"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ $tpr -ge $wrejected ]]; then
|
||||
echo "Thread Pool ${tpname[$i]} is warning: Rejected ($tpr) is equal or higher than threshold ($wrejected)|${perfdata[*]}"
|
||||
exit $STATE_WARNING
|
||||
fi
|
||||
let i++
|
||||
done
|
||||
|
||||
echo "ES SYSTEM OK - Found ${#tpname[*]} thread pools in cluster|${perfdata[*]}"
|
||||
exit $STATE_OK
|
||||
fi
|
||||
|
||||
# No Thresholds
|
||||
i=0; for tp in ${tpname[*]}; do
|
||||
perfdata[$i]="tp_${tp}_active=${tpactive[$i]};;;; tp_${tp}_queue=${tpqueue[$i]};;;; tp_${tp}_rejected=${tprejected[$i]};;;; "
|
||||
let i++
|
||||
done
|
||||
echo "ES SYSTEM OK - Found ${#tpname[*]} thread pools in cluster|${perfdata[*]}"
|
||||
exit $STATE_OK
|
||||
;;
|
||||
|
||||
master) # Check Cluster Master
|
||||
getstatus
|
||||
if [[ -z $user ]]; then
|
||||
# Without authentication
|
||||
master=$(curl -k -s --max-time ${max_time} ${httpscheme}://${host}:${port}/_cat/master)
|
||||
masterrc=$?
|
||||
if [[ $masterrc -eq 7 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Failed to connect to ${host} port ${port}: Connection refused"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ $masterrc -eq 28 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - server did not respond within ${max_time} seconds"
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
fi
|
||||
|
||||
if [[ -n $user ]] || [[ -n $(echo $esstatus | grep -i authentication) ]] ; then
|
||||
# Authentication required
|
||||
authlogic
|
||||
master=$(curl -k -s --max-time ${max_time} --basic -u ${user}:${pass} ${httpscheme}://${host}:${port}/_cat/master)
|
||||
masterrc=$?
|
||||
if [[ $threadpoolrc -eq 7 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Failed to connect to ${host} port ${port}: Connection refused"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ $threadpoolrc -eq 28 ]]; then
|
||||
echo "ES SYSTEM CRITICAL - server did not respond within ${max_time} seconds"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ -n $(echo $esstatus | grep -i "unable to authenticate") ]]; then
|
||||
echo "ES SYSTEM CRITICAL - Unable to authenticate user $user for REST request"
|
||||
exit $STATE_CRITICAL
|
||||
elif [[ -n $(echo $esstatus | grep -i "unauthorized") ]]; then
|
||||
echo "ES SYSTEM CRITICAL - User $user is unauthorized"
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
fi
|
||||
|
||||
masternode=$(echo "$master" | awk '{print $NF}')
|
||||
|
||||
if [[ -n ${expect_master} ]]; then
|
||||
if [[ "${expect_master}" = "${masternode}" ]]; then
|
||||
echo "ES SYSTEM OK - Master node is $masternode"
|
||||
exit $STATE_OK
|
||||
else
|
||||
echo "ES SYSTEM WARNING - Master node is $masternode but expected ${expect_master}"
|
||||
exit $STATE_WARNING
|
||||
fi
|
||||
else
|
||||
echo "ES SYSTEM OK - Master node is $masternode"
|
||||
exit $STATE_OK
|
||||
fi
|
||||
;;
|
||||
|
||||
*) help
|
||||
esac
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
#!/bin/bash
|
||||
echo "Test Elasticsearch status"
|
||||
./check_es_system.sh -H 127.0.0.1 -P 9200 -t disk
|
||||
output=$(./check_es_system.sh -H 127.0.0.1 -P 9200 -t disk)
|
||||
|
||||
if [[ $? -eq 0 ]]; then
|
||||
echo -e "\e[1m\e[32m✔ Test 3.1 OK: Disk check worked and shows green\e[0m"
|
||||
exitcode=0
|
||||
else
|
||||
echo -e "\e[1m\e[31m✘ Test 3.1 ERROR: Disk check has not worked\e[0m"
|
||||
exitcode=1
|
||||
fi
|
||||
|
||||
if ! [[ "${output}" =~ "ES SYSTEM OK - Disk usage is at 0%" ]]; then
|
||||
exitcode=1
|
||||
fi
|
||||
|
||||
exit $exitcode
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
#!/bin/bash
|
||||
echo "Test Elasticsearch status"
|
||||
./check_es_system.sh -H 127.0.0.1 -P 9200 -t readonly
|
||||
|
||||
if [[ $? -eq 0 ]]; then
|
||||
echo -e "\e[1m\e[32m✔ Test 2.1 OK: Readonly check worked and no read_only indexes were found\e[0m"
|
||||
exitcode=0
|
||||
else
|
||||
echo -e "\e[1m\e[31m✘ Test 2.1 ERROR: Readonly check has not worked or read_only indexes were found\e[0m"
|
||||
exitcode=1
|
||||
fi
|
||||
|
||||
# Create an index with read_only setting
|
||||
curl -X PUT "127.0.0.1:9200/my-index-002" -H 'Content-Type: application/json' -d'{ "settings": { "index": { "blocks.read_only": true } } }'
|
||||
sleep 5
|
||||
|
||||
./check_es_system.sh -H 127.0.0.1 -P 9200 -t readonly
|
||||
if [[ $? -eq 2 ]]; then
|
||||
echo -e "\e[1m\e[32m✔ Test 2.1 OK: Readonly check worked and detected a read only index\e[0m"
|
||||
exitcode=0
|
||||
else
|
||||
echo -e "\e[1m\e[31m✘ Test 2.1 ERROR: Readonly check has not worked as expected\e[0m"
|
||||
exitcode=1
|
||||
fi
|
||||
|
||||
|
||||
exit $exitcode
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
#!/bin/bash
|
||||
echo "Test Elasticsearch status"
|
||||
./check_es_system.sh -H 127.0.0.1 -P 9200 -t status
|
||||
|
||||
if [[ $? -eq 0 ]]; then
|
||||
echo -e "\e[1m\e[32m✔ Test 1.1 OK: Status check worked and shows green\e[0m"
|
||||
exitcode=0
|
||||
else
|
||||
echo -e "\e[1m\e[31m✘ Test 1.1 ERROR: Status check has not worked\e[0m"
|
||||
exitcode=1
|
||||
fi
|
||||
|
||||
# Create index with a replica, this should result in unassigned shards and yellow status
|
||||
curl -X PUT "127.0.0.1:9200/my-index-001" -H 'Content-Type: application/json' -d'{ "settings": { "index": { "number_of_shards": 2, "number_of_replicas": 1 } } }'
|
||||
sleep 5
|
||||
|
||||
./check_es_system.sh -H 127.0.0.1 -P 9200 -t status
|
||||
if [[ $? -eq 1 ]]; then
|
||||
echo -e "\e[1m\e[32m✔ Test 1.2 OK: Status check worked and shows yellow\e[0m"
|
||||
exitcode=0
|
||||
else
|
||||
echo -e "\e[1m\e[31m✘ Test 1.2 ERROR: Status check has not worked as expected\e[0m"
|
||||
exitcode=1
|
||||
fi
|
||||
|
||||
|
||||
exit $exitcode
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
Uploaders: Jan Wagner <waja@cyconet.org>
|
||||
Recommends: curl, jshon | jq
|
||||
Version: 1.12.1
|
||||
Homepage: https://github.com/Napsty/check_es_system/
|
||||
Watch: https://github.com/Napsty/check_es_system/tags .*/v?(\d\S+)\.tar\.gz
|
||||
Description: Plugin script to check the status of an ElasticSearch cluster node.
|
||||
|
|
@ -1 +0,0 @@
|
|||
check_es_system-1.12.1/
|
||||
93
check_esxi_hardware/check_esxi_hardware.py
Executable file → Normal file
93
check_esxi_hardware/check_esxi_hardware.py
Executable file → Normal file
|
|
@ -22,7 +22,7 @@
|
|||
# Copyright (c) 2008 David Ligeret
|
||||
# Copyright (c) 2009 Joshua Daniel Franklin
|
||||
# Copyright (c) 2010 Branden Schneider
|
||||
# Copyright (c) 2010-2022 Claudio Kuenzler
|
||||
# Copyright (c) 2010-2020 Claudio Kuenzler
|
||||
# Copyright (c) 2010 Samir Ibradzic
|
||||
# Copyright (c) 2010 Aaron Rogers
|
||||
# Copyright (c) 2011 Ludovic Hutin
|
||||
|
|
@ -38,7 +38,6 @@
|
|||
# Copyright (c) 2015 Stefan Roos
|
||||
# Copyright (c) 2018 Peter Newman
|
||||
# Copyright (c) 2020 Luca Berra
|
||||
# Copyright (c) 2022 Marco Markgraf
|
||||
#
|
||||
# The VMware 4.1 CIM API is documented here:
|
||||
# http://www.vmware.com/support/developer/cim-sdk/4.1/smash/cim_smash_410_prog.pdf
|
||||
|
|
@ -281,18 +280,6 @@
|
|||
#@ Reason : Improve missing mandatory parameter error text (issue #47)
|
||||
#@ Delete temporary openssl config file after use (issue #48)
|
||||
#@---------------------------------------------------
|
||||
#@ Date : 20210809
|
||||
#@ Author : Claudio Kuenzler
|
||||
#@ Reason : Fix TLSv1 usage (issue #51)
|
||||
#@---------------------------------------------------
|
||||
#@ Date : 20220509
|
||||
#@ Author : Marco Markgraf
|
||||
#@ Reason : Added JSON-output (Zabbix needs it)
|
||||
#@---------------------------------------------------
|
||||
#@ Date : 20221230
|
||||
#@ Author : Claudio Kuenzler
|
||||
#@ Reason : Fix bug when missing S/N (issue #68)
|
||||
#@---------------------------------------------------
|
||||
|
||||
from __future__ import print_function
|
||||
import sys
|
||||
|
|
@ -300,10 +287,9 @@ import time
|
|||
import pywbem
|
||||
import re
|
||||
import pkg_resources
|
||||
import json
|
||||
from optparse import OptionParser,OptionGroup
|
||||
|
||||
version = '20221230'
|
||||
version = '20200710'
|
||||
|
||||
NS = 'root/cimv2'
|
||||
hosturl = ''
|
||||
|
|
@ -351,7 +337,6 @@ sensor_Type = {
|
|||
}
|
||||
|
||||
data = []
|
||||
xdata = {}
|
||||
|
||||
perf_Prefix = {
|
||||
1:'Pow',
|
||||
|
|
@ -383,10 +368,6 @@ vendor='unknown'
|
|||
# verbose
|
||||
verbose=False
|
||||
|
||||
# output json
|
||||
format='string'
|
||||
pretty=False
|
||||
|
||||
# Produce performance data output for nagios
|
||||
perfdata=False
|
||||
|
||||
|
|
@ -532,20 +513,12 @@ def verboseoutput(message) :
|
|||
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
def xdataprint():
|
||||
if format == 'json' and not pretty:
|
||||
print(json.dumps(xdata, sort_keys=True))
|
||||
if format == 'json' and pretty:
|
||||
print(json.dumps(xdata, sort_keys=True, indent=4))
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
def getopts() :
|
||||
global hosturl,hostname,cimport,sslproto,user,password,vendor,verbose,perfdata,urlise_country,timeout,ignore_list,regex,get_power,get_volts,get_current,get_temp,get_fan,get_lcd,get_intrusion,format,pretty
|
||||
global hosturl,hostname,cimport,sslproto,user,password,vendor,verbose,perfdata,urlise_country,timeout,ignore_list,regex,get_power,get_volts,get_current,get_temp,get_fan,get_lcd,get_intrusion
|
||||
usage = "usage: %prog -H hostname -U username -P password [-C port -S proto -V vendor -v -p -I XX -i list,list -r]\n" \
|
||||
"example: %prog -H hostname -U root -P password -C 5989 -V auto -I uk\n\n" \
|
||||
"or, verbosely:\n\n" \
|
||||
"usage: %prog --host=hostname --user=username --pass=password [--cimport=port --sslproto=version --vendor=system --verbose --perfdata --html=XX --format=json --pretty]\n"
|
||||
"usage: %prog --host=hostname --user=username --pass=password [--cimport=port --sslproto=version --vendor=system --verbose --perfdata --html=XX]\n"
|
||||
|
||||
parser = OptionParser(usage=usage, version="%prog "+version)
|
||||
group1 = OptionGroup(parser, 'Mandatory parameters')
|
||||
|
|
@ -557,7 +530,7 @@ def getopts() :
|
|||
help="password, if password matches file:<path>, first line of given file will be used as password", metavar="PASS")
|
||||
|
||||
group2.add_option("-C", "--cimport", dest="cimport", help="CIM port (default 5989)", metavar="CIMPORT")
|
||||
group2.add_option("-S", "--sslproto", dest="sslproto", help="SSL/TLS protocol version to overwrite system default: SSLv2, SSLv3, TLSv1, TLSv1.1, TLSv1.2, TLSv1.3", metavar="SSLPROTO")
|
||||
group2.add_option("-S", "--sslproto", dest="sslproto", help="SSL/TLS protocol version to overwrite system default: SSLv2, SSLv3, TLSv1.0, TLSv1.1, TLSv1.2, TLSv1.3", metavar="SSLPROTO")
|
||||
group2.add_option("-V", "--vendor", dest="vendor", help="Vendor code: auto, dell, hp, ibm, intel, or unknown (default)", \
|
||||
metavar="VENDOR", type='choice', choices=['auto','dell','hp','ibm','intel','unknown'],default="unknown")
|
||||
group2.add_option("-v", "--verbose", action="store_true", dest="verbose", default=False, \
|
||||
|
|
@ -586,10 +559,6 @@ def getopts() :
|
|||
help="don't collect lcd/front display status")
|
||||
group2.add_option("--no-intrusion", action="store_false", dest="get_intrusion", default=True, \
|
||||
help="don't collect chassis intrusion status")
|
||||
group2.add_option("--format", dest="format", help="'string' (default) or 'json'", \
|
||||
metavar="FORMAT", type='choice', choices=['string','json'],default="string")
|
||||
group2.add_option("--pretty", action="store_true", dest="pretty", default=False, \
|
||||
help="return data as a pretty-printed json-array")
|
||||
|
||||
parser.add_option_group(group1)
|
||||
parser.add_option_group(group2)
|
||||
|
|
@ -636,16 +605,14 @@ def getopts() :
|
|||
user=options.user
|
||||
password=options.password
|
||||
cimport=options.cimport
|
||||
ignore_list=options.ignore.split(',')
|
||||
format=options.format
|
||||
pretty=options.pretty
|
||||
perfdata=options.perfdata
|
||||
regex=options.regex
|
||||
sslproto=options.sslproto
|
||||
timeout=options.timeout
|
||||
urlise_country=options.urlise_country.lower()
|
||||
vendor=options.vendor.lower()
|
||||
verbose=options.verbose
|
||||
perfdata=options.perfdata
|
||||
urlise_country=options.urlise_country.lower()
|
||||
timeout=options.timeout
|
||||
ignore_list=options.ignore.split(',')
|
||||
regex=options.regex
|
||||
get_power=options.get_power
|
||||
get_volts=options.get_volts
|
||||
get_current=options.get_current
|
||||
|
|
@ -687,12 +654,12 @@ if os_platform != "win32":
|
|||
# Use non-default CIM port
|
||||
if cimport:
|
||||
verboseoutput("Using manually defined CIM port "+cimport)
|
||||
hosturl += ':'+cimport
|
||||
hosturl += ':'+cimport
|
||||
|
||||
# Use non-default SSL protocol version
|
||||
if sslproto:
|
||||
verboseoutput("Using non-default SSL protocol: "+sslproto)
|
||||
allowed_protos = ["SSLv2", "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2", "TLSv1.3"]
|
||||
allowed_protos = ["SSLv2", "SSLv3", "TLSv1.0", "TLSv1.1", "TLSv1.2", "TLSv1.3"]
|
||||
if any(proto.lower() == sslproto.lower() for proto in allowed_protos):
|
||||
import os
|
||||
sslconfpath = '/tmp/'+hostname+'_openssl.conf'
|
||||
|
|
@ -806,7 +773,7 @@ for classe in ClassesToCheck :
|
|||
verboseoutput("Check classe "+classe)
|
||||
try:
|
||||
instance_list = wbemclient.EnumerateInstances(classe)
|
||||
except pywbem._cim_operations.CIMError as args:
|
||||
except pywbem.cim_operations.CIMError as args:
|
||||
if ( args[1].find('Socket error') >= 0 ):
|
||||
print("UNKNOWN: {}".format(args))
|
||||
sys.exit (ExitUnknown)
|
||||
|
|
@ -819,7 +786,7 @@ for classe in ClassesToCheck :
|
|||
GlobalStatus = ExitUnknown
|
||||
print("UNKNOWN: {}".format(args))
|
||||
sys.exit (GlobalStatus)
|
||||
except pywbem._cim_http.AuthError as arg:
|
||||
except pywbem.cim_http.AuthError as arg:
|
||||
verboseoutput("Global exit set to UNKNOWN")
|
||||
GlobalStatus = ExitUnknown
|
||||
print("UNKNOWN: Authentication Error")
|
||||
|
|
@ -851,8 +818,6 @@ for classe in ClassesToCheck :
|
|||
+ str(instance[u'ReleaseDate'].datetime.date())
|
||||
verboseoutput(" VersionString = "+instance[u'VersionString'])
|
||||
|
||||
xdata['Bios Info'] = bios_info
|
||||
|
||||
elif elementName == 'Chassis' :
|
||||
man = instance[u'Manufacturer']
|
||||
if man is None :
|
||||
|
|
@ -867,7 +832,7 @@ for classe in ClassesToCheck :
|
|||
model = instance[u'Model']
|
||||
if model:
|
||||
verboseoutput(" Model = "+model)
|
||||
server_info += model
|
||||
server_info += model + ' s/n:'
|
||||
|
||||
elif elementName == 'Server Blade' :
|
||||
SerialNumber = instance[u'SerialNumber']
|
||||
|
|
@ -875,8 +840,6 @@ for classe in ClassesToCheck :
|
|||
verboseoutput(" SerialNumber = "+SerialNumber)
|
||||
isblade = "yes"
|
||||
|
||||
xdata['SerialNumber'] = SerialNumber
|
||||
|
||||
# Report detail of Numeric Sensors and generate nagios perfdata
|
||||
|
||||
if classe == "CIM_NumericSensor" :
|
||||
|
|
@ -918,33 +881,27 @@ for classe in ClassesToCheck :
|
|||
if units == 7: # Watts
|
||||
if get_power:
|
||||
data.append( ("%s=%g;%g;%g " % (perf_el, cr, utnc, utc),1) )
|
||||
xdata[perf_el] = { 'Unit': 'Watt', 'Value': cr, 'warn' : utnc, 'crit': utc }
|
||||
elif units == 6: # Current
|
||||
if get_current:
|
||||
data.append( ("%s=%g;%g;%g " % (perf_el, cr, utnc, utc),3) )
|
||||
xdata[perf_el] = { 'Unit': 'Ampere', 'Value': cr, 'warn' : utnc, 'crit': utc }
|
||||
|
||||
# PSU Voltage
|
||||
elif sensorType == 3: # Voltage
|
||||
if get_volts:
|
||||
data.append( ("%s=%g;%g;%g " % (perf_el, cr, utnc, utc),2) )
|
||||
xdata[perf_el] = { 'Unit': 'Volt', 'Value': cr, 'warn' : utnc, 'crit': utc }
|
||||
|
||||
# Temperatures
|
||||
elif sensorType == 2: # Temperature
|
||||
if get_temp:
|
||||
data.append( ("%s=%g;%g;%g " % (perf_el, cr, utnc, utc),4) )
|
||||
xdata[perf_el] = { 'Value': cr, 'warn' : utnc, 'crit': utc }
|
||||
|
||||
# Fan speeds
|
||||
elif sensorType == 5: # Tachometer
|
||||
if get_fan:
|
||||
if units == 65: # percentage
|
||||
if units == 65: # percentage
|
||||
data.append( ("%s=%g%%;%g;%g " % (perf_el, cr, utnc, utc),6) )
|
||||
xdata[perf_el] = { 'Unit': '%', 'Value': cr, 'warn' : utnc, 'crit': utc }
|
||||
else:
|
||||
data.append( ("%s=%g;%g;%g " % (perf_el, cr, utnc, utc),5) )
|
||||
xdata[perf_el] = { 'Value': cr, 'warn' : utnc, 'crit': utc }
|
||||
|
||||
elif classe == "CIM_Processor" :
|
||||
verboseoutput(" Family = %d" % instance['Family'])
|
||||
|
|
@ -1040,7 +997,6 @@ if (urlise_country != '') :
|
|||
# If this is a blade server, also output chassis serial number as additional info
|
||||
if (isblade == "yes") :
|
||||
SerialNumber += " Chassis S/N: %s " % (SerialChassis)
|
||||
xdata['ChassisSerialNumber'] = SerialChassis
|
||||
|
||||
# Output performance data
|
||||
perf = '|'
|
||||
|
|
@ -1066,24 +1022,13 @@ if perf == '|':
|
|||
if sslproto:
|
||||
os.remove(sslconfpath)
|
||||
|
||||
xdata['GlobalStatus'] = GlobalStatus
|
||||
|
||||
if GlobalStatus == ExitOK :
|
||||
if format == 'string':
|
||||
print("OK - Server: %s s/n: %s %s%s" % (server_info, SerialNumber, bios_info, perf))
|
||||
else:
|
||||
xdataprint()
|
||||
print("OK - Server: %s %s %s%s" % (server_info, SerialNumber, bios_info, perf))
|
||||
|
||||
elif GlobalStatus == ExitUnknown :
|
||||
if format == 'string':
|
||||
print("UNKNOWN: %s" % (ExitMsg)) #ARR
|
||||
else:
|
||||
xdataprint()
|
||||
print("UNKNOWN: %s" % (ExitMsg)) #ARR
|
||||
|
||||
else:
|
||||
if format == 'string':
|
||||
print("%s - Server: %s %s %s%s" % (ExitMsg, server_info, 's/n: ' + SerialNumber, bios_info, perf))
|
||||
else:
|
||||
xdataprint()
|
||||
print("%s - Server: %s %s %s%s" % (ExitMsg, server_info, SerialNumber, bios_info, perf))
|
||||
|
||||
sys.exit (GlobalStatus)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Uploaders: Jan Wagner <waja@cyconet.org>
|
||||
Recommends: python3-minimal, python-pywbem
|
||||
Version: 20221230
|
||||
Version: 20200710
|
||||
Homepage: https://github.com/Napsty/check_esxi_hardware
|
||||
Watch: https://github.com/Napsty/check_esxi_hardware/tags .*/v?(\d\S+)\.tar\.gz
|
||||
Watch: https://raw.githubusercontent.com/Napsty/check_esxi_hardware/master/check_esxi_hardware.py version = '([0-9.]+)'
|
||||
Description: Plugin for checking global health of VMware ESX/ESXi host
|
||||
|
|
|
|||
194
check_ipsec/check_ipsec
Normal file
194
check_ipsec/check_ipsec
Normal file
|
|
@ -0,0 +1,194 @@
|
|||
#!/bin/bash
|
||||
# Written By Nicole
|
||||
# Any Comments or Questions please e-mail to ml@nicole-haehnel.de
|
||||
#
|
||||
# Plugin Name: check_ipsec
|
||||
# Version: 2.0
|
||||
# Date: 26/08/2008
|
||||
#
|
||||
# Usage: check_ipsec --tunnels <n>
|
||||
#
|
||||
# gateways.txt file must be located in same directory
|
||||
# and has to look like:
|
||||
# nameofconn1 192.168.0.1
|
||||
# nameofconn2 192.168.1.1
|
||||
#
|
||||
# ------------Defining Variables------------
|
||||
PROGNAME=`basename $0`
|
||||
PROGPATH=`echo $0 | sed -e 's,[\\/][^\\/][^\\/]*$,,'`
|
||||
REVISION=`echo '$Revision: 2.0 $' | sed -e 's/[^0-9.]//g'`
|
||||
#STRONG=`$IPSECBIN --version |grep strongSwan | wc -l`
|
||||
DOWN=""
|
||||
# ---------- Change to your needs ----------
|
||||
PLUGINPATH="/usr/lib64/nagios/plugins"
|
||||
GATEWAYLIST="gateways.txt"
|
||||
IPSECBIN="/usr/sbin/ipsec"
|
||||
FPINGBIN="/usr/sbin/fping"
|
||||
# ping server in network on the other side of the tunnel
|
||||
PINGIP=1 # ping yes or no (1/0)
|
||||
# ------------------------------------------
|
||||
|
||||
. $PROGPATH/utils.sh
|
||||
|
||||
|
||||
# Testing availability of $IPSECBIN, $FPINGBIN and $GATEWAYLIST
|
||||
|
||||
if [ $# -eq 0 ];
|
||||
then
|
||||
echo UNKNOWN - missing Arguments. Run check_ipsec --help
|
||||
exit $STATE_UNKNOWN
|
||||
fi
|
||||
|
||||
test -e $IPSECBIN
|
||||
if [ $? -ne 0 ];
|
||||
then
|
||||
echo CRITICAL - $IPSECBIN not exist
|
||||
exit $STATE_CRITICAL
|
||||
else
|
||||
STRONG=`$IPSECBIN --version |grep strongSwan | wc -l`
|
||||
fi
|
||||
|
||||
if [ $PINGIP -eq 1 ]
|
||||
then
|
||||
test -e $FPINGBIN
|
||||
if [ $? -ne 0 ];
|
||||
then
|
||||
echo CRITICAL - $FPINGBIN not exist
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
fi
|
||||
|
||||
test -e $PROGPATH/$GATEWAYLIST
|
||||
if [ $? -ne 0 ];
|
||||
then
|
||||
echo CRITICAL - $GATEWAYLIST not exist
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
|
||||
print_usage() {
|
||||
echo "Usage:"
|
||||
echo " $PROGNAME --tunnels <number of configured tunnels>"
|
||||
echo " $PROGNAME --help"
|
||||
echo " $PROGNAME --version"
|
||||
echo " Created by Nicole, questions or problems e-mail ml@nicole-haehnel.de"
|
||||
echo ""
|
||||
}
|
||||
|
||||
print_help() {
|
||||
print_revision $PROGNAME $REVISION
|
||||
echo ""
|
||||
print_usage
|
||||
echo " Checks vpn connection status of an openswan or strongswan installation."
|
||||
echo ""
|
||||
echo " --tunnels <number of configured tunnels>"
|
||||
echo " -T <number of configured tunnels>"
|
||||
echo " provides the tunnel status of the openswan or strongswan installation"
|
||||
echo ""
|
||||
echo " --help"
|
||||
echo " -h"
|
||||
echo " prints this help screen"
|
||||
echo ""
|
||||
echo " --version"
|
||||
echo " -V"
|
||||
echo " Print version and license information"
|
||||
echo ""
|
||||
}
|
||||
|
||||
check_tunnel() {
|
||||
|
||||
if [[ "$STRONG" -eq "1" ]]
|
||||
then
|
||||
eroutes=`$IPSECBIN status | grep -e "IPsec SA established" | grep -e "newest IPSEC" | wc -l`
|
||||
else
|
||||
eroutes=`$IPSECBIN whack --status | grep -e "IPsec SA established" | grep -e "newest IPSEC" | wc -l`
|
||||
fi
|
||||
|
||||
|
||||
if [[ "$eroutes" -eq "$2" ]]
|
||||
then
|
||||
echo "OK - All $2 tunnels are up an running"
|
||||
exit $STATE_OK
|
||||
elif [[ "$eroutes" -gt "$2" ]]
|
||||
then
|
||||
echo "WARNING - More than $2 ($eroutes) tunnels are up an running"
|
||||
exit $STATE_WARNING
|
||||
else
|
||||
echo "CRITICAL - Only $eroutes tunnels from $2 are up an running - $(location)"
|
||||
exit $STATE_CRITICAL
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
location() {
|
||||
|
||||
count=0
|
||||
i=1
|
||||
|
||||
while read line; do
|
||||
|
||||
CONN=`echo $line| awk '{print $1}'`
|
||||
IP=`echo $line| awk '{print $2}'`
|
||||
|
||||
if [[ "$STRONG" -eq "1" ]]
|
||||
then
|
||||
tunneltest=`$IPSECBIN status | grep -e "IPsec SA established" | grep -e "newest IPSEC" |grep -e $CONN | wc -l`
|
||||
else
|
||||
tunneltest=`$IPSECBIN whack --status | grep -e "IPsec SA established" | grep -e "newest IPSEC" |grep -e "$CONN" | wc -l`
|
||||
fi
|
||||
|
||||
if [[ "$tunneltest" -eq "0" ]]
|
||||
then
|
||||
count=$[$count+1]
|
||||
DOWN="$DOWN $CONN"
|
||||
fi
|
||||
|
||||
if [[ "$PINGIP" -eq "1" && "$tunneltest" -eq "1" ]]
|
||||
then
|
||||
alive=`$FPINGBIN $IP -r 1 | grep alive | wc -l`
|
||||
|
||||
if [[ "$alive" -eq "0" ]]
|
||||
then
|
||||
count=$[$count+1]
|
||||
DOWN="$DOWN $CONN (no ping)"
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
i=$[$i+1]
|
||||
|
||||
done < $PLUGINPATH/$GATEWAYLIST
|
||||
|
||||
echo $DOWN
|
||||
|
||||
}
|
||||
|
||||
|
||||
case "$1" in
|
||||
--help)
|
||||
print_help
|
||||
exit $STATE_OK
|
||||
;;
|
||||
-h)
|
||||
print_help
|
||||
exit $STATE_OK
|
||||
;;
|
||||
--version)
|
||||
print_revision $PLUGIN $REVISION
|
||||
exit $STATE_OK
|
||||
;;
|
||||
-V)
|
||||
print_revision $PLUGIN $REVISION
|
||||
exit $STATE_OK
|
||||
;;
|
||||
--tunnels)
|
||||
check_tunnel $1 $2
|
||||
;;
|
||||
-T)
|
||||
check_tunnel $1 $2
|
||||
;;
|
||||
*)
|
||||
print_help
|
||||
exit $STATE_OK
|
||||
|
||||
esac
|
||||
|
||||
6
check_ipsec/control
Normal file
6
check_ipsec/control
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
Homepage: https://raw.githubusercontent.com/Inuits/monitoring-plugins/master/check_ipsec
|
||||
Watch: https://raw.githubusercontent.com/Inuits/monitoring-plugins/master/check_ipsec # Version: ([0-9.]+)
|
||||
Recommends: monitoring-plugins-common | nagios-plugins-common, fping, strongswan-starter | openswan
|
||||
Version: 2.0
|
||||
Uploaders: Jan Wagner <waja@cyconet.org>
|
||||
Description: plugin checking ipsec connections from open- or stongswan
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
Copyright (c) Claudio Kuenzler <ck@claudiokuenzler.com>
|
||||
Copyright (c) 2008 ml@nicole-haehnel.de
|
||||
|
||||
License: GPL v2
|
||||
License: N/A
|
||||
|
||||
On Debian systems, the complete text of the GNU General
|
||||
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
#/usr/bin/make -f
|
||||
|
||||
include ../common.mk
|
||||
|
|
@ -1,259 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Monitoring plugin to check the keepalived status
|
||||
usage(){
|
||||
echo "Check: Is the keepalived service operate as it should.
|
||||
--status | -s <state> ) Target state of the system (MASTER, BACKUP)
|
||||
--interface | -i <interface> ) Interface for vrrp instance
|
||||
--ha-ip | -ip <ip> ) Vrrp-ip
|
||||
--interface2 | -i2 <interface> ) Interface for 2nd vrrp instance
|
||||
--ha-ip2 | -ip2 <ip> ) 2nd vrrp-ip
|
||||
--help | -h ) Usage
|
||||
"
|
||||
}
|
||||
|
||||
# Exit Codes
|
||||
OK=0
|
||||
WARNING=1
|
||||
CRITICAL=2
|
||||
UNKNOWN=3
|
||||
|
||||
# Command definitions
|
||||
if [ -x "$(which cat)" ];
|
||||
then
|
||||
CAT="$(which cat)"
|
||||
fi
|
||||
|
||||
if [ -x "$(which grep)" ];
|
||||
then
|
||||
GREP="$(which grep)"
|
||||
fi
|
||||
|
||||
if [ -x "$(which ip)" ];
|
||||
then
|
||||
IP="$(which ip)"
|
||||
fi
|
||||
|
||||
if [ -x "$(which pgrep)" ];
|
||||
then
|
||||
PG="$(which pgrep)"
|
||||
fi
|
||||
|
||||
if [ -x "$(which wc)" ];
|
||||
then
|
||||
WC="$(which wc)"
|
||||
fi
|
||||
|
||||
if [ "$1" = "" ]
|
||||
then
|
||||
echo "CRITICAL: No arguments given. Take a look at the usage:"
|
||||
usage
|
||||
exit "${CRITICAL}"
|
||||
fi
|
||||
|
||||
# shifting through our command line arguments and setting our values
|
||||
while [ "$1" != "" ]; do
|
||||
case $1 in
|
||||
--status | -s ) shift
|
||||
TARGET_STATE="$1"
|
||||
;;
|
||||
--interface | -i ) shift
|
||||
IFACE="$1"
|
||||
;;
|
||||
--ha-ip | -ip ) shift
|
||||
HAIP="$1"
|
||||
;;
|
||||
--interface2 | -i2 ) shift
|
||||
IFACE2="$1"
|
||||
SEC_IP=true
|
||||
;;
|
||||
--ha-ip2 | -ip2 ) shift
|
||||
HAIP2="$1"
|
||||
;;
|
||||
--help | -h ) usage
|
||||
exit
|
||||
;;
|
||||
* ) usage
|
||||
echo "CRITICAL: No valid arguments given. Take a look at the usage."
|
||||
exit "${CRITICAL}"
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
# Config and commands
|
||||
STAT_FILE='/var/run/keepalived.status'
|
||||
PID_FILE='/run/keepalived.pid'
|
||||
PID=$("${CAT}" "${PID_FILE}" 2>/dev/null)
|
||||
SERVICE=$("${PG}" keepalived)
|
||||
STATUS=(MASTER BACKUP FAULT)
|
||||
CHECK_HAIP=$("${IP}" 2>/dev/null addr sh "${IFACE}" | "${GREP}" "${HAIP}" | "${WC}" -l)
|
||||
CHECK_HAIP2=$("${IP}" 2>/dev/null addr sh "${IFACE2}" | "${GREP}" "${HAIP2}" | "${WC}" -l)
|
||||
|
||||
# Check files are valid
|
||||
if [ ! -e "${STAT_FILE}" ]
|
||||
then
|
||||
if [ -e /tmp/keepalived.status ]
|
||||
then
|
||||
STAT_FILE='/tmp/keepalived.status'
|
||||
else
|
||||
echo "CRITICAL: Generated status file is missing. State could not be determined."
|
||||
exit "${CRITICAL}"
|
||||
fi
|
||||
fi
|
||||
|
||||
FILE_CONT=$("${CAT}" "${STAT_FILE}" 2>/dev/null)
|
||||
|
||||
if [ ! -e "${PID_FILE}" ]
|
||||
then
|
||||
echo "CRITICAL: PID file is missing, keepalived is not running."
|
||||
exit "${CRITICAL}"
|
||||
fi
|
||||
|
||||
# Check variables exists
|
||||
if [ -z "${TARGET_STATE}" ]
|
||||
then
|
||||
echo "CRITICAL: Parameter 'status' not given. Check usage:"
|
||||
usage
|
||||
exit "${CRITICAL}"
|
||||
fi
|
||||
|
||||
if [ -z "${IFACE}" ]
|
||||
then
|
||||
echo "CRITICAL: Parameter 'interface' not given. Check usage:"
|
||||
usage
|
||||
exit "${CRITICAL}"
|
||||
fi
|
||||
|
||||
if [ -z "${HAIP}" ]
|
||||
then
|
||||
echo "CRITICAL: Parameter 'ha-ip' not given. Check usage:"
|
||||
usage
|
||||
exit "${CRITICAL}"
|
||||
fi
|
||||
|
||||
# Check service is running
|
||||
if [[ ! "${SERVICE}" =~ ${PID} ]]
|
||||
then
|
||||
echo "CRITICAL: keepalived is not running."
|
||||
exit "${CRITICAL}"
|
||||
fi
|
||||
|
||||
# Confirm valid STATUS
|
||||
if [[ ! "${STATUS[*]}" =~ ${FILE_CONT} ]]
|
||||
then
|
||||
echo "CRITICAL: Status file contains unknown status or is empty. Take a look at ${STAT_FILE}."
|
||||
exit "${CRITICAL}"
|
||||
fi
|
||||
|
||||
# Check ha ip and status
|
||||
if [ "${TARGET_STATE}" = "${STATUS[0]}" ] # Machine is defined as MASTER
|
||||
then
|
||||
case "${FILE_CONT}" in
|
||||
MASTER ) STAT=ok
|
||||
;;
|
||||
BACKUP ) STAT=fail
|
||||
;;
|
||||
FAULT ) echo "CRITICAL: Machine status is FAULT."
|
||||
exit "${CRITICAL}"
|
||||
;;
|
||||
* ) echo "CRITICAL: Status file contains unknown status or is empty. Take a look at ${STAT_FILE}."
|
||||
exit "${CRITICAL}"
|
||||
esac
|
||||
|
||||
if [ "${SEC_IP}" == "true" ] # 2nd ha instance
|
||||
then
|
||||
if [ "${CHECK_HAIP2}" == 0 ] && [ "${STAT}" == ok ]
|
||||
then
|
||||
echo "CRITICAL: 2nd HA IP ${HAIP2} is not up but machine is MASTER according to ${STAT_FILE}."
|
||||
STAT_SEC_IP=CRIT
|
||||
elif [ "${CHECK_HAIP2}" == 0 ] && [ "${STAT}" == fail ]
|
||||
then
|
||||
echo "CRITICAL: 2nd HA IP ${HAIP2} is not up, machine is BACKUP. Should be MASTER."
|
||||
elif [ "${CHECK_HAIP2}" == 1 ] && [ "${STAT}" == fail ]
|
||||
then
|
||||
echo "CRITICAL: 2nd HA IP ${HAIP2} is up, but machine is BACKUP according to ${STAT_FILE}. Should be MASTER."
|
||||
else
|
||||
echo "OK: 2nd HA IP ${HAIP2} is up and machine is MASTER."
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "${CHECK_HAIP}" == 0 ] && [ "${STAT}" == ok ] # Target-actual comparison machine state; IP should be up
|
||||
then
|
||||
echo "CRITICAL: HA IP ${HAIP} is not up but machine is MASTER according to ${STAT_FILE}."
|
||||
exit "${CRITICAL}"
|
||||
elif [ "${CHECK_HAIP}" == 0 ] && [ "${STAT}" == fail ]
|
||||
then
|
||||
echo "CRITICAL: HA IP ${HAIP} is not up, machine is BACKUP. Should be MASTER."
|
||||
exit "${CRITICAL}"
|
||||
elif [ "${CHECK_HAIP}" == 1 ] && [ "${STAT}" == fail ]
|
||||
then
|
||||
echo "CRITICAL: HA IP ${HAIP} is up, but machine is BACKUP according to ${STAT_FILE}. Should be MASTER."
|
||||
exit "${CRITICAL}"
|
||||
else
|
||||
echo "OK: HA IP ${HAIP} is up and machine is MASTER."
|
||||
if [ "${STAT_SEC_IP}" == CRIT ]
|
||||
then
|
||||
exit "${CRITICAL}"
|
||||
else
|
||||
exit "${OK}"
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
elif [ "${TARGET_STATE}" = "${STATUS[1]}" ] # Machine is defined as BACKUP
|
||||
then
|
||||
case "${FILE_CONT}" in
|
||||
MASTER ) STAT=fail
|
||||
;;
|
||||
BACKUP ) STAT=ok
|
||||
;;
|
||||
FAULT ) echo "CRITICAL: Machine status is FAULT."
|
||||
exit "${CRITICAL}"
|
||||
;;
|
||||
* ) echo "CRITICAL: Status file contains unknown status or is empty."
|
||||
exit "${CRITICAL}"
|
||||
esac
|
||||
|
||||
if [ "${SEC_IP}" == "true" ] # 2nd ha instance
|
||||
then
|
||||
if [ "${CHECK_HAIP2}" == 1 ] && [ "${STAT}" == ok ]
|
||||
then
|
||||
echo "CRITICAL: 2nd HA IP ${HAIP2} is up but machine is BACKUP according to ${STAT_FILE}."
|
||||
STAT_SEC_IP=CRIT
|
||||
elif [ "${CHECK_HAIP2}" == 1 ] && [ "${STAT}" == fail ]
|
||||
then
|
||||
echo "WARNING: 2nd HA IP ${HAIP2} is up, machine is MASTER. Should be BACKUP."
|
||||
elif [ "${CHECK_HAIP2}" == 0 ] && [ "${STAT}" == fail ]
|
||||
then
|
||||
echo "CRITICAL: 2nd HA IP ${HAIP2} is not up but machine is MASTER according to ${STAT_FILE}. Should be BACKUP."
|
||||
else
|
||||
echo "OK: 2nd HA IP ${HAIP2} is not up and machine is BACKUP."
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "${CHECK_HAIP}" == 1 ] && [ "${STAT}" == ok ] # Target-actual comparison machine state; IP should be down
|
||||
then
|
||||
echo "CRITICAL: HA IP ${HAIP} is up but machine is BACKUP according to ${STAT_FILE}."
|
||||
exit "${CRITICAL}"
|
||||
elif [ "${CHECK_HAIP}" == 1 ] && [ "${STAT}" == fail ]
|
||||
then
|
||||
echo "WARNING: HA IP ${HAIP} is up, machine is MASTER. Should be BACKUP."
|
||||
exit "${WARNING}"
|
||||
elif [ "${CHECK_HAIP}" == 0 ] && [ "${STAT}" == fail ]
|
||||
then
|
||||
echo "CRITICAL: HA IP ${HAIP} is not up but machine is MASTER according to ${STAT_FILE}. Should be BACKUP."
|
||||
exit "${CRITICAL}"
|
||||
else
|
||||
echo "OK: HA IP ${HAIP} is not up and machine is BACKUP."
|
||||
if [ "${STAT_SEC_IP}" == CRIT ]
|
||||
then
|
||||
exit "${CRITICAL}"
|
||||
else
|
||||
exit "${OK}"
|
||||
fi
|
||||
fi
|
||||
|
||||
else
|
||||
echo "Unknown: Unknown status given. Check ${STAT_FILE} and script usage."
|
||||
exit "${UNKNOWN}"
|
||||
fi
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
Uploaders: Jan Wagner <waja@cyconet.org>
|
||||
Description: plugin checking keepalived status
|
||||
Recommends: procps
|
||||
Version: 0.0.1
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
Copyright (C) 2021 Stella Sieber / TMT GmbH & Co. KG
|
||||
|
||||
License: GPL+
|
||||
|
||||
On Debian systems, the complete text of the GNU General
|
||||
Public License can be found in "/usr/share/common-licenses/GPL".
|
||||
|
||||
|
|
@ -1,13 +1,11 @@
|
|||
# Nagios/Centron check | Nextcloud serverinfo
|
||||
# check_nextcloud
|
||||
|
||||
Nagios/Centreon plugin for nextcloud serverinfo API (https://github.com/nextcloud/serverinfo)
|
||||
|
||||
This branch contains the check for Python 3. A version for Python 2.7 can be found [here](https://github.com/BornToBeRoot/check_nextcloud/tree/stable-python2.7).
|
||||
|
||||
## Syntax / Help
|
||||
|
||||
```
|
||||
./check_nextcloud.py -u username -p password -H cloud.example.com -c [system|storage|shares|webserver|php|database|users|apps]
|
||||
./check_nextcloud.py -u username -p password -H cloud.example.com -c [system|storage|shares|webserver|php|database|users]
|
||||
|
||||
|
||||
Options:
|
||||
|
|
@ -18,14 +16,12 @@ Options:
|
|||
on the nextcloud server
|
||||
-p PASSWORD, --password=PASSWORD
|
||||
Password of the user
|
||||
-t TOKEN, --nc-token=TOKEN
|
||||
NC-Token for the Serverinfo API
|
||||
-H HOSTNAME, --hostname=HOSTNAME
|
||||
Nextcloud server address (make sure that the address
|
||||
is a trusted domain in the config.php)
|
||||
-c CHECK, --check=CHECK
|
||||
The thing you want to check
|
||||
[system|storage|shares|webserver|php|database|activeUsers|uploadFilesize|apps]
|
||||
[system|storage|shares|webserver|php|database|activeUsers|uploadFilesize]
|
||||
--upload-filesize Filesize in MiB, GiB without spaces (default="512.0GiB")
|
||||
--protocol=PROTOCOL Protocol you want to use [http|https]
|
||||
(default="https")
|
||||
|
|
@ -80,77 +76,3 @@ OK - Upload max filesize: 2.0GiB
|
|||
CRITICAL - Upload max filesize is set to 512.0MiB, but should be 2.0GiB
|
||||
|
||||
```
|
||||
|
||||
|
||||
|
||||
## Icinga config example
|
||||
|
||||
|
||||
Adjust the command path to your local situation.
|
||||
|
||||
```
|
||||
object CheckCommand "check_nextcloud" {
|
||||
command = [ "/var/lib/nagios/src/check_nextcloud/check/check_nextcloud.py" ]
|
||||
arguments = {
|
||||
"--nc-token" = {
|
||||
value = "$nextcloud_token$"
|
||||
description = "NC-Token for the Serverinfo API"
|
||||
}
|
||||
"--hostname" = {
|
||||
value = "$nextcloud_hostname$"
|
||||
description = "Hostname"
|
||||
}
|
||||
"--api-url" = {
|
||||
value = "$nextcloud_api_url$"
|
||||
set_if = "$nextcloud_api_url$"
|
||||
description = "Api-url"
|
||||
}
|
||||
"--check" = {
|
||||
value = "$nextcloud_check$"
|
||||
description = "Which check to run"
|
||||
}
|
||||
"--perfdata-format" = {
|
||||
value = "nagios"
|
||||
description = "The perfdata format we like"
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
```
|
||||
apply Service for (checkname in ["system","storage","shares","webserver","php","database","activeUsers","uploadFilesize","apps"]) {
|
||||
import "generic-service"
|
||||
name = "check-nextcloud-" + checkname
|
||||
check_interval = 30m
|
||||
retry_interval = 10m
|
||||
display_name = "Nextcloud monitor " + checkname
|
||||
vars.notification_interval = 1d
|
||||
|
||||
vars.nextcloud_check = checkname
|
||||
vars.nextcloud_hostname = host.vars.nextcloud_hostname
|
||||
vars.nextcloud_token = host.vars.nextcloud_token
|
||||
vars.nextcloud_api_url = host.vars.nextcloud_api_url
|
||||
vars.notification["mail"] = { }
|
||||
check_command = "check_nextcloud"
|
||||
|
||||
assign where (host.address || host.address6) && host.vars.nextcloud_token
|
||||
}
|
||||
```
|
||||
|
||||
```
|
||||
object Host "server42.example.com" {
|
||||
|
||||
display_name = "My Nextcloud server"
|
||||
address = "<IP>"
|
||||
|
||||
...
|
||||
|
||||
# The token can be set with: occ config:app:set serverinfo token --value yourtoken
|
||||
vars.nextcloud_token = "XXX"
|
||||
vars.nextcloud_hostname = "nextcloud.example.com"
|
||||
|
||||
# Optional if you e.g. use a subdirectory.
|
||||
vars.nextcloud_api_url = "/subdir/ocs/v2.php/apps/serverinfo/api/v1/info"
|
||||
}
|
||||
|
||||
```
|
||||
|
|
|
|||
|
|
@ -1,29 +1,23 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
###############################################################################################################
|
||||
# Language : Python 3
|
||||
# Language : Python (3.*)
|
||||
# Filename : check_nextcloud.py
|
||||
# Autor : https://github.com/BornToBeRoot
|
||||
# Description : Nagios/Centreon plugin for nextcloud serverinfo API (https://github.com/nextcloud/serverinfo)
|
||||
# Repository : https://github.com/BornToBeRoot/check_nextcloud
|
||||
###############################################################################################################
|
||||
|
||||
### Changelog ###
|
||||
#
|
||||
# ~~ Version 1.2 ~~
|
||||
# - Parameter "--ignore-sslcert" added. (Note: If you use an ip address as hostname... you need to add the ip
|
||||
# address as trusted domain in the config.php)
|
||||
# - Parameter "--perfdata-format" added [centreon|nagios] (default="centreon")
|
||||
# ~~ Version 1.3 ~~
|
||||
# - Check for app updates added (Thanks @thinkl33t)
|
||||
# ~~ Version 1.4 ~~
|
||||
# - Parameter "--nc-token" added (Thanks @sblatt)
|
||||
# ~~ Version 2.0 ~~
|
||||
# - Migrated from Python 2.7 to 3 (Thanks @waja)
|
||||
#
|
||||
#################
|
||||
### Changelog #################################################################################################
|
||||
# ~~ Version 2.0 ~~
|
||||
# - Update to Python 3.*
|
||||
# - Check: Theme
|
||||
# - [not implemented yet] Check: App + Updates available
|
||||
# - [not implemented yet] Check: Cache/Filelocking
|
||||
# - [not implemented yet] Open pull requests...
|
||||
###############################################################################################################
|
||||
|
||||
import urllib.request, urllib.error, urllib.parse, base64, xml.etree.ElementTree, sys, traceback, ssl, re
|
||||
import urllib.parse, urllib.request, urllib.response, base64, xml.etree.ElementTree, sys, traceback, re
|
||||
|
||||
# Some helper functions
|
||||
def calc_size_suffix(num, suffix='B'):
|
||||
|
|
@ -47,38 +41,35 @@ def calc_size_nagios(num, suffix='B'):
|
|||
# Command line parser
|
||||
from optparse import OptionParser
|
||||
|
||||
parser = OptionParser(usage='%prog -u username -p password -H cloud.example.com -c [system|storage|shares|webserver|php|database|activeUsers|uploadFilesize|apps]')
|
||||
parser = OptionParser(usage='%prog -u username -p password -H cloud.example.com -c [system|theme|storage|shares|webserver|php|database|activeUsers|uploadFilesize]')
|
||||
parser.add_option('-v', '--version', dest='version', default=False, action='store_true', help='Print the version of this script')
|
||||
parser.add_option('-u', '--username', dest='username', type='string', help='Username of the user with administrative permissions on the nextcloud server')
|
||||
parser.add_option('-p', '--password', dest='password', type='string', help='Password of the user')
|
||||
parser.add_option('-t', '--nc-token', dest='nc_token', type='string', help='Token to access the nextcloud serverinfo api. You can generate the token with "occ config:app:set serverinfo token --value yourtoken"; replaces username/password')
|
||||
parser.add_option('-H', '--hostname', dest='hostname', type='string', help='Nextcloud server address (make sure that the address is a trusted domain in the config.php)')
|
||||
parser.add_option('-c', '--check', dest='check', choices=['system','storage','shares','webserver','php','database','activeUsers','uploadFilesize','apps'], help='The thing you want to check [system|storage|shares|webserver|php|database|activeUsers|uploadFilesize|apps]')
|
||||
parser.add_option('--perfdata-format', dest='perfdata_format', default='centreon', choices=['centreon','nagios'], help='Format for the performance data [centreon|nagios] (default="centreon")')
|
||||
parser.add_option('--upload-filesize', dest='upload_filesize', default='512.0MiB', help='Filesize in MiB, GiB without spaces (default="512.0MiB")')
|
||||
parser.add_option('-c', '--check', dest='check', choices=['system','theme','storage','shares','webserver','php','database','activeUsers','uploadFilesize'], help='The thing you want to check [system|theme|storage|shares|webserver|php|database|activeUsers|uploadFilesize]')
|
||||
parser.add_option('--upload-filesize', dest='upload_filesize', default='512.0MiB', help='Filesize in MiB, GiB without spaces (default="512.0GiB")')
|
||||
parser.add_option('--protocol', dest='protocol', choices=['https', 'http'], default='https', help='Protocol you want to use [http|https] (default="https")')
|
||||
parser.add_option('--ignore-proxy', dest='ignore_proxy', default=False, action='store_true', help='Ignore any configured proxy server on this system for this request (default="false")')
|
||||
parser.add_option('--ignore-sslcert', dest='ignore_sslcert', default=False, action='store_true', help='Ignore ssl certificate (default="false")')
|
||||
parser.add_option('--api-url', dest='api_url', type='string', default='/ocs/v2.php/apps/serverinfo/api/v1/info?skipApps=false&skipUpdate=false', help='Url of the api (default="/ocs/v2.php/apps/serverinfo/api/v1/info?skipApps=false&skipUpdate=false")')
|
||||
parser.add_option('--ignore-proxy', dest='ignore_proxy', default=False, action='store_true', help='Ignore any configured proxy server on this system for this request')
|
||||
parser.add_option('--api-url', dest='api_url', type='string', default='/ocs/v2.php/apps/serverinfo/api/v1/info', help='Url of the api (default="/ocs/v2.php/apps/serverinfo/api/v1/info")')
|
||||
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
# Print the version of this script
|
||||
if options.version:
|
||||
print('Version 2.0')
|
||||
sys.exit(0)
|
||||
print('Version 2.0')
|
||||
sys.exit(0)
|
||||
|
||||
# Validate the user input...
|
||||
if not options.username and not options.password and not options.hostname and not options.check:
|
||||
parser.print_help()
|
||||
sys.exit(3)
|
||||
|
||||
if not options.username and not options.nc_token:
|
||||
parser.error('Username or nc-token is required, use parameter [-u|--username] or [--nc-token].')
|
||||
if not options.username:
|
||||
parser.error('Username is required, use parameter [-u|--username].')
|
||||
sys.exit(3)
|
||||
|
||||
if not options.password and not options.nc_token:
|
||||
parser.error('Password or nc-token is required, use parameter [-p|--password] or [--nc-token].')
|
||||
if not options.password:
|
||||
parser.error('Password is required, use parameter [-p|--password].')
|
||||
sys.exit(3)
|
||||
|
||||
if not options.hostname:
|
||||
|
|
@ -94,7 +85,7 @@ url_strip = re.compile(r"https?://")
|
|||
hostname = url_strip.sub('', options.hostname).split('/')[0]
|
||||
|
||||
# Re-validate the api_url
|
||||
if options.api_url.startswith('/'):
|
||||
if options.api_url.startswith('/'):
|
||||
api_url = options.api_url
|
||||
else:
|
||||
api_url = '/{0}'.format(options.api_url)
|
||||
|
|
@ -102,44 +93,22 @@ else:
|
|||
# Create the url to access the api
|
||||
url = '{0}://{1}{2}'.format(options.protocol, hostname, api_url)
|
||||
|
||||
# Encode credentials as base64
|
||||
# Create the request
|
||||
request = urllib.request.Request(url)
|
||||
|
||||
# Basic authentication...
|
||||
credential = base64.b64encode(bytes('%s:%s' % (options.username, options.password), 'ascii'))
|
||||
request.add_header("Authorization", "Basic %s" % credential.decode('utf-8'))
|
||||
|
||||
request.add_header('OCS-APIRequest', 'true')
|
||||
|
||||
try:
|
||||
# Create the request
|
||||
request = urllib.request.Request(url)
|
||||
|
||||
# Add the token header
|
||||
if options.nc_token:
|
||||
request.add_header('NC-Token',"%s" % options.nc_token)
|
||||
else:
|
||||
# Add the authentication and api request header
|
||||
request.add_header("Authorization", "Basic %s" % credential.decode('utf-8'))
|
||||
request.add_header('OCS-APIRequest','true')
|
||||
|
||||
# SSL/TLS certificate validation (see: https://stackoverflow.com/questions/19268548/python-ignore-certificate-validation-urllib2)
|
||||
ctx = ssl.create_default_context()
|
||||
|
||||
if(options.ignore_sslcert):
|
||||
ctx.check_hostname = False
|
||||
ctx.verify_mode = ssl.CERT_NONE
|
||||
|
||||
# Proxy handler
|
||||
if(options.ignore_proxy):
|
||||
proxy_handler = urllib.request.ProxyHandler({})
|
||||
ctx_handler = urllib.request.HTTPSHandler(context=ctx)
|
||||
opener = urllib.request.build_opener(proxy_handler, ctx_handler)
|
||||
|
||||
response = opener.open(request)
|
||||
else:
|
||||
response = urllib.request.urlopen(request, context=ctx)
|
||||
|
||||
# Read the content
|
||||
content = response.read()
|
||||
with urllib.request.urlopen(request) as response:
|
||||
content = response.read()
|
||||
|
||||
except urllib.error.HTTPError as error: # User is not authorized (401)
|
||||
print('UNKOWN - [WEBREQUEST] {0} {1}'.format(error.code, error.reason))
|
||||
sys.exit(3)
|
||||
print('UNKOWN - [WEBREQUEST] {0} {1}'.format(error.code, error.reason))
|
||||
sys.exit(3)
|
||||
|
||||
except urllib.error.URLError as error: # Connection has timed out (wrong url / server down)
|
||||
print('UNKOWN - [WEBREQUEST] {0}'.format(str(error.reason).split(']')[0].strip()))
|
||||
|
|
@ -170,24 +139,25 @@ except AttributeError:
|
|||
print('UNKOWN - [XML] Content contains no or wrong xml data... check the url and if the api is reachable!')
|
||||
sys.exit(3)
|
||||
|
||||
# Performance data format
|
||||
perfdata_format = "" # nagios
|
||||
|
||||
if(options.perfdata_format == 'centreon'): # centreon
|
||||
perfdata_format = ","
|
||||
|
||||
# Get the nextcloud version...
|
||||
# [output]
|
||||
# Get the nextcloud version... other informations about the system like RAM/CPU/DISK are nagios/centreon own checks - so we don't need them here...
|
||||
if options.check == 'system':
|
||||
xml_system = xml_root.find('data').find('nextcloud').find('system')
|
||||
|
||||
xml_system_version = str(xml_system.find('version').text)
|
||||
xml_system_version = str(xml_system.find('version').text)
|
||||
|
||||
print('OK - Nextcloud version: {0}'.format(xml_system_version))
|
||||
sys.exit(0)
|
||||
|
||||
# Get the nextcloud theme
|
||||
if options.check == 'theme':
|
||||
xml_system = xml_root.find('data').find('nextcloud').find('system')
|
||||
|
||||
xml_system_theme = str(xml_system.find('theme').text)
|
||||
|
||||
print('OK - Nextcloud theme: {0}'.format(xml_system_theme))
|
||||
sys.exit(0)
|
||||
|
||||
# Get informations about the storage
|
||||
# [output + performance data]
|
||||
if options.check == 'storage':
|
||||
xml_storage = xml_root.find('data').find('nextcloud').find('storage')
|
||||
|
||||
|
|
@ -198,11 +168,10 @@ if options.check == 'storage':
|
|||
xml_storage_storages_home = int(xml_storage.find('num_storages_home').text)
|
||||
xml_storage_storages_other = int(xml_storage.find('num_storages_other').text)
|
||||
|
||||
print('OK - Users: {1}, files: {2}, storages: {3}, storages local: {4}, storages home: {5}, storages other: {6} | users={1}{0} files={2}{0} storages={3}{0} storages_local={4}{0} storages_home={5}{0} storage_other={6}'.format(perfdata_format, xml_storage_users, xml_storage_files, xml_storage_storages, xml_storage_storages_local, xml_storage_storages_home, xml_storage_storages_other))
|
||||
print('OK - Users: {0}, files: {1}, storages: {2}, storages local: {3}, storages home: {4}, storages other: {5} | users={0}, files={1}, storages={2}, storages_local={3}, storages_home={4}, storage_other={5}'.format(xml_storage_users, xml_storage_files, xml_storage_storages, xml_storage_storages_local, xml_storage_storages_home, xml_storage_storages_other))
|
||||
sys.exit(0)
|
||||
|
||||
# Get informations about the shares
|
||||
# [output + performance data]
|
||||
if options.check == 'shares':
|
||||
xml_shares = xml_root.find('data').find('nextcloud').find('shares')
|
||||
|
||||
|
|
@ -214,11 +183,10 @@ if options.check == 'shares':
|
|||
xml_shares_fed_shares_sent = int(xml_shares.find('num_fed_shares_sent').text)
|
||||
xml_shares_fed_shares_received = int(xml_shares.find('num_fed_shares_received').text)
|
||||
|
||||
print('OK - Shares: {1}, shares user: {2}, shares groups: {3}, shares link: {4}, shares link no password: {5}, shares federation sent: {6}, shares federation received: {7} | shares={1}{0} shares_user={2}{0} shares_groups={3}{0} shares_link={4}{0} shares_link_no_password={5}{0} federation_shares_sent={6}{0} federation_shares_received={7}'.format(perfdata_format, xml_shares_shares, xml_shares_shares_user, xml_shares_shares_groups, xml_shares_shares_link, xml_shares_shares_link_no_password, xml_shares_fed_shares_sent, xml_shares_fed_shares_received))
|
||||
print('OK - Shares: {0}, shares user: {1}, shares groups: {2}, shares link: {3}, shares link no password: {4}, shares federation sent: {5}, shares federation received: {6} | shares={0}, shares_user={1}, shares_groups={2}, shares_link={3}, shares_link_no_password={4}, federation_shares_sent={5}, federation_shares_received={6}'.format(xml_shares_shares, xml_shares_shares_user, xml_shares_shares_groups, xml_shares_shares_link, xml_shares_shares_link_no_password, xml_shares_fed_shares_sent, xml_shares_fed_shares_received))
|
||||
sys.exit(0)
|
||||
|
||||
# Get informations about the webserver
|
||||
# [output]
|
||||
if options.check == 'webserver':
|
||||
xml_webserver = str(xml_root.find('data').find('server').find('webserver').text)
|
||||
|
||||
|
|
@ -226,7 +194,6 @@ if options.check == 'webserver':
|
|||
sys.exit(0)
|
||||
|
||||
# Get informations about php
|
||||
# [output]
|
||||
if options.check == 'php':
|
||||
xml_php = xml_root.find('data').find('server').find('php')
|
||||
|
||||
|
|
@ -239,7 +206,6 @@ if options.check == 'php':
|
|||
sys.exit(0)
|
||||
|
||||
# Get informations about the database
|
||||
# [output + performance data]
|
||||
if options.check == 'database':
|
||||
xml_database = xml_root.find('data').find('server').find('database')
|
||||
|
||||
|
|
@ -251,7 +217,6 @@ if options.check == 'database':
|
|||
sys.exit(0)
|
||||
|
||||
# Check the active users
|
||||
# [output + performance data]
|
||||
if options.check == 'activeUsers':
|
||||
xml_activeUsers = xml_root.find('data').find('activeUsers')
|
||||
|
||||
|
|
@ -259,12 +224,12 @@ if options.check == 'activeUsers':
|
|||
xml_activeUsers_last1hour = int(xml_activeUsers.find('last1hour').text)
|
||||
xml_activeUsers_last24hours = int(xml_activeUsers.find('last24hours').text)
|
||||
|
||||
print('OK - Last 5 minutes: {1} user(s), last 1 hour: {2} user(s), last 24 hour: {3} user(s) | users_last_5_minutes={1}{0} users_last_1_hour={2}{0} users_last_24_hours={3}'.format(perfdata_format, xml_activeUsers_last5minutes, xml_activeUsers_last1hour, xml_activeUsers_last24hours))
|
||||
print('OK - Last 5 minutes: {0} user(s), last 1 hour: {1} user(s), last 24 hour: {2} user(s) | users_last_5_minutes={0}, users_last_1_hour={1}, users_last_24_hours={2}'.format(xml_activeUsers_last5minutes, xml_activeUsers_last1hour, xml_activeUsers_last24hours))
|
||||
sys.exit(0)
|
||||
|
||||
if options.check == 'uploadFilesize':
|
||||
xml_php = xml_root.find('data').find('server').find('php')
|
||||
|
||||
|
||||
# Get upload max filesize
|
||||
xml_php_upload_max_filesize = int(xml_php.find('upload_max_filesize').text)
|
||||
|
||||
|
|
@ -273,28 +238,7 @@ if options.check == 'uploadFilesize':
|
|||
|
||||
if options.upload_filesize == upload_max_filesize:
|
||||
print('OK - Upload max filesize: {0}'.format(upload_max_filesize))
|
||||
sys.exit(0)
|
||||
sys.exit(0)
|
||||
else:
|
||||
print('CRITICAL - Upload max filesize is set to {0}, but should be {1}'.format(upload_max_filesize, options.upload_filesize))
|
||||
sys.exit(2)
|
||||
|
||||
# Get informations about any app updates
|
||||
# [output]
|
||||
if options.check == 'apps':
|
||||
xml_apps = xml_root.find('data').find('nextcloud').find('system').find('apps')
|
||||
|
||||
if xml_apps is not None:
|
||||
xml_apps_num_updates_available = int(xml_apps.find('num_updates_available').text)
|
||||
else:
|
||||
xml_apps_num_updates_available = 0
|
||||
|
||||
if xml_apps_num_updates_available == 0:
|
||||
print('OK - No apps requiring update')
|
||||
sys.exit(0)
|
||||
else:
|
||||
xml_apps_updates = xml_apps.find('app_updates')
|
||||
xml_apps_list = []
|
||||
for app in xml_apps_updates:
|
||||
xml_apps_list.append('{0}->{1}'.format(app.tag, app.text))
|
||||
print('WARNING - {0} apps require update: {1}'.format(xml_apps_num_updates_available, ' ,'.join(xml_apps_list)))
|
||||
sys.exit(1)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Uploaders: Jan Wagner <waja@cyconet.org>
|
||||
Recommends: python3-minimal
|
||||
Version: 2.0
|
||||
Version: b7e5755
|
||||
Homepage: https://github.com/BornToBeRoot/check_nextcloud
|
||||
Watch: https://raw.githubusercontent.com/BornToBeRoot/check_nextcloud/master/check/check_nextcloud.py # ~~ Version ([0-9.]+) ~~
|
||||
Watch: https://github.com/BornToBeRoot/check_nextcloud <a class="commit-tease-sha"[^>]*>\s+([0-9a-f]+)\s+</a>
|
||||
Description: Plugin script to monitor your nextcloud serverinfo API
|
||||
|
|
|
|||
|
|
@ -1,101 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::ADONISDNSMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'ADONIS-DNS-MIB'} = {
|
||||
url => '',
|
||||
name => 'ADONIS-DNS-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'ADONIS-DNS-MIB'} =
|
||||
'1.3.6.1.4.1.13315.100.101';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'ADONIS-DNS-MIB'} = {
|
||||
'adonis' => '1.3.6.1.4.1.13315.100.101',
|
||||
'adonisObjects' => '1.3.6.1.4.1.13315.100.101.1',
|
||||
'dns' => '1.3.6.1.4.1.13315.100.101.1.1',
|
||||
'dnsDaemon' => '1.3.6.1.4.1.13315.100.101.1.1.1',
|
||||
'dnsDaemonRunning' => '1.3.6.1.4.1.13315.100.101.1.1.1.1',
|
||||
'dnsDaemonNumberOfZones' => '1.3.6.1.4.1.13315.100.101.1.1.1.2',
|
||||
'dnsDaemonDebugLevel' => '1.3.6.1.4.1.13315.100.101.1.1.1.3',
|
||||
'dnsDaemonZoneTransfersInProgress' => '1.3.6.1.4.1.13315.100.101.1.1.1.4',
|
||||
'dnsDaemonZoneTransfersDeferred' => '1.3.6.1.4.1.13315.100.101.1.1.1.5',
|
||||
'dnsDaemonSOAQueriesInProgress' => '1.3.6.1.4.1.13315.100.101.1.1.1.6',
|
||||
'dnsDaemonQueryLoggingState' => '1.3.6.1.4.1.13315.100.101.1.1.1.7',
|
||||
'dnsDaemonZoneTransferFailure' => '1.3.6.1.4.1.13315.100.101.1.1.1.8',
|
||||
'dnsStats' => '1.3.6.1.4.1.13315.100.101.1.1.2',
|
||||
'dnsStatsSuccess' => '1.3.6.1.4.1.13315.100.101.1.1.2.1',
|
||||
'dnsStatsReferral' => '1.3.6.1.4.1.13315.100.101.1.1.2.2',
|
||||
'dnsStatsNXRRSet' => '1.3.6.1.4.1.13315.100.101.1.1.2.3',
|
||||
'dnsStatsNXDomain' => '1.3.6.1.4.1.13315.100.101.1.1.2.4',
|
||||
'dnsStatsRecursion' => '1.3.6.1.4.1.13315.100.101.1.1.2.5',
|
||||
'dnsStatsFailure' => '1.3.6.1.4.1.13315.100.101.1.1.2.6',
|
||||
'dhcp' => '1.3.6.1.4.1.13315.100.101.1.2',
|
||||
'dhcpDaemon' => '1.3.6.1.4.1.13315.100.101.1.2.1',
|
||||
'dhcpDaemonRunning' => '1.3.6.1.4.1.13315.100.101.1.2.1.1',
|
||||
'dhcpDaemonSubnetAlert' => '1.3.6.1.4.1.13315.100.101.1.2.1.2',
|
||||
'dhcpDaemonLeaseStatsSuccess' => '1.3.6.1.4.1.13315.100.101.1.2.1.3',
|
||||
'dhcpFailOverState' => '1.3.6.1.4.1.13315.100.101.1.2.1.4',
|
||||
'dhcpStats' => '1.3.6.1.4.1.13315.100.101.1.2.2',
|
||||
'dhcpLeaseTable' => '1.3.6.1.4.1.13315.100.101.1.2.2.1',
|
||||
'dhcpLeaseEntry' => '1.3.6.1.4.1.13315.100.101.1.2.2.1.1',
|
||||
'dhcpIP' => '1.3.6.1.4.1.13315.100.101.1.2.2.1.1.1',
|
||||
'dhcpLeaseStartTime' => '1.3.6.1.4.1.13315.100.101.1.2.2.1.1.2',
|
||||
'dhcpLeaseEndTime' => '1.3.6.1.4.1.13315.100.101.1.2.2.1.1.3',
|
||||
'dhcpLeaseTimeStamp' => '1.3.6.1.4.1.13315.100.101.1.2.2.1.1.4',
|
||||
'dhcpLeaseBindState' => '1.3.6.1.4.1.13315.100.101.1.2.2.1.1.5',
|
||||
'dhcpLeaseBindStateDefinition' => 'ADONIS-DNS-MIB::dhcpLeaseBindState',
|
||||
'dhcpLeaseHardwareAddress' => '1.3.6.1.4.1.13315.100.101.1.2.2.1.1.6',
|
||||
'dhcpLeaseHostname' => '1.3.6.1.4.1.13315.100.101.1.2.2.1.1.7',
|
||||
'dhcpSubnetTable' => '1.3.6.1.4.1.13315.100.101.1.2.2.2',
|
||||
'dhcpSubnetEntry' => '1.3.6.1.4.1.13315.100.101.1.2.2.2.1',
|
||||
'dhcpSubnetIP' => '1.3.6.1.4.1.13315.100.101.1.2.2.2.1.1',
|
||||
'dhcpSubnetMask' => '1.3.6.1.4.1.13315.100.101.1.2.2.2.1.2',
|
||||
'dhcpSubnetSize' => '1.3.6.1.4.1.13315.100.101.1.2.2.2.1.3',
|
||||
'dhcpSubnetUsed' => '1.3.6.1.4.1.13315.100.101.1.2.2.2.1.4',
|
||||
'dhcpSubnetAlert' => '1.3.6.1.4.1.13315.100.101.1.2.2.2.1.5',
|
||||
'dhcpPoolTable' => '1.3.6.1.4.1.13315.100.101.1.2.2.3',
|
||||
'dhcpPoolEntry' => '1.3.6.1.4.1.13315.100.101.1.2.2.3.1',
|
||||
'dhcpPoolSubnetIP' => '1.3.6.1.4.1.13315.100.101.1.2.2.3.1.1',
|
||||
'dhcpPoolStartIP' => '1.3.6.1.4.1.13315.100.101.1.2.2.3.1.2',
|
||||
'dhcpPoolEndIP' => '1.3.6.1.4.1.13315.100.101.1.2.2.3.1.3',
|
||||
'dhcpPoolSize' => '1.3.6.1.4.1.13315.100.101.1.2.2.3.1.4',
|
||||
'dhcpPoolUsed' => '1.3.6.1.4.1.13315.100.101.1.2.2.3.1.5',
|
||||
'dhcpPoolAlert' => '1.3.6.1.4.1.13315.100.101.1.2.2.3.1.6',
|
||||
'dhcpConfig' => '1.3.6.1.4.1.13315.100.101.1.2.3',
|
||||
'dhcpFixedIPTable' => '1.3.6.1.4.1.13315.100.101.1.2.3.1',
|
||||
'dhcpFixedIPEntry' => '1.3.6.1.4.1.13315.100.101.1.2.3.1.1',
|
||||
'dhcpFixedIP' => '1.3.6.1.4.1.13315.100.101.1.2.3.1.1.1',
|
||||
'ha' => '1.3.6.1.4.1.13315.100.101.1.3',
|
||||
'haService' => '1.3.6.1.4.1.13315.100.101.1.3.1',
|
||||
'haServiceRunning' => '1.3.6.1.4.1.13315.100.101.1.3.1.1',
|
||||
'haServiceNodeType' => '1.3.6.1.4.1.13315.100.101.1.3.1.2',
|
||||
'haReplicationBinding' => '1.3.6.1.4.1.13315.100.101.1.3.1.3',
|
||||
'commandServer' => '1.3.6.1.4.1.13315.100.101.1.4',
|
||||
'commandServerDaemon' => '1.3.6.1.4.1.13315.100.101.1.4.1',
|
||||
'commandServerDaemonRunning' => '1.3.6.1.4.1.13315.100.101.1.4.1.1',
|
||||
'lcd' => '1.3.6.1.4.1.13315.100.101.1.5',
|
||||
'lcdDaemon' => '1.3.6.1.4.1.13315.100.101.1.5.1',
|
||||
'licenseValid' => '1.3.6.1.4.1.13315.100.101.1.5.1.1',
|
||||
'licenseExpiry' => '1.3.6.1.4.1.13315.100.101.1.5.1.2',
|
||||
'tftp' => '1.3.6.1.4.1.13315.100.101.1.6',
|
||||
'tftpDaemon' => '1.3.6.1.4.1.13315.100.101.1.6.1',
|
||||
'tftpDaemonRunning' => '1.3.6.1.4.1.13315.100.101.1.6.1.1',
|
||||
'system' => '1.3.6.1.4.1.13315.100.101.1.7',
|
||||
'systemDaemon' => '1.3.6.1.4.1.13315.100.101.1.7.1',
|
||||
'systemState' => '1.3.6.1.4.1.13315.100.101.1.7.1.1',
|
||||
'adonisTraps' => '1.3.6.1.4.1.13315.100.101.2',
|
||||
'trapDNS' => '1.3.6.1.4.1.13315.100.101.2.1',
|
||||
'trapHA' => '1.3.6.1.4.1.13315.100.101.2.2',
|
||||
'trapCommandServer' => '1.3.6.1.4.1.13315.100.101.2.3',
|
||||
'trapDHCP' => '1.3.6.1.4.1.13315.100.101.2.4',
|
||||
'trapReplication' => '1.3.6.1.4.1.13315.100.101.2.5',
|
||||
'trapTFTP' => '1.3.6.1.4.1.13315.100.101.2.6',
|
||||
'trapSystem' => '1.3.6.1.4.1.13315.100.101.2.7',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'ADONIS-DNS-MIB'} = {
|
||||
'dhcpLeaseBindState' => {
|
||||
'0' => 'free',
|
||||
'1' => 'active',
|
||||
'2' => 'fixed',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,47 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::ARISTAIFMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'ARISTA-IF-MIB'} = {
|
||||
url => '',
|
||||
name => 'ARISTA-IF-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'ARISTA-IF-MIB'} =
|
||||
'1.3.6.1.4.1.30065.3.15';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'ARISTA-IF-MIB'} = {
|
||||
'aristaIfMIB' => '1.3.6.1.4.1.30065.3.15',
|
||||
'aristaIf' => '1.3.6.1.4.1.30065.3.15.1',
|
||||
'aristaIfTable' => '1.3.6.1.4.1.30065.3.15.1.1',
|
||||
'aristaIfEntry' => '1.3.6.1.4.1.30065.3.15.1.1.1',
|
||||
'aristaIfCounterLastUpdated' => '1.3.6.1.4.1.30065.3.15.1.1.1.1',
|
||||
#'aristaIfCounterLastUpdatedDefinition' => 'SNMPv2-SMI::TimeTicks',
|
||||
'aristaIfRateInterval' => '1.3.6.1.4.1.30065.3.15.1.1.1.2',
|
||||
#'aristaIfRateIntervalDefinition' => 'SNMPv2-SMI::TimeTicks',
|
||||
'aristaIfInPktRate' => '1.3.6.1.4.1.30065.3.15.1.1.1.3',
|
||||
#'aristaIfInPktRateDefinition' => 'SNMPv2-SMI::Gauge32',
|
||||
'aristaIfOutPktRate' => '1.3.6.1.4.1.30065.3.15.1.1.1.4',
|
||||
#'aristaIfOutPktRateDefinition' => 'SNMPv2-SMI::Gauge32',
|
||||
'aristaIfInOctetRate' => '1.3.6.1.4.1.30065.3.15.1.1.1.5',
|
||||
#'aristaIfInOctetRateDefinition' => 'HCNUM-TC::CounterBasedGauge64',
|
||||
'aristaIfOutOctetRate' => '1.3.6.1.4.1.30065.3.15.1.1.1.6',
|
||||
#'aristaIfOutOctetRateDefinition' => 'HCNUM-TC::CounterBasedGauge64',
|
||||
'aristaIfRatesLastUpdated' => '1.3.6.1.4.1.30065.3.15.1.1.1.7',
|
||||
#'aristaIfRatesLastUpdatedDefinition' => 'SNMPv2-SMI::TimeTicks',
|
||||
'aristaIfOperStatusChanges' => '1.3.6.1.4.1.30065.3.15.1.1.1.8',
|
||||
#'aristaIfOperStatusChangesDefinition' => 'SNMPv2-SMI::Counter32',
|
||||
'aristaIfInAclDrops' => '1.3.6.1.4.1.30065.3.15.1.1.1.9',
|
||||
#'aristaIfInAclDropsDefinition' => 'SNMPv2-SMI::Counter32',
|
||||
'aristaIfErrDisabledReason' => '1.3.6.1.4.1.30065.3.15.1.1.1.10',
|
||||
'aristaIfDot1xEapolPortDrops' => '1.3.6.1.4.1.30065.3.15.1.1.1.11',
|
||||
#'aristaIfDot1xEapolPortDropsDefinition' => 'SNMPv2-SMI::Counter32',
|
||||
'aristaIfDot1xEapolHostDrops' => '1.3.6.1.4.1.30065.3.15.1.1.1.12',
|
||||
#'aristaIfDot1xEapolHostDropsDefinition' => 'SNMPv2-SMI::Counter32',
|
||||
'aristaIfDot1xMbaHostDrops' => '1.3.6.1.4.1.30065.3.15.1.1.1.13',
|
||||
#'aristaIfDot1xMbaHostDropsDefinition' => 'SNMPv2-SMI::Counter32',
|
||||
'aristaIfConformance' => '1.3.6.1.4.1.30065.3.15.2',
|
||||
'aristaIfGroups' => '1.3.6.1.4.1.30065.3.15.2.1',
|
||||
'aristaIfCompliances' => '1.3.6.1.4.1.30065.3.15.2.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'ARISTA-IF-MIB'} = {
|
||||
};
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::ARUBAWIREDCHASSISMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'ARUBAWIRED-CHASSIS-MIB'} = {
|
||||
url => '',
|
||||
name => 'ARUBAWIRED-CHASSIS-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'ARUBAWIRED-CHASSIS-MIB'} =
|
||||
'1.3.6.1.4.1.47196.4.1.1.3.11';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'ARUBAWIRED-CHASSIS-MIB'} = {
|
||||
'arubaWiredChassisMIB' => '1.3.6.1.4.1.47196.4.1.1.3.11',
|
||||
'arubaWiredPowerSupply' => '1.3.6.1.4.1.47196.4.1.1.3.11.2',
|
||||
'arubaWiredTempSensor' => '1.3.6.1.4.1.47196.4.1.1.3.11.3',
|
||||
'arubaWiredFanTray' => '1.3.6.1.4.1.47196.4.1.1.3.11.4',
|
||||
'arubaWiredFan' => '1.3.6.1.4.1.47196.4.1.1.3.11.5',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'ARUBAWIRED-CHASSIS-MIB'} = {
|
||||
};
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::ARUBAWIREDFANMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'ARUBAWIRED-FAN-MIB'} = {
|
||||
url => '',
|
||||
name => 'ARUBAWIRED-FAN-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'ARUBAWIRED-FAN-MIB'} =
|
||||
'1.3.6.1.4.1.47196.4.1.1.3.11.5';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'ARUBAWIRED-FAN-MIB'} = {
|
||||
'arubaWiredFan' => '1.3.6.1.4.1.47196.4.1.1.3.11.5',
|
||||
'arubaWiredFanNotifications' => '1.3.6.1.4.1.47196.4.1.1.3.11.5.0',
|
||||
'arubaWiredFanTable' => '1.3.6.1.4.1.47196.4.1.1.3.11.5.1',
|
||||
'arubaWiredFanEntry' => '1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1',
|
||||
'arubaWiredFanGroupIndex' => '1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.1',
|
||||
'arubaWiredFanTrayIndex' => '1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.2',
|
||||
'arubaWiredFanSlotIndex' => '1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.3',
|
||||
'arubaWiredFanName' => '1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.4',
|
||||
'arubaWiredFanState' => '1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.5',
|
||||
'arubaWiredFanProductName' => '1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.6',
|
||||
'arubaWiredFanSerialNumber' => '1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.7',
|
||||
'arubaWiredFanRPM' => '1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.8',
|
||||
'arubaWiredFanAirflowDirection' => '1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.9',
|
||||
'arubaWiredFanConformance' => '1.3.6.1.4.1.47196.4.1.1.3.11.5.99',
|
||||
'arubaWiredFanCompliances' => '1.3.6.1.4.1.47196.4.1.1.3.11.5.99.1',
|
||||
'arubaWiredFanGroups' => '1.3.6.1.4.1.47196.4.1.1.3.11.5.99.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'ARUBAWIRED-FAN-MIB'} = {
|
||||
};
|
||||
|
|
@ -1,29 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::ARUBAWIREDFANTRAYMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'ARUBAWIRED-FANTRAY-MIB'} = {
|
||||
url => '',
|
||||
name => 'ARUBAWIRED-FANTRAY-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'ARUBAWIRED-FANTRAY-MIB'} =
|
||||
'1.3.6.1.4.1.47196.4.1.1.3.11.4';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'ARUBAWIRED-FANTRAY-MIB'} = {
|
||||
'arubaWiredFanTray' => '1.3.6.1.4.1.47196.4.1.1.3.11.4',
|
||||
'arubaWiredFanTrayNotifications' => '1.3.6.1.4.1.47196.4.1.1.3.11.4.0',
|
||||
'arubaWiredFanTrayTable' => '1.3.6.1.4.1.47196.4.1.1.3.11.4.1',
|
||||
'arubaWiredFanTrayEntry' => '1.3.6.1.4.1.47196.4.1.1.3.11.4.1.1',
|
||||
'arubaWiredFanTrayGroupIndex' => '1.3.6.1.4.1.47196.4.1.1.3.11.4.1.1.1',
|
||||
'arubaWiredFanTraySlotIndex' => '1.3.6.1.4.1.47196.4.1.1.3.11.4.1.1.2',
|
||||
'arubaWiredFanTrayName' => '1.3.6.1.4.1.47196.4.1.1.3.11.4.1.1.3',
|
||||
'arubaWiredFanTrayState' => '1.3.6.1.4.1.47196.4.1.1.3.11.4.1.1.4',
|
||||
'arubaWiredFanTrayProductName' => '1.3.6.1.4.1.47196.4.1.1.3.11.4.1.1.5',
|
||||
'arubaWiredFanTraySerialNumber' => '1.3.6.1.4.1.47196.4.1.1.3.11.4.1.1.6',
|
||||
'arubaWiredFanTrayNumberFans' => '1.3.6.1.4.1.47196.4.1.1.3.11.4.1.1.7',
|
||||
'arubaWiredFanTrayConformance' => '1.3.6.1.4.1.47196.4.1.1.3.11.4.99',
|
||||
'arubaWiredFanTrayCompliances' => '1.3.6.1.4.1.47196.4.1.1.3.11.4.99.1',
|
||||
'arubaWiredFanTrayGroups' => '1.3.6.1.4.1.47196.4.1.1.3.11.4.99.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'ARUBAWIRED-FANTRAY-MIB'} = {
|
||||
};
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::ARUBAWIREDPOWERSUPPLYMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'ARUBAWIRED-POWERSUPPLY-MIB'} = {
|
||||
url => '',
|
||||
name => 'ARUBAWIRED-POWERSUPPLY-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'ARUBAWIRED-POWERSUPPLY-MIB'} =
|
||||
'1.3.6.1.4.1.47196.4.1.1.3.11.2';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'ARUBAWIRED-POWERSUPPLY-MIB'} = {
|
||||
'arubaWiredPowerSupply' => '1.3.6.1.4.1.47196.4.1.1.3.11.2',
|
||||
'arubaWiredPSUNotifications' => '1.3.6.1.4.1.47196.4.1.1.3.11.2.0',
|
||||
'arubaWiredPowerSupplyTable' => '1.3.6.1.4.1.47196.4.1.1.3.11.2.1',
|
||||
'arubaWiredPowerSupplyEntry' => '1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1',
|
||||
'arubaWiredPSUGroupIndex' => '1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.1',
|
||||
'arubaWiredPSUSlotIndex' => '1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.2',
|
||||
'arubaWiredPSUName' => '1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.3',
|
||||
'arubaWiredPSUState' => '1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.4',
|
||||
'arubaWiredPSUProductName' => '1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.5',
|
||||
'arubaWiredPSUSerialNumber' => '1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.6',
|
||||
'arubaWiredPSUInstantaneousPower' => '1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.7',
|
||||
'arubaWiredPSUMaximumPower' => '1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.8',
|
||||
'arubaWiredPSUNumberFailures' => '1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.9',
|
||||
'arubaWiredPSUAirflowDirection' => '1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.10',
|
||||
'arubaWiredPowerSupplyConformance' => '1.3.6.1.4.1.47196.4.1.1.3.11.2.99',
|
||||
'arubaWiredPowerSupplyCompliances' => '1.3.6.1.4.1.47196.4.1.1.3.11.2.99.1',
|
||||
'arubaWiredPowerSupplyGroups' => '1.3.6.1.4.1.47196.4.1.1.3.11.2.99.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'ARUBAWIRED-POWERSUPPLY-MIB'} = {
|
||||
};
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::ARUBAWIREDTEMPSENSORMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'ARUBAWIRED-TEMPSENSOR-MIB'} = {
|
||||
url => '',
|
||||
name => 'ARUBAWIRED-TEMPSENSOR-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'ARUBAWIRED-TEMPSENSOR-MIB'} =
|
||||
'1.3.6.1.4.1.47196.4.1.1.3.11.3';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'ARUBAWIRED-TEMPSENSOR-MIB'} = {
|
||||
'arubaWiredTempSensor' => '1.3.6.1.4.1.47196.4.1.1.3.11.3',
|
||||
'arubaWiredTempSensorNotifications' => '1.3.6.1.4.1.47196.4.1.1.3.11.3.0',
|
||||
'arubaWiredTempSensorTable' => '1.3.6.1.4.1.47196.4.1.1.3.11.3.1',
|
||||
'arubaWiredTempSensorEntry' => '1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1',
|
||||
'arubaWiredTempSensorGroupIndex' => '1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.1',
|
||||
'arubaWiredTempSensorSlotTypeIndex' => '1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.2',
|
||||
'arubaWiredTempSensorSlotIndex' => '1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.3',
|
||||
'arubaWiredTempSensorIndex' => '1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.4',
|
||||
'arubaWiredTempSensorName' => '1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.5',
|
||||
'arubaWiredTempSensorState' => '1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.6',
|
||||
'arubaWiredTempSensorTemperature' => '1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.7',
|
||||
'arubaWiredTempSensorMinTemp' => '1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.8',
|
||||
'arubaWiredTempSensorMaxTemp' => '1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.9',
|
||||
'arubaWiredTempSensorConformance' => '1.3.6.1.4.1.47196.4.1.1.3.11.3.99',
|
||||
'arubaWiredTempSensorCompliances' => '1.3.6.1.4.1.47196.4.1.1.3.11.3.99.1',
|
||||
'arubaWiredTempSensorGroups' => '1.3.6.1.4.1.47196.4.1.1.3.11.3.99.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'ARUBAWIRED-TEMPSENSOR-MIB'} = {
|
||||
};
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::ARUBAWIREDVSFMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'ARUBAWIRED-VSF-MIB'} = {
|
||||
url => '',
|
||||
name => 'ARUBAWIRED-VSF-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'ARUBAWIRED-VSF-MIB'} =
|
||||
'1.3.6.1.4.1.47196.4.1.1.3.10';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'ARUBAWIRED-VSF-MIB'} = {
|
||||
'arubaWiredVsfMIB' => '1.3.6.1.4.1.47196.4.1.1.3.10',
|
||||
'arubaWiredVsfObjects' => '1.3.6.1.4.1.47196.4.1.1.3.10.0',
|
||||
'arubaWiredVsfConfig' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.1',
|
||||
'arubaWiredVsfTrapEnable' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.1.1',
|
||||
'arubaWiredVsfOobmMADEnable' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.1.2',
|
||||
'arubaWiredVsfOobmMADEnableDefinition' => 'ARUBAWIRED-VSF-MIB::arubaWiredVsfOobmMADEnable',
|
||||
'arubaWiredVsfStatus' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.2',
|
||||
'arubaWiredVsfOperStatus' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.2.1',
|
||||
'arubaWiredVsfTopology' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.2.2',
|
||||
'arubaWiredVsfMemberTable' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.3',
|
||||
'arubaWiredVsfMemberEntry' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.3.1',
|
||||
'arubaWiredVsfMemberIndex' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.3.1.1',
|
||||
'arubaWiredVsfMemberRole' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.3.1.2',
|
||||
'arubaWiredVsfMemberStatus' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.3.1.3',
|
||||
'arubaWiredVsfMemberPartNumber' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.3.1.4',
|
||||
'arubaWiredVsfMemberMacAddr' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.3.1.5',
|
||||
'arubaWiredVsfMemberProductName' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.3.1.6',
|
||||
'arubaWiredVsfMemberSerialNum' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.3.1.7',
|
||||
'arubaWiredVsfMemberBootImage' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.3.1.8',
|
||||
'arubaWiredVsfMemberCpuUtil' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.3.1.9',
|
||||
'arubaWiredVsfMemberMemoryUtil' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.3.1.10',
|
||||
'arubaWiredVsfMemberBootTime' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.3.1.11',
|
||||
'arubaWiredVsfMemberBootRomVersion' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.3.1.12',
|
||||
'arubaWiredVsfMemberTotalMemory' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.3.1.13',
|
||||
'arubaWiredVsfMemberCurrentUsage' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.3.1.14',
|
||||
'arubaWiredVsfLinkTable' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.4',
|
||||
'arubaWiredVsfLinkEntry' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.4.1',
|
||||
'arubaWiredVsfLinkMemberId' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.4.1.1',
|
||||
'arubaWiredVsfLinkId' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.4.1.2',
|
||||
'arubaWiredVsfLinkOperStatus' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.4.1.3',
|
||||
'arubaWiredVsfLinkPeerMemberId' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.4.1.4',
|
||||
'arubaWiredVsfLinkPeerLinkId' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.4.1.5',
|
||||
'arubaWiredVsfLinkPortList' => '1.3.6.1.4.1.47196.4.1.1.3.10.0.4.1.6',
|
||||
'arubaWiredVsfNotifications' => '1.3.6.1.4.1.47196.4.1.1.3.10.1',
|
||||
'arubaWiredVsfConformance' => '1.3.6.1.4.1.47196.4.1.1.3.10.2',
|
||||
'arubaWiredVsfCompliances' => '1.3.6.1.4.1.47196.4.1.1.3.10.2.1',
|
||||
'arubaWiredVsfGroups' => '1.3.6.1.4.1.47196.4.1.1.3.10.2.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'ARUBAWIRED-VSF-MIB'} = {
|
||||
'arubaWiredVsfOobmMADEnable' => {
|
||||
'1' => 'none',
|
||||
'2' => 'mgmt',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,82 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::BAMSNMPMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'BAM-SNMP-MIB'} = {
|
||||
url => '',
|
||||
name => 'BAM-SNMP-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'BAM-SNMP-MIB'} =
|
||||
'1.3.6.1.4.1.13315.100.210';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'BAM-SNMP-MIB'} = {
|
||||
'bam' => '1.3.6.1.4.1.13315.100.210',
|
||||
'app' => '1.3.6.1.4.1.13315.100.210.1',
|
||||
'common' => '1.3.6.1.4.1.13315.100.210.1.1',
|
||||
'version' => '1.3.6.1.4.1.13315.100.210.1.1.1',
|
||||
'startTime' => '1.3.6.1.4.1.13315.100.210.1.1.2',
|
||||
'startTimeDefinition' => 'MIB-2-MIB::DateAndTime',
|
||||
'notificationMessage' => '1.3.6.1.4.1.13315.100.210.1.1.3',
|
||||
'database' => '1.3.6.1.4.1.13315.100.210.1.2',
|
||||
'maxPoolSize' => '1.3.6.1.4.1.13315.100.210.1.2.1',
|
||||
'numConnections' => '1.3.6.1.4.1.13315.100.210.1.2.2',
|
||||
'deployer' => '1.3.6.1.4.1.13315.100.210.1.3',
|
||||
'serverCountInQueue' => '1.3.6.1.4.1.13315.100.210.1.3.1',
|
||||
'executingServerCount' => '1.3.6.1.4.1.13315.100.210.1.3.2',
|
||||
'numberOfTasks' => '1.3.6.1.4.1.13315.100.210.1.3.3',
|
||||
'eventNotification' => '1.3.6.1.4.1.13315.100.210.1.4',
|
||||
'queueCount' => '1.3.6.1.4.1.13315.100.210.1.4.1',
|
||||
'reconciliation' => '1.3.6.1.4.1.13315.100.210.1.5',
|
||||
'poolSize' => '1.3.6.1.4.1.13315.100.210.1.5.1',
|
||||
'scheduledDeployer' => '1.3.6.1.4.1.13315.100.210.1.6',
|
||||
'numOfTimers' => '1.3.6.1.4.1.13315.100.210.1.6.1',
|
||||
'running' => '1.3.6.1.4.1.13315.100.210.1.6.2',
|
||||
'scheduledTaskService' => '1.3.6.1.4.1.13315.100.210.1.7',
|
||||
'queueSize' => '1.3.6.1.4.1.13315.100.210.1.7.1',
|
||||
'replication' => '1.3.6.1.4.1.13315.100.210.1.8',
|
||||
'walFilesTotalSize' => '1.3.6.1.4.1.13315.100.210.1.8.1',
|
||||
'replicationNodeStatus' => '1.3.6.1.4.1.13315.100.210.1.8.2',
|
||||
'replicationNodeStatusDefinition' => 'BAM-SNMP-MIB::replicationNodeStatus',
|
||||
'replicationAverageLatency' => '1.3.6.1.4.1.13315.100.210.1.8.3',
|
||||
'replicationWarningThreshold' => '1.3.6.1.4.1.13315.100.210.1.8.4',
|
||||
'replicationBreakThreshold' => '1.3.6.1.4.1.13315.100.210.1.8.5',
|
||||
'replicationLatencyWarningThreshold' => '1.3.6.1.4.1.13315.100.210.1.8.6',
|
||||
'replicationLatencyCriticalThreshold' => '1.3.6.1.4.1.13315.100.210.1.8.7',
|
||||
'replicationStatusTable' => '1.3.6.1.4.1.13315.100.210.1.8.8',
|
||||
'replicationStatusEntry' => '1.3.6.1.4.1.13315.100.210.1.8.8.1',
|
||||
'hostname' => '1.3.6.1.4.1.13315.100.210.1.8.8.1.1',
|
||||
'ipv4Address' => '1.3.6.1.4.1.13315.100.210.1.8.8.1.2',
|
||||
'currentLatency' => '1.3.6.1.4.1.13315.100.210.1.8.8.1.3',
|
||||
'replicationHealth' => '1.3.6.1.4.1.13315.100.210.1.8.8.1.4',
|
||||
'replicationHealthDefinition' => 'BAM-SNMP-MIB::replicationHealth',
|
||||
'replicationRole' => '1.3.6.1.4.1.13315.100.210.1.8.8.1.5',
|
||||
'notification' => '1.3.6.1.4.1.13315.100.210.1.9',
|
||||
'messagesReceived' => '1.3.6.1.4.1.13315.100.210.1.9.1',
|
||||
'messagesAccepted' => '1.3.6.1.4.1.13315.100.210.1.9.2',
|
||||
'ackSent' => '1.3.6.1.4.1.13315.100.210.1.9.3',
|
||||
'messagesProcessed' => '1.3.6.1.4.1.13315.100.210.1.9.4',
|
||||
'dbBackup' => '1.3.6.1.4.1.13315.100.210.1.10',
|
||||
'lastSuccessfulBackupTime' => '1.3.6.1.4.1.13315.100.210.1.10.1',
|
||||
'lastSuccessfulBackupTimeDefinition' => 'MIB-2-MIB::DateAndTime',
|
||||
'lastSuccessfulRemoteBackupTime' => '1.3.6.1.4.1.13315.100.210.1.10.2',
|
||||
'lastSuccessfulRemoteBackupTimeDefinition' => 'MIB-2-MIB::DateAndTime',
|
||||
'jvm' => '1.3.6.1.4.1.13315.100.210.3',
|
||||
'freeMemory' => '1.3.6.1.4.1.13315.100.210.3.1',
|
||||
'maxMemory' => '1.3.6.1.4.1.13315.100.210.3.2',
|
||||
'gcTime' => '1.3.6.1.4.1.13315.100.210.3.3',
|
||||
'usageThresholdExceeded' => '1.3.6.1.4.1.13315.100.210.3.4',
|
||||
'activeThreadCount' => '1.3.6.1.4.1.13315.100.210.3.5',
|
||||
'traps' => '1.3.6.1.4.1.13315.100.210.255',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'BAM-SNMP-MIB'} = {
|
||||
'replicationNodeStatus' => {
|
||||
'0' => 'standalone',
|
||||
'1' => 'primary',
|
||||
'2' => 'standby',
|
||||
},
|
||||
'replicationHealth' => {
|
||||
'0' => 'Not Replicating',
|
||||
'1' => 'Initializing',
|
||||
'2' => 'Replicating',
|
||||
}
|
||||
};
|
||||
|
|
@ -1,80 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::BCNDHCPV4MIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'BCN-DHCPV4-MIB'} = {
|
||||
url => '',
|
||||
name => 'BCN-DHCPV4-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'BCN-DHCPV4-MIB'} =
|
||||
'bcnDhcpv4MIB';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'BCN-DHCPV4-MIB'} = {
|
||||
'bcnDhcpv4' => '1.3.6.1.4.1.13315.3.1.1',
|
||||
'bcnDhcpv4MIB' => '1.3.6.1.4.1.13315.3.1.1.1',
|
||||
'bcnDhcpv4Objects' => '1.3.6.1.4.1.13315.3.1.1.2',
|
||||
'bcnDhcpv4ServiceStatus' => '1.3.6.1.4.1.13315.3.1.1.2.1',
|
||||
'bcnDhcpv4SerOperState' => '1.3.6.1.4.1.13315.3.1.1.2.1.1',
|
||||
'bcnDhcpv4SerOperStateDefinition' => 'BCN-DHCPV4-MIB::bcnDhcpv4SerOperState',
|
||||
'bcnDhcpv4FirstAlertIpAddr' => '1.3.6.1.4.1.13315.3.1.1.2.1.2',
|
||||
'bcnDhcpv4LeaseStatsSuccess' => '1.3.6.1.4.1.13315.3.1.1.2.1.3',
|
||||
'bcnDhcpv4ServiceStatistics' => '1.3.6.1.4.1.13315.3.1.1.2.2',
|
||||
'bcnDhcpv4LeaseTable' => '1.3.6.1.4.1.13315.3.1.1.2.2.1',
|
||||
'bcnDhcpv4LeaseEntry' => '1.3.6.1.4.1.13315.3.1.1.2.2.1.1',
|
||||
'bcnDhcpv4LeaseIP' => '1.3.6.1.4.1.13315.3.1.1.2.2.1.1.1',
|
||||
'bcnDhcpv4LeaseStartTime' => '1.3.6.1.4.1.13315.3.1.1.2.2.1.1.2',
|
||||
'bcnDhcpv4LeaseEndTime' => '1.3.6.1.4.1.13315.3.1.1.2.2.1.1.3',
|
||||
'bcnDhcpv4LeaseTimeStamp' => '1.3.6.1.4.1.13315.3.1.1.2.2.1.1.4',
|
||||
'bcnDhcpv4LeaseMacAddress' => '1.3.6.1.4.1.13315.3.1.1.2.2.1.1.5',
|
||||
'bcnDhcpv4LeaseHostname' => '1.3.6.1.4.1.13315.3.1.1.2.2.1.1.6',
|
||||
'bcnDhcpv4SubnetTable' => '1.3.6.1.4.1.13315.3.1.1.2.2.2',
|
||||
'bcnDhcpv4SubnetEntry' => '1.3.6.1.4.1.13315.3.1.1.2.2.2.1',
|
||||
'bcnDhcpv4SubnetIP' => '1.3.6.1.4.1.13315.3.1.1.2.2.2.1.1',
|
||||
'bcnDhcpv4SubnetMask' => '1.3.6.1.4.1.13315.3.1.1.2.2.2.1.2',
|
||||
'bcnDhcpv4SubnetSize' => '1.3.6.1.4.1.13315.3.1.1.2.2.2.1.3',
|
||||
'bcnDhcpv4SubnetFreeAddresses' => '1.3.6.1.4.1.13315.3.1.1.2.2.2.1.4',
|
||||
'bcnDhcpv4SubnetLowThreshold' => '1.3.6.1.4.1.13315.3.1.1.2.2.2.1.5',
|
||||
'bcnDhcpv4SubnetHighThreshold' => '1.3.6.1.4.1.13315.3.1.1.2.2.2.1.6',
|
||||
'bcnDhcpv4PoolTable' => '1.3.6.1.4.1.13315.3.1.1.2.2.3',
|
||||
'bcnDhcpv4PoolEntry' => '1.3.6.1.4.1.13315.3.1.1.2.2.3.1',
|
||||
'bcnDhcpv4PoolStartIP' => '1.3.6.1.4.1.13315.3.1.1.2.2.3.1.1',
|
||||
'bcnDhcpv4PoolEndIP' => '1.3.6.1.4.1.13315.3.1.1.2.2.3.1.2',
|
||||
'bcnDhcpv4PoolSubnetIP' => '1.3.6.1.4.1.13315.3.1.1.2.2.3.1.3',
|
||||
'bcnDhcpv4PoolSize' => '1.3.6.1.4.1.13315.3.1.1.2.2.3.1.4',
|
||||
'bcnDhcpv4PoolFreeAddresses' => '1.3.6.1.4.1.13315.3.1.1.2.2.3.1.5',
|
||||
'bcnDhcpv4FixedIPTable' => '1.3.6.1.4.1.13315.3.1.1.2.2.4',
|
||||
'bcnDhcpv4FixedIPEntry' => '1.3.6.1.4.1.13315.3.1.1.2.2.4.1',
|
||||
'bcnDhcpv4FixedIP' => '1.3.6.1.4.1.13315.3.1.1.2.2.4.1.1',
|
||||
'bcnDhcpv4Notification' => '1.3.6.1.4.1.13315.3.1.1.3',
|
||||
'bcnDhcpv4NotificationEvents' => '1.3.6.1.4.1.13315.3.1.1.3.0',
|
||||
'bcnDhcpv4NotificationData' => '1.3.6.1.4.1.13315.3.1.1.3.1',
|
||||
'bcnDhcpv4AlarmSeverity' => '1.3.6.1.4.1.13315.3.1.1.3.1.1',
|
||||
'bcnDhcpv4AlarmInfo' => '1.3.6.1.4.1.13315.3.1.1.3.1.2',
|
||||
'bcnDhcpv4FailOverState' => '1.3.6.1.4.1.13315.3.1.1.3.1.3',
|
||||
'bcnDhcpv4FailOverStateDefinition' => 'BCN-DHCPV4-MIB::bcnDhcpv4FailOverState',
|
||||
'bcnDhcpv4SubnetAlertIpAddr' => '1.3.6.1.4.1.13315.3.1.1.3.1.4',
|
||||
'bcnDhcpv4Conformance' => '1.3.6.1.4.1.13315.3.1.1.4',
|
||||
'bcnDhcpv4ServiceCompliances' => '1.3.6.1.4.1.13315.3.1.1.4.1',
|
||||
'bcnDhcpv4ServiceGroups' => '1.3.6.1.4.1.13315.3.1.1.4.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'BCN-DHCPV4-MIB'} = {
|
||||
'bcnDhcpv4FailOverState' => {
|
||||
'1' => 'startup',
|
||||
'2' => 'normal',
|
||||
'3' => 'communicationsInterrupted',
|
||||
'4' => 'partnerDown',
|
||||
'5' => 'potentialConflict',
|
||||
'6' => 'recover',
|
||||
'7' => 'paused',
|
||||
'8' => 'shutdown',
|
||||
'9' => 'recoverDone',
|
||||
'254' => 'recoverWait',
|
||||
},
|
||||
'bcnDhcpv4SerOperState' => {
|
||||
'1' => 'running',
|
||||
'2' => 'notRunning',
|
||||
'3' => 'starting',
|
||||
'4' => 'stopping',
|
||||
'5' => 'fault',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,55 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::BCNDNSMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'BCN-DNS-MIB'} = {
|
||||
url => '',
|
||||
name => 'BCN-DNS-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'BCN-DNS-MIB'} =
|
||||
'1.3.6.1.4.1.13315.3.1.2.1';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'BCN-DNS-MIB'} = {
|
||||
'bcnDns' => '1.3.6.1.4.1.13315.3.1.2',
|
||||
'bcnDnsMIB' => '1.3.6.1.4.1.13315.3.1.2.1',
|
||||
'bcnDnsObjects' => '1.3.6.1.4.1.13315.3.1.2.2',
|
||||
'bcnDnsServiceStatus' => '1.3.6.1.4.1.13315.3.1.2.2.1',
|
||||
'bcnDnsSerOperState' => '1.3.6.1.4.1.13315.3.1.2.2.1.1',
|
||||
'bcnDnsSerOperStateDefinition' => 'BCN-DNS-MIB::bcnDnsSerOperState',
|
||||
'bcnDnsSerNumberOfZones' => '1.3.6.1.4.1.13315.3.1.2.2.1.2',
|
||||
'bcnDnsSerTransfersRunning' => '1.3.6.1.4.1.13315.3.1.2.2.1.3',
|
||||
'bcnDnsSerTransfersDeferred' => '1.3.6.1.4.1.13315.3.1.2.2.1.4',
|
||||
'bcnDnsSerSOAQueriesInProgress' => '1.3.6.1.4.1.13315.3.1.2.2.1.5',
|
||||
'bcnDnsSerQueryLogging' => '1.3.6.1.4.1.13315.3.1.2.2.1.6',
|
||||
'bcnDnsSerQueryLoggingDefinition' => 'BCN-DNS-MIB::bcnDnsSerQueryLogging',
|
||||
'bcnDnsSerDebugLevel' => '1.3.6.1.4.1.13315.3.1.2.2.1.7',
|
||||
'bcnDnsServiceStatistics' => '1.3.6.1.4.1.13315.3.1.2.2.2',
|
||||
'bcnDnsStatServer' => '1.3.6.1.4.1.13315.3.1.2.2.2.1',
|
||||
'bcnDnsStatSrvQrySuccess' => '1.3.6.1.4.1.13315.3.1.2.2.2.1.1',
|
||||
'bcnDnsStatSrvQryReferral' => '1.3.6.1.4.1.13315.3.1.2.2.2.1.2',
|
||||
'bcnDnsStatSrvQryNXRRSet' => '1.3.6.1.4.1.13315.3.1.2.2.2.1.3',
|
||||
'bcnDnsStatSrvQryNXDomain' => '1.3.6.1.4.1.13315.3.1.2.2.2.1.4',
|
||||
'bcnDnsStatSrvQryRecursion' => '1.3.6.1.4.1.13315.3.1.2.2.2.1.5',
|
||||
'bcnDnsStatSrvQryFailure' => '1.3.6.1.4.1.13315.3.1.2.2.2.1.6',
|
||||
'bcnDnsNotification' => '1.3.6.1.4.1.13315.3.1.2.3',
|
||||
'bcnDnsNotificationEvents' => '1.3.6.1.4.1.13315.3.1.2.3.0',
|
||||
'bcnDnsNotificationData' => '1.3.6.1.4.1.13315.3.1.2.3.1',
|
||||
'bcnDnsAlarmSeverity' => '1.3.6.1.4.1.13315.3.1.2.3.1.1',
|
||||
'bcnDnsAlarmInfo' => '1.3.6.1.4.1.13315.3.1.2.3.1.2',
|
||||
'bcnDnsConformance' => '1.3.6.1.4.1.13315.3.1.2.4',
|
||||
'bcnDnsServiceCompliances' => '1.3.6.1.4.1.13315.3.1.2.4.1',
|
||||
'bcnDnsServiceGroups' => '1.3.6.1.4.1.13315.3.1.2.4.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'BCN-DNS-MIB'} = {
|
||||
'bcnDnsSerOperState' => {
|
||||
'1' => 'running',
|
||||
'2' => 'notRunning',
|
||||
'3' => 'starting',
|
||||
'4' => 'stopping',
|
||||
'5' => 'fault',
|
||||
},
|
||||
'bcnDnsSerQueryLogging' => {
|
||||
'1' => 'on',
|
||||
'2' => 'off',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::BCNSYSTEMMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'BCN-SYSTEM-MIB'} = {
|
||||
url => '',
|
||||
name => 'BCN-SYSTEM-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'BCN-SYSTEM-MIB'} =
|
||||
'1.3.6.1.4.1.13315.3.2.1';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'BCN-SYSTEM-MIB'} = {
|
||||
'bcnSystem' => '1.3.6.1.4.1.13315.3.2',
|
||||
'bcnSystemMIB' => '1.3.6.1.4.1.13315.3.2.1',
|
||||
'bcnSystemObjects' => '1.3.6.1.4.1.13315.3.2.2',
|
||||
'bcnSysIdentification' => '1.3.6.1.4.1.13315.3.2.2.1',
|
||||
'bcnSysIdProduct' => '1.3.6.1.4.1.13315.3.2.2.1.1',
|
||||
'bcnSysIdOSRelease' => '1.3.6.1.4.1.13315.3.2.2.1.2',
|
||||
'bcnSysIdSerial' => '1.3.6.1.4.1.13315.3.2.2.1.3',
|
||||
'bcnSysIdServiceTag' => '1.3.6.1.4.1.13315.3.2.2.1.4',
|
||||
'bcnSysIdPlatform' => '1.3.6.1.4.1.13315.3.2.2.1.5',
|
||||
'bcnSysIdVendorPlatform' => '1.3.6.1.4.1.13315.3.2.2.1.6',
|
||||
'bcnSysIdServicesTable' => '1.3.6.1.4.1.13315.3.2.2.1.7',
|
||||
'bcnSysIdServicesEntry' => '1.3.6.1.4.1.13315.3.2.2.1.7.1',
|
||||
'bcnSysIdServicesIndex' => '1.3.6.1.4.1.13315.3.2.2.1.7.1.1',
|
||||
'bcnSysIdServicesOID' => '1.3.6.1.4.1.13315.3.2.2.1.7.1.2',
|
||||
'bcnSysIdServicesStateTS' => '1.3.6.1.4.1.13315.3.2.2.1.7.1.3',
|
||||
'bcnSysServices' => '1.3.6.1.4.1.13315.3.2.2.2',
|
||||
'bcnSysServDNSService' => '1.3.6.1.4.1.13315.3.2.2.2.1',
|
||||
'bcnSysServDHCPService' => '1.3.6.1.4.1.13315.3.2.2.2.2',
|
||||
'bcnSysServTFTPService' => '1.3.6.1.4.1.13315.3.2.2.2.3',
|
||||
'bcnSysServLicensing' => '1.3.6.1.4.1.13315.3.2.2.2.4',
|
||||
'bcnSysServTFTP' => '1.3.6.1.4.1.13315.3.2.2.2.5',
|
||||
'bcnSysServNTP' => '1.3.6.1.4.1.13315.3.2.2.2.6',
|
||||
'bcnSysServPowerSupply' => '1.3.6.1.4.1.13315.3.2.2.2.7',
|
||||
'bcnSysServNetworkInterface' => '1.3.6.1.4.1.13315.3.2.2.2.8',
|
||||
'bcnSysServHighAvailability' => '1.3.6.1.4.1.13315.3.2.2.2.9',
|
||||
'bcnSysServReplication' => '1.3.6.1.4.1.13315.3.2.2.2.10',
|
||||
'bcnSysServSystem' => '1.3.6.1.4.1.13315.3.2.2.2.11',
|
||||
'bcnSystemNotification' => '1.3.6.1.4.1.13315.3.2.3',
|
||||
'bcnSysNotificationEvents' => '1.3.6.1.4.1.13315.3.2.3.0',
|
||||
'bcnSysNotificationData' => '1.3.6.1.4.1.13315.3.2.3.1',
|
||||
'bcnSysSerOperState' => '1.3.6.1.4.1.13315.3.2.3.1.1',
|
||||
'bcnSysSerOperStateDefinition' => 'BCN-SYSTEM-MIB::bcnSysSerOperState',
|
||||
'bcnSysAlarmSeverity' => '1.3.6.1.4.1.13315.3.2.3.1.2',
|
||||
'bcnSysAlarmInfo' => '1.3.6.1.4.1.13315.3.2.3.1.3',
|
||||
'bcnSystemConformance' => '1.3.6.1.4.1.13315.3.2.4',
|
||||
'bcnSysServliances' => '1.3.6.1.4.1.13315.3.2.4.1',
|
||||
'bcnSysGroups' => '1.3.6.1.4.1.13315.3.2.4.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'BCN-SYSTEM-MIB'} = {
|
||||
'bcnSysSerOperState' => {
|
||||
'1' => 'start',
|
||||
'2' => 'reboot',
|
||||
'3' => 'shutdown',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,125 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::BRIDGEMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'BRIDGE-MIB'} = {
|
||||
url => '',
|
||||
name => 'BRIDGE-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'BRIDGE-MIB'} =
|
||||
'1.3.6.1.2.1.17';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'BRIDGE-MIB'} = {
|
||||
'dot1dBridge' => '1.3.6.1.2.1.17',
|
||||
'dot1dNotifications' => '1.3.6.1.2.1.17.0',
|
||||
'dot1dBase' => '1.3.6.1.2.1.17.1',
|
||||
'dot1dBaseBridgeAddress' => '1.3.6.1.2.1.17.1.1',
|
||||
'dot1dBaseNumPorts' => '1.3.6.1.2.1.17.1.2',
|
||||
'dot1dBaseType' => '1.3.6.1.2.1.17.1.3',
|
||||
'dot1dBaseTypeDefinition' => 'BRIDGE-MIB::dot1dBaseType',
|
||||
'dot1dBasePortTable' => '1.3.6.1.2.1.17.1.4',
|
||||
'dot1dBasePortEntry' => '1.3.6.1.2.1.17.1.4.1',
|
||||
'dot1dBasePort' => '1.3.6.1.2.1.17.1.4.1.1',
|
||||
'dot1dBasePortIfIndex' => '1.3.6.1.2.1.17.1.4.1.2',
|
||||
'dot1dBasePortCircuit' => '1.3.6.1.2.1.17.1.4.1.3',
|
||||
'dot1dBasePortDelayExceededDiscards' => '1.3.6.1.2.1.17.1.4.1.4',
|
||||
'dot1dBasePortMtuExceededDiscards' => '1.3.6.1.2.1.17.1.4.1.5',
|
||||
'dot1dStp' => '1.3.6.1.2.1.17.2',
|
||||
'dot1dStpProtocolSpecification' => '1.3.6.1.2.1.17.2.1',
|
||||
'dot1dStpProtocolSpecificationDefinition' => 'BRIDGE-MIB::dot1dStpProtocolSpecification',
|
||||
'dot1dStpPriority' => '1.3.6.1.2.1.17.2.2',
|
||||
'dot1dStpTimeSinceTopologyChange' => '1.3.6.1.2.1.17.2.3',
|
||||
'dot1dStpTopChanges' => '1.3.6.1.2.1.17.2.4',
|
||||
'dot1dStpDesignatedRoot' => '1.3.6.1.2.1.17.2.5',
|
||||
'dot1dStpRootCost' => '1.3.6.1.2.1.17.2.6',
|
||||
'dot1dStpRootPort' => '1.3.6.1.2.1.17.2.7',
|
||||
'dot1dStpMaxAge' => '1.3.6.1.2.1.17.2.8',
|
||||
'dot1dStpHelloTime' => '1.3.6.1.2.1.17.2.9',
|
||||
'dot1dStpHoldTime' => '1.3.6.1.2.1.17.2.10',
|
||||
'dot1dStpForwardDelay' => '1.3.6.1.2.1.17.2.11',
|
||||
'dot1dStpBridgeMaxAge' => '1.3.6.1.2.1.17.2.12',
|
||||
'dot1dStpBridgeHelloTime' => '1.3.6.1.2.1.17.2.13',
|
||||
'dot1dStpBridgeForwardDelay' => '1.3.6.1.2.1.17.2.14',
|
||||
'dot1dStpPortTable' => '1.3.6.1.2.1.17.2.15',
|
||||
'dot1dStpPortEntry' => '1.3.6.1.2.1.17.2.15.1',
|
||||
'dot1dStpPort' => '1.3.6.1.2.1.17.2.15.1.1',
|
||||
'dot1dStpPortPriority' => '1.3.6.1.2.1.17.2.15.1.2',
|
||||
'dot1dStpPortState' => '1.3.6.1.2.1.17.2.15.1.3',
|
||||
'dot1dStpPortStateDefinition' => 'BRIDGE-MIB::dot1dStpPortState',
|
||||
'dot1dStpPortEnable' => '1.3.6.1.2.1.17.2.15.1.4',
|
||||
'dot1dStpPortEnableDefinition' => 'BRIDGE-MIB::dot1dStpPortEnable',
|
||||
'dot1dStpPortPathCost' => '1.3.6.1.2.1.17.2.15.1.5',
|
||||
'dot1dStpPortDesignatedRoot' => '1.3.6.1.2.1.17.2.15.1.6',
|
||||
'dot1dStpPortDesignatedCost' => '1.3.6.1.2.1.17.2.15.1.7',
|
||||
'dot1dStpPortDesignatedBridge' => '1.3.6.1.2.1.17.2.15.1.8',
|
||||
'dot1dStpPortDesignatedPort' => '1.3.6.1.2.1.17.2.15.1.9',
|
||||
'dot1dStpPortForwardTransitions' => '1.3.6.1.2.1.17.2.15.1.10',
|
||||
'dot1dStpPortPathCost32' => '1.3.6.1.2.1.17.2.15.1.11',
|
||||
'dot1dSr' => '1.3.6.1.2.1.17.3',
|
||||
'dot1dTp' => '1.3.6.1.2.1.17.4',
|
||||
'dot1dTpLearnedEntryDiscards' => '1.3.6.1.2.1.17.4.1',
|
||||
'dot1dTpAgingTime' => '1.3.6.1.2.1.17.4.2',
|
||||
'dot1dTpFdbTable' => '1.3.6.1.2.1.17.4.3',
|
||||
'dot1dTpFdbEntry' => '1.3.6.1.2.1.17.4.3.1',
|
||||
'dot1dTpFdbAddress' => '1.3.6.1.2.1.17.4.3.1.1',
|
||||
'dot1dTpFdbPort' => '1.3.6.1.2.1.17.4.3.1.2',
|
||||
'dot1dTpFdbStatus' => '1.3.6.1.2.1.17.4.3.1.3',
|
||||
'dot1dTpFdbStatusDefinition' => 'BRIDGE-MIB::dot1dTpFdbStatus',
|
||||
'dot1dTpPortTable' => '1.3.6.1.2.1.17.4.4',
|
||||
'dot1dTpPortEntry' => '1.3.6.1.2.1.17.4.4.1',
|
||||
'dot1dTpPort' => '1.3.6.1.2.1.17.4.4.1.1',
|
||||
'dot1dTpPortMaxInfo' => '1.3.6.1.2.1.17.4.4.1.2',
|
||||
'dot1dTpPortInFrames' => '1.3.6.1.2.1.17.4.4.1.3',
|
||||
'dot1dTpPortOutFrames' => '1.3.6.1.2.1.17.4.4.1.4',
|
||||
'dot1dTpPortInDiscards' => '1.3.6.1.2.1.17.4.4.1.5',
|
||||
'dot1dStatic' => '1.3.6.1.2.1.17.5',
|
||||
'dot1dStaticTable' => '1.3.6.1.2.1.17.5.1',
|
||||
'dot1dStaticEntry' => '1.3.6.1.2.1.17.5.1.1',
|
||||
'dot1dStaticAddress' => '1.3.6.1.2.1.17.5.1.1.1',
|
||||
'dot1dStaticReceivePort' => '1.3.6.1.2.1.17.5.1.1.2',
|
||||
'dot1dStaticAllowedToGoTo' => '1.3.6.1.2.1.17.5.1.1.3',
|
||||
'dot1dStaticStatus' => '1.3.6.1.2.1.17.5.1.1.4',
|
||||
'dot1dStaticStatusDefinition' => 'BRIDGE-MIB::dot1dStaticStatus',
|
||||
'dot1dConformance' => '1.3.6.1.2.1.17.8',
|
||||
'dot1dGroups' => '1.3.6.1.2.1.17.8.1',
|
||||
'dot1dCompliances' => '1.3.6.1.2.1.17.8.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'BRIDGE-MIB'} = {
|
||||
'dot1dStpPortState' => {
|
||||
'1' => 'disabled',
|
||||
'2' => 'blocking',
|
||||
'3' => 'listening',
|
||||
'4' => 'learning',
|
||||
'5' => 'forwarding',
|
||||
'6' => 'broken',
|
||||
},
|
||||
'dot1dTpFdbStatus' => {
|
||||
'1' => 'other',
|
||||
'2' => 'invalid',
|
||||
'3' => 'learned',
|
||||
'4' => 'self',
|
||||
'5' => 'mgmt',
|
||||
},
|
||||
'dot1dStpProtocolSpecification' => {
|
||||
'1' => 'unknown',
|
||||
'2' => 'decLb100',
|
||||
'3' => 'ieee8021d',
|
||||
},
|
||||
'dot1dBaseType' => {
|
||||
'1' => 'unknown',
|
||||
'2' => 'transparent-only',
|
||||
'3' => 'sourceroute-only',
|
||||
'4' => 'srt',
|
||||
},
|
||||
'dot1dStpPortEnable' => {
|
||||
'1' => 'enabled',
|
||||
'2' => 'disabled',
|
||||
},
|
||||
'dot1dStaticStatus' => {
|
||||
'1' => 'other',
|
||||
'2' => 'invalid',
|
||||
'3' => 'permanent',
|
||||
'4' => 'deleteOnReset',
|
||||
'5' => 'deleteOnTimeout',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,116 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::CISCOERRDISABLEMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'CISCO-ERR-DISABLE-MIB'} = {
|
||||
url => '',
|
||||
name => 'CISCO-ERR-DISABLE-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'CISCO-ERR-DISABLE-MIB'} =
|
||||
'1.3.6.1.4.1.9.9.548';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'CISCO-ERR-DISABLE-MIB'} = {
|
||||
'ciscoErrDisableMIB' => '1.3.6.1.4.1.9.9.548',
|
||||
'ciscoErrDisableMIBNotifs' => '1.3.6.1.4.1.9.9.548.0',
|
||||
'cErrDisableNotificationsPrefix' => '1.3.6.1.4.1.9.9.548.0.1',
|
||||
'ciscoErrDisableMIBObjects' => '1.3.6.1.4.1.9.9.548.1',
|
||||
'cErrDisableGlobalObjects' => '1.3.6.1.4.1.9.9.548.1.1',
|
||||
'cErrDisableRecoveryInterval' => '1.3.6.1.4.1.9.9.548.1.1.1',
|
||||
#'cErrDisableRecoveryIntervalDefinition' => 'CISCO-TC::TimeIntervalSec',
|
||||
'cErrDisableNotifEnable' => '1.3.6.1.4.1.9.9.548.1.1.2',
|
||||
'cErrDisableNotifEnableDefinition' => 'SNMPv2-TC::TruthValue',
|
||||
'cErrDisableNotifRate' => '1.3.6.1.4.1.9.9.548.1.1.3',
|
||||
'cErrDisableFeatureObjects' => '1.3.6.1.4.1.9.9.548.1.2',
|
||||
'cErrDisableFeatureTable' => '1.3.6.1.4.1.9.9.548.1.2.1',
|
||||
'cErrDisableFeatureEntry' => '1.3.6.1.4.1.9.9.548.1.2.1.1',
|
||||
'cErrDisableFeatureIndex' => '1.3.6.1.4.1.9.9.548.1.2.1.1.1',
|
||||
'cErrDisableFeatureIndexDefinition' => 'CISCO-ERR-DISABLE-MIB::CErrDisableFeatureID',
|
||||
'cErrDisableFeatureConfigurable' => '1.3.6.1.4.1.9.9.548.1.2.1.1.2',
|
||||
'cErrDisableFeatureDetectEnable' => '1.3.6.1.4.1.9.9.548.1.2.1.1.3',
|
||||
'cErrDisableFeatureDetectEnableDefinition' => 'SNMPv2-TC::TruthValue',
|
||||
'cErrDisableFeatureRecoveryEnable' => '1.3.6.1.4.1.9.9.548.1.2.1.1.4',
|
||||
'cErrDisableFeatureRecoveryEnableDefinition' => 'SNMPv2-TC::TruthValue',
|
||||
'cErrDisableFeatureRecoveryInterval' => '1.3.6.1.4.1.9.9.548.1.2.1.1.5',
|
||||
#'cErrDisableFeatureRecoveryIntervalDefinition' => 'CISCO-TC::TimeIntervalSec',
|
||||
'cErrDisableFeatureDetectShutdownVlan' => '1.3.6.1.4.1.9.9.548.1.2.1.1.6',
|
||||
'cErrDisableFeatureDetectShutdownVlanDefinition' => 'SNMPv2-TC::TruthValue',
|
||||
'cErrDisableFeatureMaxFlapCount' => '1.3.6.1.4.1.9.9.548.1.2.1.1.7',
|
||||
'cErrDisableFeatureFlapTimePeriod' => '1.3.6.1.4.1.9.9.548.1.2.1.1.8',
|
||||
'cErrDisableIfObjects' => '1.3.6.1.4.1.9.9.548.1.3',
|
||||
'cErrDisableIfStatusTable' => '1.3.6.1.4.1.9.9.548.1.3.1',
|
||||
'cErrDisableIfStatusEntry' => '1.3.6.1.4.1.9.9.548.1.3.1.1',
|
||||
'cErrDisableIfStatusVlanIndex' => '1.3.6.1.4.1.9.9.548.1.3.1.1.1',
|
||||
#'cErrDisableIfStatusVlanIndexDefinition' => 'CISCO-PRIVATE-VLAN-MIB::VlanIndexOrZero',
|
||||
'cErrDisableIfStatusCause' => '1.3.6.1.4.1.9.9.548.1.3.1.1.2',
|
||||
'cErrDisableIfStatusCauseDefinition' => 'CISCO-ERR-DISABLE-MIB::CErrDisableFeatureID',
|
||||
'cErrDisableIfStatusTimeToRecover' => '1.3.6.1.4.1.9.9.548.1.3.1.1.3',
|
||||
#'cErrDisableIfStatusTimeToRecoverDefinition' => 'CISCO-TC::TimeIntervalSec',
|
||||
'ciscoErrDisableMIBConform' => '1.3.6.1.4.1.9.9.548.2',
|
||||
'ciscoErrDisableMIBCompliances' => '1.3.6.1.4.1.9.9.548.2.1',
|
||||
'ciscoErrDisableMIBGroups' => '1.3.6.1.4.1.9.9.548.2.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'CISCO-ERR-DISABLE-MIB'} = {
|
||||
'CErrDisableFeatureID' => {
|
||||
'1' => 'udld',
|
||||
'2' => 'bpduGuard',
|
||||
'3' => 'channelMisconfig',
|
||||
'4' => 'pagpFlap',
|
||||
'5' => 'dtpFlap',
|
||||
'6' => 'linkFlap',
|
||||
'7' => 'l2ptGuard',
|
||||
'8' => 'dot1xSecurityViolation',
|
||||
'9' => 'portSecurityViolation',
|
||||
'10' => 'gbicInvalid',
|
||||
'11' => 'dhcpRateLimit',
|
||||
'12' => 'unicastFlood',
|
||||
'13' => 'vmps',
|
||||
'14' => 'stormControl',
|
||||
'15' => 'inlinePower',
|
||||
'16' => 'arpInspection',
|
||||
'17' => 'portLoopback',
|
||||
'18' => 'packetBuffer',
|
||||
'19' => 'macLimit',
|
||||
'20' => 'linkMonitorFailure',
|
||||
'21' => 'oamRemoteFailure',
|
||||
'22' => 'dot1adIncompEtype',
|
||||
'23' => 'dot1adIncompTunnel',
|
||||
'24' => 'sfpConfigMismatch',
|
||||
'25' => 'communityLimit',
|
||||
'26' => 'invalidPolicy',
|
||||
'27' => 'lsGroup',
|
||||
'28' => 'ekey',
|
||||
'29' => 'portModeFailure',
|
||||
'30' => 'pppoeIaRateLimit',
|
||||
'31' => 'oamRemoteCriticalEvent',
|
||||
'32' => 'oamRemoteDyingGasp',
|
||||
'33' => 'oamRemoteLinkFault',
|
||||
'34' => 'mvrp',
|
||||
'35' => 'tranceiverIncomp',
|
||||
'36' => 'other',
|
||||
'37' => 'portReinitLimitReached',
|
||||
'38' => 'adminRxBBCreditPerfBufIncomp',
|
||||
'39' => 'ficonNotEnabled',
|
||||
'40' => 'adminModeIncomp',
|
||||
'41' => 'adminSpeedIncomp',
|
||||
'42' => 'adminRxBBCreditIncomp',
|
||||
'43' => 'adminRxBufSizeIncomp',
|
||||
'44' => 'eppFailure',
|
||||
'45' => 'osmEPortUp',
|
||||
'46' => 'osmNonEPortUp',
|
||||
'47' => 'udldUniDir',
|
||||
'48' => 'udldTxRxLoop',
|
||||
'49' => 'udldNeighbourMismatch',
|
||||
'50' => 'udldEmptyEcho',
|
||||
'51' => 'udldAggrasiveModeLinkFailed',
|
||||
'52' => 'excessivePortInterrupts',
|
||||
'53' => 'channelErrDisabled',
|
||||
'54' => 'hwProgFailed',
|
||||
'55' => 'internalHandshakeFailed',
|
||||
'56' => 'stpInconsistencyOnVpcPeerLink',
|
||||
'57' => 'stpPortStateFailure',
|
||||
'58' => 'ipConflict',
|
||||
'59' => 'multipleMSapIdsRcvd',
|
||||
'60' => 'oneHundredPdusWithoutAck',
|
||||
'61' => 'ipQosCompatCheckFailure',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,207 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::CISCOLICENSEMGMTMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'CISCO-LICENSE-MGMT-MIB'} = {
|
||||
url => '',
|
||||
name => 'CISCO-LICENSE-MGMT-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'CISCO-LICENSE-MGMT-MIB'} =
|
||||
'1.3.6.1.4.1.9.9.543';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'CISCO-LICENSE-MGMT-MIB'} = {
|
||||
'ciscoLicenseMgmtMIB' => '1.3.6.1.4.1.9.9.543',
|
||||
'ciscoLicenseMgmtMIBNotifs' => '1.3.6.1.4.1.9.9.543.0',
|
||||
'ciscoLicenseMgmtMIBObjects' => '1.3.6.1.4.1.9.9.543.1',
|
||||
'clmgmtLicenseConfiguration' => '1.3.6.1.4.1.9.9.543.1.1',
|
||||
'clmgmtNextFreeLicenseActionIndex' => '1.3.6.1.4.1.9.9.543.1.1.1',
|
||||
'clmgmtLicenseActionTable' => '1.3.6.1.4.1.9.9.543.1.1.2',
|
||||
'clmgmtLicenseActionEntry' => '1.3.6.1.4.1.9.9.543.1.1.2.1',
|
||||
'clmgmtLicenseActionIndex' => '1.3.6.1.4.1.9.9.543.1.1.2.1.1',
|
||||
'clmgmtLicenseActionEntPhysicalIndex' => '1.3.6.1.4.1.9.9.543.1.1.2.1.2',
|
||||
'clmgmtLicenseActionTransferProtocol' => '1.3.6.1.4.1.9.9.543.1.1.2.1.3',
|
||||
'clmgmtLicenseActionTransferProtocolDefinition' => 'CISCO-LICENSE-MGMT-MIB::ClmgmtLicenseTransferProtocol',
|
||||
'clmgmtLicenseServerAddressType' => '1.3.6.1.4.1.9.9.543.1.1.2.1.4',
|
||||
'clmgmtLicenseServerAddress' => '1.3.6.1.4.1.9.9.543.1.1.2.1.5',
|
||||
'clmgmtLicenseServerUsername' => '1.3.6.1.4.1.9.9.543.1.1.2.1.6',
|
||||
'clmgmtLicenseServerPassword' => '1.3.6.1.4.1.9.9.543.1.1.2.1.7',
|
||||
'clmgmtLicenseFile' => '1.3.6.1.4.1.9.9.543.1.1.2.1.8',
|
||||
'clmgmtLicenseStore' => '1.3.6.1.4.1.9.9.543.1.1.2.1.9',
|
||||
'clmgmtLicenseActionLicenseIndex' => '1.3.6.1.4.1.9.9.543.1.1.2.1.10',
|
||||
'clmgmtLicensePermissionTicketFile' => '1.3.6.1.4.1.9.9.543.1.1.2.1.11',
|
||||
'clmgmtLicenseRehostTicketFile' => '1.3.6.1.4.1.9.9.543.1.1.2.1.12',
|
||||
'clmgmtLicenseBackupFile' => '1.3.6.1.4.1.9.9.543.1.1.2.1.13',
|
||||
'clmgmtLicenseStopOnFailure' => '1.3.6.1.4.1.9.9.543.1.1.2.1.14',
|
||||
'clmgmtLicenseAction' => '1.3.6.1.4.1.9.9.543.1.1.2.1.15',
|
||||
'clmgmtLicenseActionDefinition' => 'CISCO-LICENSE-MGMT-MIB::clmgmtLicenseAction',
|
||||
'clmgmtLicenseActionState' => '1.3.6.1.4.1.9.9.543.1.1.2.1.16',
|
||||
'clmgmtLicenseActionStateDefinition' => 'CISCO-LICENSE-MGMT-MIB::ClmgmtLicenseActionState',
|
||||
'clmgmtLicenseJobQPosition' => '1.3.6.1.4.1.9.9.543.1.1.2.1.17',
|
||||
'clmgmtLicenseActionFailCause' => '1.3.6.1.4.1.9.9.543.1.1.2.1.18',
|
||||
'clmgmtLicenseActionFailCauseDefinition' => 'CISCO-LICENSE-MGMT-MIB::ClmgmtLicenseActionFailCause',
|
||||
'clmgmtLicenseActionStorageType' => '1.3.6.1.4.1.9.9.543.1.1.2.1.19',
|
||||
'clmgmtLicenseActionRowStatus' => '1.3.6.1.4.1.9.9.543.1.1.2.1.20',
|
||||
'clmgmtLicenseAcceptEULA' => '1.3.6.1.4.1.9.9.543.1.1.2.1.21',
|
||||
'clmgmtLicenseEULAFile' => '1.3.6.1.4.1.9.9.543.1.1.2.1.22',
|
||||
'clmgmtLicenseActionResultTable' => '1.3.6.1.4.1.9.9.543.1.1.3',
|
||||
'clmgmtLicenseActionResultEntry' => '1.3.6.1.4.1.9.9.543.1.1.3.1',
|
||||
'clmgmtLicenseNumber' => '1.3.6.1.4.1.9.9.543.1.1.3.1.1',
|
||||
'clmgmtLicenseIndivActionState' => '1.3.6.1.4.1.9.9.543.1.1.3.1.2',
|
||||
'clmgmtLicenseIndivActionStateDefinition' => 'CISCO-LICENSE-MGMT-MIB::ClmgmtLicenseActionState',
|
||||
'clmgmtLicenseIndivActionFailCause' => '1.3.6.1.4.1.9.9.543.1.1.3.1.3',
|
||||
'clmgmtLicenseIndivActionFailCauseDefinition' => 'CISCO-LICENSE-MGMT-MIB::ClmgmtLicenseActionFailCause',
|
||||
'clmgmtLicenseInformation' => '1.3.6.1.4.1.9.9.543.1.2',
|
||||
'clmgmtLicenseStoreInfoTable' => '1.3.6.1.4.1.9.9.543.1.2.1',
|
||||
'clmgmtLicenseStoreInfoEntry' => '1.3.6.1.4.1.9.9.543.1.2.1.1',
|
||||
'clmgmtLicenseStoreIndex' => '1.3.6.1.4.1.9.9.543.1.2.1.1.1',
|
||||
'clmgmtLicenseStoreName' => '1.3.6.1.4.1.9.9.543.1.2.1.1.2',
|
||||
'clmgmtLicenseStoreTotalSize' => '1.3.6.1.4.1.9.9.543.1.2.1.1.3',
|
||||
'clmgmtLicenseStoreSizeRemaining' => '1.3.6.1.4.1.9.9.543.1.2.1.1.4',
|
||||
'clmgmtLicenseDeviceInfoTable' => '1.3.6.1.4.1.9.9.543.1.2.2',
|
||||
'clmgmtLicenseDeviceInfoEntry' => '1.3.6.1.4.1.9.9.543.1.2.2.1',
|
||||
'clmgmtDefaultLicenseStore' => '1.3.6.1.4.1.9.9.543.1.2.2.1.1',
|
||||
'clmgmtLicenseInfoTable' => '1.3.6.1.4.1.9.9.543.1.2.3',
|
||||
'clmgmtLicenseInfoEntry' => '1.3.6.1.4.1.9.9.543.1.2.3.1',
|
||||
'clmgmtLicenseStoreUsed' => '1.3.6.1.4.1.9.9.543.1.2.3.1.1',
|
||||
'clmgmtLicenseIndex' => '1.3.6.1.4.1.9.9.543.1.2.3.1.2',
|
||||
'clmgmtLicenseFeatureName' => '1.3.6.1.4.1.9.9.543.1.2.3.1.3',
|
||||
'clmgmtLicenseFeatureVersion' => '1.3.6.1.4.1.9.9.543.1.2.3.1.4',
|
||||
'clmgmtLicenseType' => '1.3.6.1.4.1.9.9.543.1.2.3.1.5',
|
||||
'clmgmtLicenseTypeDefinition' => 'CISCO-LICENSE-MGMT-MIB::clmgmtLicenseType',
|
||||
'clmgmtLicenseCounted' => '1.3.6.1.4.1.9.9.543.1.2.3.1.6',
|
||||
'clmgmtLicenseValidityPeriod' => '1.3.6.1.4.1.9.9.543.1.2.3.1.7',
|
||||
'clmgmtLicenseValidityPeriodRemaining' => '1.3.6.1.4.1.9.9.543.1.2.3.1.8',
|
||||
'clmgmtLicenseExpiredPeriod' => '1.3.6.1.4.1.9.9.543.1.2.3.1.9',
|
||||
'clmgmtLicenseMaxUsageCount' => '1.3.6.1.4.1.9.9.543.1.2.3.1.10',
|
||||
'clmgmtLicenseUsageCountRemaining' => '1.3.6.1.4.1.9.9.543.1.2.3.1.11',
|
||||
'clmgmtLicenseEULAStatus' => '1.3.6.1.4.1.9.9.543.1.2.3.1.12',
|
||||
'clmgmtLicenseComments' => '1.3.6.1.4.1.9.9.543.1.2.3.1.13',
|
||||
'clmgmtLicenseStatus' => '1.3.6.1.4.1.9.9.543.1.2.3.1.14',
|
||||
'clmgmtLicenseStatusDefinition' => 'CISCO-LICENSE-MGMT-MIB::clmgmtLicenseStatus',
|
||||
'clmgmtLicenseStartDate' => '1.3.6.1.4.1.9.9.543.1.2.3.1.15',
|
||||
'clmgmtLicenseEndDate' => '1.3.6.1.4.1.9.9.543.1.2.3.1.16',
|
||||
'clmgmtLicensePeriodUsed' => '1.3.6.1.4.1.9.9.543.1.2.3.1.17',
|
||||
'clmgmtLicensableFeatureTable' => '1.3.6.1.4.1.9.9.543.1.2.4',
|
||||
'clmgmtLicensableFeatureEntry' => '1.3.6.1.4.1.9.9.543.1.2.4.1',
|
||||
'clmgmtFeatureIndex' => '1.3.6.1.4.1.9.9.543.1.2.4.1.1',
|
||||
'clmgmtFeatureName' => '1.3.6.1.4.1.9.9.543.1.2.4.1.2',
|
||||
'clmgmtFeatureVersion' => '1.3.6.1.4.1.9.9.543.1.2.4.1.3',
|
||||
'clmgmtFeatureValidityPeriodRemaining' => '1.3.6.1.4.1.9.9.543.1.2.4.1.4',
|
||||
'clmgmtFeatureWhatIsCounted' => '1.3.6.1.4.1.9.9.543.1.2.4.1.5',
|
||||
'clmgmtFeatureStartDate' => '1.3.6.1.4.1.9.9.543.1.2.4.1.6',
|
||||
'clmgmtFeatureEndDate' => '1.3.6.1.4.1.9.9.543.1.2.4.1.7',
|
||||
'clmgmtFeaturePeriodUsed' => '1.3.6.1.4.1.9.9.543.1.2.4.1.8',
|
||||
'clmgmtLicenseDeviceInformation' => '1.3.6.1.4.1.9.9.543.1.3',
|
||||
'clmgmtNextFreeDevCredExportActionIndex' => '1.3.6.1.4.1.9.9.543.1.3.1',
|
||||
'clmgmtDevCredExportActionTable' => '1.3.6.1.4.1.9.9.543.1.3.2',
|
||||
'clmgmtDevCredExportActionEntry' => '1.3.6.1.4.1.9.9.543.1.3.2.1',
|
||||
'clmgmtDevCredExportActionIndex' => '1.3.6.1.4.1.9.9.543.1.3.2.1.1',
|
||||
'clmgmtDevCredEntPhysicalIndex' => '1.3.6.1.4.1.9.9.543.1.3.2.1.2',
|
||||
'clmgmtDevCredTransferProtocol' => '1.3.6.1.4.1.9.9.543.1.3.2.1.3',
|
||||
'clmgmtDevCredTransferProtocolDefinition' => 'CISCO-LICENSE-MGMT-MIB::ClmgmtLicenseTransferProtocol',
|
||||
'clmgmtDevCredServerAddressType' => '1.3.6.1.4.1.9.9.543.1.3.2.1.4',
|
||||
'clmgmtDevCredServerAddress' => '1.3.6.1.4.1.9.9.543.1.3.2.1.5',
|
||||
'clmgmtDevCredServerUsername' => '1.3.6.1.4.1.9.9.543.1.3.2.1.6',
|
||||
'clmgmtDevCredServerPassword' => '1.3.6.1.4.1.9.9.543.1.3.2.1.7',
|
||||
'clmgmtDevCredExportFile' => '1.3.6.1.4.1.9.9.543.1.3.2.1.8',
|
||||
'clmgmtDevCredCommand' => '1.3.6.1.4.1.9.9.543.1.3.2.1.9',
|
||||
'clmgmtDevCredCommandDefinition' => 'CISCO-LICENSE-MGMT-MIB::clmgmtDevCredCommand',
|
||||
'clmgmtDevCredCommandState' => '1.3.6.1.4.1.9.9.543.1.3.2.1.10',
|
||||
'clmgmtDevCredCommandStateDefinition' => 'CISCO-LICENSE-MGMT-MIB::ClmgmtLicenseActionState',
|
||||
'clmgmtDevCredCommandFailCause' => '1.3.6.1.4.1.9.9.543.1.3.2.1.11',
|
||||
'clmgmtDevCredCommandFailCauseDefinition' => 'CISCO-LICENSE-MGMT-MIB::clmgmtDevCredCommandFailCause',
|
||||
'clmgmtDevCredStorageType' => '1.3.6.1.4.1.9.9.543.1.3.2.1.12',
|
||||
'clmgmtDevCredRowStatus' => '1.3.6.1.4.1.9.9.543.1.3.2.1.13',
|
||||
'clmgmtLicenseNotifObjects' => '1.3.6.1.4.1.9.9.543.1.4',
|
||||
'clmgmtLicenseUsageNotifEnable' => '1.3.6.1.4.1.9.9.543.1.4.1',
|
||||
'clmgmtLicenseDeploymentNotifEnable' => '1.3.6.1.4.1.9.9.543.1.4.2',
|
||||
'clmgmtLicenseErrorNotifEnable' => '1.3.6.1.4.1.9.9.543.1.4.3',
|
||||
'ciscoLicenseMgmtMIBConform' => '1.3.6.1.4.1.9.9.543.2',
|
||||
'ciscoLicenseMgmtCompliances' => '1.3.6.1.4.1.9.9.543.2.1',
|
||||
'ciscoLicenseMgmtGroups' => '1.3.6.1.4.1.9.9.543.2.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'CISCO-LICENSE-MGMT-MIB'} = {
|
||||
'ClmgmtLicenseActionFailCause' => {
|
||||
'1' => 'none',
|
||||
'2' => 'generalFailure',
|
||||
'3' => 'transferProtocolNotSupported',
|
||||
'4' => 'fileServerNotReachable',
|
||||
'5' => 'unrecognizedEntPhysicalIndex',
|
||||
'6' => 'invalidLicenseFilePath',
|
||||
'7' => 'invalidLicenseFile',
|
||||
'8' => 'invalidLicenseLine',
|
||||
'9' => 'licenseAlreadyExists',
|
||||
'10' => 'licenseNotValidForDevice',
|
||||
'11' => 'invalidLicenseCount',
|
||||
'12' => 'invalidLicensePeriod',
|
||||
'13' => 'licenseInUse',
|
||||
'14' => 'invalidLicenseStore',
|
||||
'15' => 'licenseStorageFull',
|
||||
'16' => 'invalidPermissionTicketFile',
|
||||
'17' => 'invalidPermissionTicket',
|
||||
'18' => 'invalidRehostTicketFile',
|
||||
'19' => 'invalidRehostTicket',
|
||||
'20' => 'invalidLicenseBackupFile',
|
||||
'21' => 'licenseClearInProgress',
|
||||
'22' => 'invalidLicenseEULAFile',
|
||||
},
|
||||
'ClmgmtLicenseTransferProtocol' => {
|
||||
'1' => 'none',
|
||||
'2' => 'local',
|
||||
'3' => 'tftp',
|
||||
'4' => 'ftp',
|
||||
'5' => 'rcp',
|
||||
'6' => 'http',
|
||||
'7' => 'scp',
|
||||
'8' => 'sftp',
|
||||
},
|
||||
'clmgmtDevCredCommand' => {
|
||||
'1' => 'noOp',
|
||||
'2' => 'getDeviceCredentials',
|
||||
},
|
||||
'clmgmtDevCredCommandFailCause' => {
|
||||
'1' => 'none',
|
||||
'2' => 'unknownError',
|
||||
'3' => 'transferProtocolNotSupported',
|
||||
'4' => 'fileServerNotReachable',
|
||||
'5' => 'unrecognizedEntPhysicalIndex',
|
||||
'6' => 'invalidFile',
|
||||
},
|
||||
'clmgmtLicenseAction' => {
|
||||
'1' => 'noOp',
|
||||
'2' => 'install',
|
||||
'3' => 'clear',
|
||||
'4' => 'processPermissionTicket',
|
||||
'5' => 'regenerateLastRehostTicket',
|
||||
'6' => 'backup',
|
||||
'7' => 'generateEULA',
|
||||
},
|
||||
'clmgmtLicenseType' => {
|
||||
'1' => 'demo',
|
||||
'2' => 'extension',
|
||||
'3' => 'gracePeriod',
|
||||
'4' => 'permanent',
|
||||
'5' => 'paidSubscription',
|
||||
'6' => 'evaluationSubscription',
|
||||
'7' => 'extensionSubscription',
|
||||
'8' => 'evalRightToUse',
|
||||
'9' => 'rightToUse',
|
||||
'10' => 'permanentRightToUse',
|
||||
},
|
||||
'clmgmtLicenseStatus' => {
|
||||
'1' => 'inactive',
|
||||
'2' => 'notInUse',
|
||||
'3' => 'inUse',
|
||||
'4' => 'expiredInUse',
|
||||
'5' => 'expiredNotInUse',
|
||||
'6' => 'usageCountConsumed',
|
||||
},
|
||||
'ClmgmtLicenseActionState' => {
|
||||
'1' => 'none',
|
||||
'2' => 'pending',
|
||||
'3' => 'inProgress',
|
||||
'4' => 'successful',
|
||||
'5' => 'partiallySuccessful',
|
||||
'6' => 'failed',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,88 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::CISCOLWAPPCDPMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'CISCO-LWAPP-CDP-MIB'} = {
|
||||
url => '',
|
||||
name => 'CISCO-LWAPP-CDP-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'CISCO-LWAPP-CDP-MIB'} =
|
||||
'1.3.6.1.4.1.9.9.623';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'CISCO-LWAPP-CDP-MIB'} = {
|
||||
'ciscoLwappCdpMIB' => '1.3.6.1.4.1.9.9.623',
|
||||
'ciscoLwappCdpMIBNotifs' => '1.3.6.1.4.1.9.9.623.0',
|
||||
'ciscoLwappCdpMIBObjects' => '1.3.6.1.4.1.9.9.623.1',
|
||||
'clcCdpTraffic' => '1.3.6.1.4.1.9.9.623.1.1',
|
||||
'clcCdpInPackets' => '1.3.6.1.4.1.9.9.623.1.1.1',
|
||||
#'clcCdpInPacketsDefinition' => 'SNMPv2-SMI::Counter32',
|
||||
'clcCdpOutPackets' => '1.3.6.1.4.1.9.9.623.1.1.2',
|
||||
#'clcCdpOutPacketsDefinition' => 'SNMPv2-SMI::Counter32',
|
||||
'clcCdpChecksumErrorPackets' => '1.3.6.1.4.1.9.9.623.1.1.3',
|
||||
#'clcCdpChecksumErrorPacketsDefinition' => 'SNMPv2-SMI::Counter32',
|
||||
'clcCdpNoMemoryPackets' => '1.3.6.1.4.1.9.9.623.1.1.4',
|
||||
#'clcCdpNoMemoryPacketsDefinition' => 'SNMPv2-SMI::Counter32',
|
||||
'clcCdpInvalidPackets' => '1.3.6.1.4.1.9.9.623.1.1.5',
|
||||
#'clcCdpInvalidPacketsDefinition' => 'SNMPv2-SMI::Counter32',
|
||||
'clcCdpGlobalConfig' => '1.3.6.1.4.1.9.9.623.1.2',
|
||||
'clcCdpAdvtVersion' => '1.3.6.1.4.1.9.9.623.1.2.1',
|
||||
'clcCdpAdvtVersionDefinition' => 'CISCO-LWAPP-TC-MIB::CLCdpAdvtVersionType',
|
||||
'clcCdpMessageInterval' => '1.3.6.1.4.1.9.9.623.1.2.2',
|
||||
'clcCdpGlobalEnable' => '1.3.6.1.4.1.9.9.623.1.2.3',
|
||||
'clcCdpGlobalEnableDefinition' => 'SNMPv2-TC::TruthValue',
|
||||
'clcCdpApCacheStatus' => '1.3.6.1.4.1.9.9.623.1.3',
|
||||
'clcCdpApCacheTable' => '1.3.6.1.4.1.9.9.623.1.3.1',
|
||||
'clcCdpApCacheEntry' => '1.3.6.1.4.1.9.9.623.1.3.1.1',
|
||||
'clcCdpApCacheDeviceIndex' => '1.3.6.1.4.1.9.9.623.1.3.1.1.1',
|
||||
'clcCdpApCacheApName' => '1.3.6.1.4.1.9.9.623.1.3.1.1.2',
|
||||
#'clcCdpApCacheApNameDefinition' => 'SNMP-FRAMEWORK-MIB::SnmpAdminString',
|
||||
'clcCdpApCacheApAddressType' => '1.3.6.1.4.1.9.9.623.1.3.1.1.3',
|
||||
'clcCdpApCacheApAddressTypeDefinition' => 'INET-ADDRESS-MIB::InetAddressType',
|
||||
'clcCdpApCacheApAddress' => '1.3.6.1.4.1.9.9.623.1.3.1.1.4',
|
||||
#'clcCdpApCacheApAddressDefinition' => 'INET-ADDRESS-MIB::InetAddress',
|
||||
'clcCdpApCacheLocalInterface' => '1.3.6.1.4.1.9.9.623.1.3.1.1.5',
|
||||
#'clcCdpApCacheLocalInterfaceDefinition' => 'IF-MIB::InterfaceIndexOrZero',
|
||||
'clcCdpApCacheNeighName' => '1.3.6.1.4.1.9.9.623.1.3.1.1.6',
|
||||
#'clcCdpApCacheNeighNameDefinition' => 'SNMPv2-TC::DisplayString',
|
||||
'clcCdpApCacheNeighAddressType' => '1.3.6.1.4.1.9.9.623.1.3.1.1.7',
|
||||
'clcCdpApCacheNeighAddressTypeDefinition' => 'INET-ADDRESS-MIB::InetAddressType',
|
||||
'clcCdpApCacheNeighAddress' => '1.3.6.1.4.1.9.9.623.1.3.1.1.8',
|
||||
#'clcCdpApCacheNeighAddressDefinition' => 'INET-ADDRESS-MIB::InetAddress',
|
||||
'clcCdpApCacheNeighInterface' => '1.3.6.1.4.1.9.9.623.1.3.1.1.9',
|
||||
#'clcCdpApCacheNeighInterfaceDefinition' => 'SNMPv2-TC::DisplayString',
|
||||
'clcCdpApCacheNeighVersion' => '1.3.6.1.4.1.9.9.623.1.3.1.1.10',
|
||||
#'clcCdpApCacheNeighVersionDefinition' => 'SNMPv2-TC::DisplayString',
|
||||
'clcCdpApCacheAdvtVersion' => '1.3.6.1.4.1.9.9.623.1.3.1.1.11',
|
||||
'clcCdpApCacheAdvtVersionDefinition' => 'CISCO-LWAPP-TC-MIB::CLCdpAdvtVersionType',
|
||||
'clcCdpApCachePlatform' => '1.3.6.1.4.1.9.9.623.1.3.1.1.12',
|
||||
#'clcCdpApCachePlatformDefinition' => 'SNMPv2-TC::DisplayString',
|
||||
'clcCdpApCacheCapabilities' => '1.3.6.1.4.1.9.9.623.1.3.1.1.13',
|
||||
'clcCdpApCacheHoldtimeLeft' => '1.3.6.1.4.1.9.9.623.1.3.1.1.14',
|
||||
'clcCdpApCacheDuplex' => '1.3.6.1.4.1.9.9.623.1.3.1.1.15',
|
||||
'clcCdpApCacheDuplexDefinition' => 'CISCO-LWAPP-CDP-MIB::clcCdpApCacheDuplex',
|
||||
'clcCdpApCacheInterfaceSpeed' => '1.3.6.1.4.1.9.9.623.1.3.1.1.16',
|
||||
'clcCdpApCacheInterfaceSpeedDefinition' => 'CISCO-LWAPP-CDP-MIB::clcCdpApCacheInterfaceSpeed',
|
||||
'clcCdpApCacheConfig' => '1.3.6.1.4.1.9.9.623.1.4',
|
||||
'clcCdpApTable' => '1.3.6.1.4.1.9.9.623.1.4.1',
|
||||
'clcCdpApEntry' => '1.3.6.1.4.1.9.9.623.1.4.1.1',
|
||||
'clcCdpApCdpEnable' => '1.3.6.1.4.1.9.9.623.1.4.1.1.1',
|
||||
'clcCdpApCdpEnableDefinition' => 'SNMPv2-TC::TruthValue',
|
||||
'ciscoLwappCdpMIBConform' => '1.3.6.1.4.1.9.9.623.2',
|
||||
'ciscoLwappCdpMIBCompliances' => '1.3.6.1.4.1.9.9.623.2.1',
|
||||
'ciscoLwappCdpMIBGroups' => '1.3.6.1.4.1.9.9.623.2.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'CISCO-LWAPP-CDP-MIB'} = {
|
||||
'clcCdpApCacheDuplex' => {
|
||||
'1' => 'unknown',
|
||||
'2' => 'fullduplex',
|
||||
'3' => 'halfduplex',
|
||||
'4' => 'auto',
|
||||
},
|
||||
'clcCdpApCacheInterfaceSpeed' => {
|
||||
'1' => 'none',
|
||||
'2' => 'tenMbps',
|
||||
'3' => 'hundredMbps',
|
||||
'4' => 'thousandMbps',
|
||||
'5' => 'auto',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,227 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::CISCOPROCESSMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'CISCO-PROCESS-MIB'} = {
|
||||
url => '',
|
||||
name => 'CISCO-PROCESS-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'CISCO-PROCESS-MIB'} =
|
||||
'1.3.6.1.4.1.9.9.109';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'CISCO-PROCESS-MIB'} = {
|
||||
'ciscoProcessMIB' => '1.3.6.1.4.1.9.9.109',
|
||||
'ciscoProcessMIBObjects' => '1.3.6.1.4.1.9.9.109.1',
|
||||
'cpmCPU' => '1.3.6.1.4.1.9.9.109.1.1',
|
||||
'cpmCPUTotalTable' => '1.3.6.1.4.1.9.9.109.1.1.1',
|
||||
'cpmCPUTotalEntry' => '1.3.6.1.4.1.9.9.109.1.1.1.1',
|
||||
'cpmCPUTotalIndex' => '1.3.6.1.4.1.9.9.109.1.1.1.1.1',
|
||||
'cpmCPUTotalPhysicalIndex' => '1.3.6.1.4.1.9.9.109.1.1.1.1.2',
|
||||
'cpmCPUTotal5sec' => '1.3.6.1.4.1.9.9.109.1.1.1.1.3',
|
||||
'cpmCPUTotal1min' => '1.3.6.1.4.1.9.9.109.1.1.1.1.4',
|
||||
'cpmCPUTotal5min' => '1.3.6.1.4.1.9.9.109.1.1.1.1.5',
|
||||
'cpmCPUTotal5secRev' => '1.3.6.1.4.1.9.9.109.1.1.1.1.6',
|
||||
'cpmCPUTotal1minRev' => '1.3.6.1.4.1.9.9.109.1.1.1.1.7',
|
||||
'cpmCPUTotal5minRev' => '1.3.6.1.4.1.9.9.109.1.1.1.1.8',
|
||||
'cpmCPUMonInterval' => '1.3.6.1.4.1.9.9.109.1.1.1.1.9',
|
||||
'cpmCPUTotalMonIntervalValue' => '1.3.6.1.4.1.9.9.109.1.1.1.1.10',
|
||||
'cpmCPUInterruptMonIntervalValue' => '1.3.6.1.4.1.9.9.109.1.1.1.1.11',
|
||||
'cpmCPUMemoryUsed' => '1.3.6.1.4.1.9.9.109.1.1.1.1.12',
|
||||
'cpmCPUMemoryFree' => '1.3.6.1.4.1.9.9.109.1.1.1.1.13',
|
||||
'cpmCPUMemoryKernelReserved' => '1.3.6.1.4.1.9.9.109.1.1.1.1.14',
|
||||
'cpmCPUMemoryLowest' => '1.3.6.1.4.1.9.9.109.1.1.1.1.15',
|
||||
'cpmCPUMemoryUsedOvrflw' => '1.3.6.1.4.1.9.9.109.1.1.1.1.16',
|
||||
'cpmCPUMemoryHCUsed' => '1.3.6.1.4.1.9.9.109.1.1.1.1.17',
|
||||
'cpmCPUMemoryFreeOvrflw' => '1.3.6.1.4.1.9.9.109.1.1.1.1.18',
|
||||
'cpmCPUMemoryHCFree' => '1.3.6.1.4.1.9.9.109.1.1.1.1.19',
|
||||
'cpmCPUMemoryKernelReservedOvrflw' => '1.3.6.1.4.1.9.9.109.1.1.1.1.20',
|
||||
'cpmCPUMemoryHCKernelReserved' => '1.3.6.1.4.1.9.9.109.1.1.1.1.21',
|
||||
'cpmCPUMemoryLowestOvrflw' => '1.3.6.1.4.1.9.9.109.1.1.1.1.22',
|
||||
'cpmCPUMemoryHCLowest' => '1.3.6.1.4.1.9.9.109.1.1.1.1.23',
|
||||
'cpmCPULoadAvg1min' => '1.3.6.1.4.1.9.9.109.1.1.1.1.24',
|
||||
'cpmCPULoadAvg5min' => '1.3.6.1.4.1.9.9.109.1.1.1.1.25',
|
||||
'cpmCPULoadAvg15min' => '1.3.6.1.4.1.9.9.109.1.1.1.1.26',
|
||||
'cpmCPUMemoryCommitted' => '1.3.6.1.4.1.9.9.109.1.1.1.1.27',
|
||||
'cpmCPUMemoryCommittedOvrflw' => '1.3.6.1.4.1.9.9.109.1.1.1.1.28',
|
||||
'cpmCPUMemoryHCCommitted' => '1.3.6.1.4.1.9.9.109.1.1.1.1.29',
|
||||
'cpmCoreTable' => '1.3.6.1.4.1.9.9.109.1.1.2',
|
||||
'cpmCoreEntry' => '1.3.6.1.4.1.9.9.109.1.1.2.1',
|
||||
'cpmCoreIndex' => '1.3.6.1.4.1.9.9.109.1.1.2.1.1',
|
||||
'cpmCorePhysicalIndex' => '1.3.6.1.4.1.9.9.109.1.1.2.1.2',
|
||||
'cpmCore5sec' => '1.3.6.1.4.1.9.9.109.1.1.2.1.3',
|
||||
'cpmCore1min' => '1.3.6.1.4.1.9.9.109.1.1.2.1.4',
|
||||
'cpmCore5min' => '1.3.6.1.4.1.9.9.109.1.1.2.1.5',
|
||||
'cpmCoreLoadAvg1min' => '1.3.6.1.4.1.9.9.109.1.1.2.1.6',
|
||||
'cpmCoreLoadAvg5min' => '1.3.6.1.4.1.9.9.109.1.1.2.1.7',
|
||||
'cpmCoreLoadAvg15min' => '1.3.6.1.4.1.9.9.109.1.1.2.1.8',
|
||||
'cpmProcess' => '1.3.6.1.4.1.9.9.109.1.2',
|
||||
'cpmProcessTable' => '1.3.6.1.4.1.9.9.109.1.2.1',
|
||||
'cpmProcessEntry' => '1.3.6.1.4.1.9.9.109.1.2.1.1',
|
||||
'cpmProcessPID' => '1.3.6.1.4.1.9.9.109.1.2.1.1.1',
|
||||
'cpmProcessName' => '1.3.6.1.4.1.9.9.109.1.2.1.1.2',
|
||||
'cpmProcessuSecs' => '1.3.6.1.4.1.9.9.109.1.2.1.1.4',
|
||||
'cpmProcessTimeCreated' => '1.3.6.1.4.1.9.9.109.1.2.1.1.5',
|
||||
'cpmProcessAverageUSecs' => '1.3.6.1.4.1.9.9.109.1.2.1.1.6',
|
||||
'cpmProcessExtTable' => '1.3.6.1.4.1.9.9.109.1.2.2',
|
||||
'cpmProcessExtEntry' => '1.3.6.1.4.1.9.9.109.1.2.2.1',
|
||||
'cpmProcExtMemAllocated' => '1.3.6.1.4.1.9.9.109.1.2.2.1.1',
|
||||
'cpmProcExtMemFreed' => '1.3.6.1.4.1.9.9.109.1.2.2.1.2',
|
||||
'cpmProcExtInvoked' => '1.3.6.1.4.1.9.9.109.1.2.2.1.3',
|
||||
'cpmProcExtRuntime' => '1.3.6.1.4.1.9.9.109.1.2.2.1.4',
|
||||
'cpmProcExtUtil5Sec' => '1.3.6.1.4.1.9.9.109.1.2.2.1.5',
|
||||
'cpmProcExtUtil1Min' => '1.3.6.1.4.1.9.9.109.1.2.2.1.6',
|
||||
'cpmProcExtUtil5Min' => '1.3.6.1.4.1.9.9.109.1.2.2.1.7',
|
||||
'cpmProcExtPriority' => '1.3.6.1.4.1.9.9.109.1.2.2.1.8',
|
||||
'cpmProcExtPriorityDefinition' => 'CISCO-PROCESS-MIB::cpmProcExtPriority',
|
||||
'cpmProcessExtRevTable' => '1.3.6.1.4.1.9.9.109.1.2.3',
|
||||
'cpmProcessExtRevEntry' => '1.3.6.1.4.1.9.9.109.1.2.3.1',
|
||||
'cpmProcExtMemAllocatedRev' => '1.3.6.1.4.1.9.9.109.1.2.3.1.1',
|
||||
'cpmProcExtMemFreedRev' => '1.3.6.1.4.1.9.9.109.1.2.3.1.2',
|
||||
'cpmProcExtInvokedRev' => '1.3.6.1.4.1.9.9.109.1.2.3.1.3',
|
||||
'cpmProcExtRuntimeRev' => '1.3.6.1.4.1.9.9.109.1.2.3.1.4',
|
||||
'cpmProcExtUtil5SecRev' => '1.3.6.1.4.1.9.9.109.1.2.3.1.5',
|
||||
'cpmProcExtUtil1MinRev' => '1.3.6.1.4.1.9.9.109.1.2.3.1.6',
|
||||
'cpmProcExtUtil5MinRev' => '1.3.6.1.4.1.9.9.109.1.2.3.1.7',
|
||||
'cpmProcExtPriorityRev' => '1.3.6.1.4.1.9.9.109.1.2.3.1.8',
|
||||
'cpmProcExtPriorityRevDefinition' => 'CISCO-PROCESS-MIB::cpmProcExtPriorityRev',
|
||||
'cpmProcessType' => '1.3.6.1.4.1.9.9.109.1.2.3.1.9',
|
||||
'cpmProcessTypeDefinition' => 'CISCO-PROCESS-MIB::cpmProcessType',
|
||||
'cpmProcessRespawn' => '1.3.6.1.4.1.9.9.109.1.2.3.1.10',
|
||||
'cpmProcessRespawnCount' => '1.3.6.1.4.1.9.9.109.1.2.3.1.11',
|
||||
'cpmProcessRespawnAfterLastPatch' => '1.3.6.1.4.1.9.9.109.1.2.3.1.12',
|
||||
'cpmProcessMemoryCore' => '1.3.6.1.4.1.9.9.109.1.2.3.1.13',
|
||||
'cpmProcessMemoryCoreDefinition' => 'CISCO-PROCESS-MIB::cpmProcessMemoryCore',
|
||||
'cpmProcessLastRestartUser' => '1.3.6.1.4.1.9.9.109.1.2.3.1.14',
|
||||
'cpmProcessTextSegmentSize' => '1.3.6.1.4.1.9.9.109.1.2.3.1.15',
|
||||
'cpmProcessDataSegmentSize' => '1.3.6.1.4.1.9.9.109.1.2.3.1.16',
|
||||
'cpmProcessStackSize' => '1.3.6.1.4.1.9.9.109.1.2.3.1.17',
|
||||
'cpmProcessDynamicMemorySize' => '1.3.6.1.4.1.9.9.109.1.2.3.1.18',
|
||||
'cpmProcExtMemAllocatedRevOvrflw' => '1.3.6.1.4.1.9.9.109.1.2.3.1.19',
|
||||
'cpmProcExtHCMemAllocatedRev' => '1.3.6.1.4.1.9.9.109.1.2.3.1.20',
|
||||
'cpmProcExtMemFreedRevOvrflw' => '1.3.6.1.4.1.9.9.109.1.2.3.1.21',
|
||||
'cpmProcExtHCMemFreedRev' => '1.3.6.1.4.1.9.9.109.1.2.3.1.22',
|
||||
'cpmProcessTextSegmentSizeOvrflw' => '1.3.6.1.4.1.9.9.109.1.2.3.1.23',
|
||||
'cpmProcessHCTextSegmentSize' => '1.3.6.1.4.1.9.9.109.1.2.3.1.24',
|
||||
'cpmProcessDataSegmentSizeOvrflw' => '1.3.6.1.4.1.9.9.109.1.2.3.1.25',
|
||||
'cpmProcessHCDataSegmentSize' => '1.3.6.1.4.1.9.9.109.1.2.3.1.26',
|
||||
'cpmProcessStackSizeOvrflw' => '1.3.6.1.4.1.9.9.109.1.2.3.1.27',
|
||||
'cpmProcessHCStackSize' => '1.3.6.1.4.1.9.9.109.1.2.3.1.28',
|
||||
'cpmProcessDynamicMemorySizeOvrflw' => '1.3.6.1.4.1.9.9.109.1.2.3.1.29',
|
||||
'cpmProcessHCDynamicMemorySize' => '1.3.6.1.4.1.9.9.109.1.2.3.1.30',
|
||||
'cpmCPUThresholdTable' => '1.3.6.1.4.1.9.9.109.1.2.4',
|
||||
'cpmCPUThresholdEntry' => '1.3.6.1.4.1.9.9.109.1.2.4.1',
|
||||
'cpmCPUThresholdClass' => '1.3.6.1.4.1.9.9.109.1.2.4.1.1',
|
||||
'cpmCPUThresholdClassDefinition' => 'CISCO-PROCESS-MIB::cpmCPUThresholdClass',
|
||||
'cpmCPURisingThresholdValue' => '1.3.6.1.4.1.9.9.109.1.2.4.1.2',
|
||||
'cpmCPURisingThresholdPeriod' => '1.3.6.1.4.1.9.9.109.1.2.4.1.3',
|
||||
'cpmCPUFallingThresholdValue' => '1.3.6.1.4.1.9.9.109.1.2.4.1.4',
|
||||
'cpmCPUFallingThresholdPeriod' => '1.3.6.1.4.1.9.9.109.1.2.4.1.5',
|
||||
'cpmCPUThresholdEntryStatus' => '1.3.6.1.4.1.9.9.109.1.2.4.1.6',
|
||||
'cpmCPUHistory' => '1.3.6.1.4.1.9.9.109.1.2.5',
|
||||
'cpmCPUHistoryThreshold' => '1.3.6.1.4.1.9.9.109.1.2.5.1',
|
||||
'cpmCPUHistorySize' => '1.3.6.1.4.1.9.9.109.1.2.5.2',
|
||||
'cpmCPUHistoryTable' => '1.3.6.1.4.1.9.9.109.1.2.5.3',
|
||||
'cpmCPUHistoryEntry' => '1.3.6.1.4.1.9.9.109.1.2.5.3.1',
|
||||
'cpmCPUHistoryReportId' => '1.3.6.1.4.1.9.9.109.1.2.5.3.1.1',
|
||||
'cpmCPUHistoryReportSize' => '1.3.6.1.4.1.9.9.109.1.2.5.3.1.2',
|
||||
'cpmCPUHistoryTotalUtil' => '1.3.6.1.4.1.9.9.109.1.2.5.3.1.3',
|
||||
'cpmCPUHistoryInterruptUtil' => '1.3.6.1.4.1.9.9.109.1.2.5.3.1.4',
|
||||
'cpmCPUHistoryCreatedTime' => '1.3.6.1.4.1.9.9.109.1.2.5.3.1.5',
|
||||
'cpmCPUProcessHistoryTable' => '1.3.6.1.4.1.9.9.109.1.2.5.4',
|
||||
'cpmCPUProcessHistoryEntry' => '1.3.6.1.4.1.9.9.109.1.2.5.4.1',
|
||||
'cpmCPUProcessHistoryIndex' => '1.3.6.1.4.1.9.9.109.1.2.5.4.1.1',
|
||||
'cpmCPUHistoryProcId' => '1.3.6.1.4.1.9.9.109.1.2.5.4.1.2',
|
||||
'cpmCPUHistoryProcName' => '1.3.6.1.4.1.9.9.109.1.2.5.4.1.3',
|
||||
'cpmCPUHistoryProcCreated' => '1.3.6.1.4.1.9.9.109.1.2.5.4.1.4',
|
||||
'cpmCPUHistoryProcUtil' => '1.3.6.1.4.1.9.9.109.1.2.5.4.1.5',
|
||||
'cpmThread' => '1.3.6.1.4.1.9.9.109.1.3',
|
||||
'cpmThreadTable' => '1.3.6.1.4.1.9.9.109.1.3.1',
|
||||
'cpmThreadEntry' => '1.3.6.1.4.1.9.9.109.1.3.1.1',
|
||||
'cpmThreadID' => '1.3.6.1.4.1.9.9.109.1.3.1.1.1',
|
||||
'cpmThreadName' => '1.3.6.1.4.1.9.9.109.1.3.1.1.2',
|
||||
'cpmThreadPriority' => '1.3.6.1.4.1.9.9.109.1.3.1.1.3',
|
||||
'cpmThreadState' => '1.3.6.1.4.1.9.9.109.1.3.1.1.4',
|
||||
'cpmThreadStateDefinition' => 'CISCO-PROCESS-MIB::cpmThreadState',
|
||||
'cpmThreadBlockingProcess' => '1.3.6.1.4.1.9.9.109.1.3.1.1.5',
|
||||
'cpmThreadCpuUtilization' => '1.3.6.1.4.1.9.9.109.1.3.1.1.6',
|
||||
'cpmThreadStackSize' => '1.3.6.1.4.1.9.9.109.1.3.1.1.7',
|
||||
'cpmThreadStackSizeOvrflw' => '1.3.6.1.4.1.9.9.109.1.3.1.1.8',
|
||||
'cpmThreadHCStackSize' => '1.3.6.1.4.1.9.9.109.1.3.1.1.9',
|
||||
'cpmVirtualProcess' => '1.3.6.1.4.1.9.9.109.1.4',
|
||||
'cpmVirtualProcessTable' => '1.3.6.1.4.1.9.9.109.1.4.1',
|
||||
'cpmVirtualProcessEntry' => '1.3.6.1.4.1.9.9.109.1.4.1.1',
|
||||
'cpmVirtualProcessID' => '1.3.6.1.4.1.9.9.109.1.4.1.1.1',
|
||||
'cpmVirtualProcessName' => '1.3.6.1.4.1.9.9.109.1.4.1.1.2',
|
||||
'cpmVirtualProcessUtil5Sec' => '1.3.6.1.4.1.9.9.109.1.4.1.1.3',
|
||||
'cpmVirtualProcessUtil1Min' => '1.3.6.1.4.1.9.9.109.1.4.1.1.4',
|
||||
'cpmVirtualProcessUtil5Min' => '1.3.6.1.4.1.9.9.109.1.4.1.1.5',
|
||||
'cpmVirtualProcessMemAllocated' => '1.3.6.1.4.1.9.9.109.1.4.1.1.6',
|
||||
'cpmVirtualProcessMemFreed' => '1.3.6.1.4.1.9.9.109.1.4.1.1.7',
|
||||
'cpmVirtualProcessInvokeCount' => '1.3.6.1.4.1.9.9.109.1.4.1.1.8',
|
||||
'cpmVirtualProcessRuntime' => '1.3.6.1.4.1.9.9.109.1.4.1.1.9',
|
||||
'cpmVirtualProcessMemAllocatedOvrflw' => '1.3.6.1.4.1.9.9.109.1.4.1.1.10',
|
||||
'cpmVirtualProcessHCMemAllocated' => '1.3.6.1.4.1.9.9.109.1.4.1.1.11',
|
||||
'cpmVirtualProcessMemFreedOvrflw' => '1.3.6.1.4.1.9.9.109.1.4.1.1.12',
|
||||
'cpmVirtualProcessHCMemFreed' => '1.3.6.1.4.1.9.9.109.1.4.1.1.13',
|
||||
'ciscoProcessMIBNotifPrefix' => '1.3.6.1.4.1.9.9.109.2',
|
||||
'ciscoProcessMIBNotifs' => '1.3.6.1.4.1.9.9.109.2.0',
|
||||
'ciscoProcessMIBConformance' => '1.3.6.1.4.1.9.9.109.3',
|
||||
'cpmCompliances' => '1.3.6.1.4.1.9.9.109.3.1',
|
||||
'cpmGroups' => '1.3.6.1.4.1.9.9.109.3.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'CISCO-PROCESS-MIB'} = {
|
||||
'cpmThreadState' => {
|
||||
'1' => 'other',
|
||||
'2' => 'dead',
|
||||
'3' => 'running',
|
||||
'4' => 'ready',
|
||||
'5' => 'stopped',
|
||||
'6' => 'send',
|
||||
'7' => 'receive',
|
||||
'8' => 'reply',
|
||||
'9' => 'stack',
|
||||
'10' => 'waitpage',
|
||||
'11' => 'sigsuspend',
|
||||
'12' => 'sigwaitinfo',
|
||||
'13' => 'nanosleep',
|
||||
'14' => 'mutex',
|
||||
'15' => 'condvar',
|
||||
'16' => 'join',
|
||||
'17' => 'intr',
|
||||
'18' => 'sem',
|
||||
},
|
||||
'cpmProcExtPriority' => {
|
||||
'1' => 'critical',
|
||||
'2' => 'high',
|
||||
'3' => 'normal',
|
||||
'4' => 'low',
|
||||
'5' => 'notAssigned',
|
||||
},
|
||||
'cpmProcExtPriorityRev' => {
|
||||
'1' => 'critical',
|
||||
'2' => 'high',
|
||||
'3' => 'normal',
|
||||
'4' => 'low',
|
||||
'5' => 'notAssigned',
|
||||
},
|
||||
'cpmProcessType' => {
|
||||
'1' => 'other',
|
||||
'2' => 'posix',
|
||||
'3' => 'ios',
|
||||
},
|
||||
'cpmProcessMemoryCore' => {
|
||||
'1' => 'other',
|
||||
'2' => 'mainmem',
|
||||
'3' => 'mainmemSharedmem',
|
||||
'4' => 'mainmemText',
|
||||
'5' => 'mainmemTextSharedmem',
|
||||
'6' => 'sharedmem',
|
||||
'7' => 'sparse',
|
||||
'8' => 'off',
|
||||
},
|
||||
'cpmCPUThresholdClass' => {
|
||||
'1' => 'total',
|
||||
'2' => 'interrupt',
|
||||
'3' => 'process',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,692 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::CISCORTTMONMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'CISCO-RTTMON-MIB'} = {
|
||||
url => '',
|
||||
name => 'CISCO-RTTMON-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'CISCO-RTTMON-MIB'} =
|
||||
'1.3.6.1.4.1.9.9.42';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'CISCO-RTTMON-MIB'} = {
|
||||
'ciscoRttMonMIB' => '1.3.6.1.4.1.9.9.42',
|
||||
'ciscoRttMonObjects' => '1.3.6.1.4.1.9.9.42.1',
|
||||
'rttMonAppl' => '1.3.6.1.4.1.9.9.42.1.1',
|
||||
'rttMonApplVersion' => '1.3.6.1.4.1.9.9.42.1.1.1',
|
||||
'rttMonApplMaxPacketDataSize' => '1.3.6.1.4.1.9.9.42.1.1.2',
|
||||
'rttMonApplTimeOfLastSet' => '1.3.6.1.4.1.9.9.42.1.1.3',
|
||||
'rttMonApplNumCtrlAdminEntry' => '1.3.6.1.4.1.9.9.42.1.1.4',
|
||||
'rttMonApplReset' => '1.3.6.1.4.1.9.9.42.1.1.5',
|
||||
'rttMonApplPreConfigedReset' => '1.3.6.1.4.1.9.9.42.1.1.6',
|
||||
'rttMonApplSupportedRttTypesTable' => '1.3.6.1.4.1.9.9.42.1.1.7',
|
||||
'rttMonApplSupportedRttTypesEntry' => '1.3.6.1.4.1.9.9.42.1.1.7.1',
|
||||
'rttMonApplSupportedRttTypes' => '1.3.6.1.4.1.9.9.42.1.1.7.1.1',
|
||||
'rttMonApplSupportedRttTypesValid' => '1.3.6.1.4.1.9.9.42.1.1.7.1.2',
|
||||
'rttMonApplSupportedProtocolsTable' => '1.3.6.1.4.1.9.9.42.1.1.8',
|
||||
'rttMonApplSupportedProtocolsEntry' => '1.3.6.1.4.1.9.9.42.1.1.8.1',
|
||||
'rttMonApplSupportedProtocols' => '1.3.6.1.4.1.9.9.42.1.1.8.1.1',
|
||||
'rttMonApplSupportedProtocolsValid' => '1.3.6.1.4.1.9.9.42.1.1.8.1.2',
|
||||
'rttMonApplPreConfigedTable' => '1.3.6.1.4.1.9.9.42.1.1.9',
|
||||
'rttMonApplPreConfigedEntry' => '1.3.6.1.4.1.9.9.42.1.1.9.1',
|
||||
'rttMonApplPreConfigedType' => '1.3.6.1.4.1.9.9.42.1.1.9.1.2',
|
||||
'rttMonApplPreConfigedTypeDefinition' => 'CISCO-RTTMON-MIB::rttMonApplPreConfigedType',
|
||||
'rttMonApplPreConfigedName' => '1.3.6.1.4.1.9.9.42.1.1.9.1.3',
|
||||
'rttMonApplPreConfigedValid' => '1.3.6.1.4.1.9.9.42.1.1.9.1.4',
|
||||
'rttMonApplProbeCapacity' => '1.3.6.1.4.1.9.9.42.1.1.10',
|
||||
'rttMonApplFreeMemLowWaterMark' => '1.3.6.1.4.1.9.9.42.1.1.11',
|
||||
'rttMonApplLatestSetError' => '1.3.6.1.4.1.9.9.42.1.1.12',
|
||||
'rttMonApplResponder' => '1.3.6.1.4.1.9.9.42.1.1.13',
|
||||
'rttMonApplAuthTable' => '1.3.6.1.4.1.9.9.42.1.1.14',
|
||||
'rttMonApplAuthEntry' => '1.3.6.1.4.1.9.9.42.1.1.14.1',
|
||||
'rttMonApplAuthIndex' => '1.3.6.1.4.1.9.9.42.1.1.14.1.1',
|
||||
'rttMonApplAuthKeyChain' => '1.3.6.1.4.1.9.9.42.1.1.14.1.2',
|
||||
'rttMonApplAuthKeyString1' => '1.3.6.1.4.1.9.9.42.1.1.14.1.3',
|
||||
'rttMonApplAuthKeyString2' => '1.3.6.1.4.1.9.9.42.1.1.14.1.4',
|
||||
'rttMonApplAuthKeyString3' => '1.3.6.1.4.1.9.9.42.1.1.14.1.5',
|
||||
'rttMonApplAuthKeyString4' => '1.3.6.1.4.1.9.9.42.1.1.14.1.6',
|
||||
'rttMonApplAuthKeyString5' => '1.3.6.1.4.1.9.9.42.1.1.14.1.7',
|
||||
'rttMonApplAuthStatus' => '1.3.6.1.4.1.9.9.42.1.1.14.1.8',
|
||||
'rttMonApplLpdGrpStatsReset' => '1.3.6.1.4.1.9.9.42.1.1.15',
|
||||
'rttMonCtrl' => '1.3.6.1.4.1.9.9.42.1.2',
|
||||
'rttMonCtrlAdminTable' => '1.3.6.1.4.1.9.9.42.1.2.1',
|
||||
'rttMonCtrlAdminEntry' => '1.3.6.1.4.1.9.9.42.1.2.1.1',
|
||||
'rttMonCtrlAdminIndex' => '1.3.6.1.4.1.9.9.42.1.2.1.1.1',
|
||||
'rttMonCtrlAdminOwner' => '1.3.6.1.4.1.9.9.42.1.2.1.1.2',
|
||||
'rttMonCtrlAdminTag' => '1.3.6.1.4.1.9.9.42.1.2.1.1.3',
|
||||
'rttMonCtrlAdminRttType' => '1.3.6.1.4.1.9.9.42.1.2.1.1.4',
|
||||
'rttMonCtrlAdminRttTypeDefinition' => 'CISCO-RTTMON-TC-MIB::RttMonRttType',
|
||||
'rttMonCtrlAdminThreshold' => '1.3.6.1.4.1.9.9.42.1.2.1.1.5',
|
||||
'rttMonCtrlAdminFrequency' => '1.3.6.1.4.1.9.9.42.1.2.1.1.6',
|
||||
'rttMonCtrlAdminTimeout' => '1.3.6.1.4.1.9.9.42.1.2.1.1.7',
|
||||
'rttMonCtrlAdminVerifyData' => '1.3.6.1.4.1.9.9.42.1.2.1.1.8',
|
||||
'rttMonCtrlAdminVerifyDataDefinition' => 'SNMPv2-TC-v1-MIB::TruthValue',
|
||||
'rttMonCtrlAdminStatus' => '1.3.6.1.4.1.9.9.42.1.2.1.1.9',
|
||||
'rttMonCtrlAdminStatusDefinition' => 'SNMPv2-TC-v1-MIB::RowStatus',
|
||||
|
||||
'rttMonCtrlAdminNvgen' => '1.3.6.1.4.1.9.9.42.1.2.1.1.10',
|
||||
'rttMonCtrlAdminNvgenDefinition' => 'SNMPv2-TC-v1-MIB::TruthValue',
|
||||
|
||||
'rttMonCtrlAdminGroupName' => '1.3.6.1.4.1.9.9.42.1.2.1.1.11',
|
||||
'rttMonCtrlAdminLongTag' => '1.3.6.1.4.1.9.9.42.1.2.1.1.12',
|
||||
'rttMonEchoAdminTable' => '1.3.6.1.4.1.9.9.42.1.2.2',
|
||||
'rttMonEchoAdminEntry' => '1.3.6.1.4.1.9.9.42.1.2.2.1',
|
||||
'rttMonEchoAdminProtocol' => '1.3.6.1.4.1.9.9.42.1.2.2.1.1',
|
||||
'rttMonEchoAdminProtocolDefinition' => 'CISCO-RTTMON-TC-MIB::RttMonProtocol',
|
||||
|
||||
'rttMonEchoAdminTargetAddress' => '1.3.6.1.4.1.9.9.42.1.2.2.1.2',
|
||||
'rttMonEchoAdminPktDataRequestSize' => '1.3.6.1.4.1.9.9.42.1.2.2.1.3',
|
||||
'rttMonEchoAdminPktDataResponseSize' => '1.3.6.1.4.1.9.9.42.1.2.2.1.4',
|
||||
'rttMonEchoAdminTargetPort' => '1.3.6.1.4.1.9.9.42.1.2.2.1.5',
|
||||
'rttMonEchoAdminSourceAddress' => '1.3.6.1.4.1.9.9.42.1.2.2.1.6',
|
||||
'rttMonEchoAdminSourcePort' => '1.3.6.1.4.1.9.9.42.1.2.2.1.7',
|
||||
'rttMonEchoAdminControlEnable' => '1.3.6.1.4.1.9.9.42.1.2.2.1.8',
|
||||
'rttMonEchoAdminControlEnableDefinition' => 'SNMPv2-TC-v1-MIB::TruthValue',
|
||||
|
||||
'rttMonEchoAdminTOS' => '1.3.6.1.4.1.9.9.42.1.2.2.1.9',
|
||||
'rttMonEchoAdminLSREnable' => '1.3.6.1.4.1.9.9.42.1.2.2.1.10',
|
||||
'rttMonEchoAdminTargetAddressString' => '1.3.6.1.4.1.9.9.42.1.2.2.1.11',
|
||||
'rttMonEchoAdminNameServer' => '1.3.6.1.4.1.9.9.42.1.2.2.1.12',
|
||||
'rttMonEchoAdminOperation' => '1.3.6.1.4.1.9.9.42.1.2.2.1.13',
|
||||
'rttMonEchoAdminHTTPVersion' => '1.3.6.1.4.1.9.9.42.1.2.2.1.14',
|
||||
'rttMonEchoAdminURL' => '1.3.6.1.4.1.9.9.42.1.2.2.1.15',
|
||||
'rttMonEchoAdminCache' => '1.3.6.1.4.1.9.9.42.1.2.2.1.16',
|
||||
'rttMonEchoAdminInterval' => '1.3.6.1.4.1.9.9.42.1.2.2.1.17',
|
||||
'rttMonEchoAdminNumPackets' => '1.3.6.1.4.1.9.9.42.1.2.2.1.18',
|
||||
'rttMonEchoAdminProxy' => '1.3.6.1.4.1.9.9.42.1.2.2.1.19',
|
||||
'rttMonEchoAdminString1' => '1.3.6.1.4.1.9.9.42.1.2.2.1.20',
|
||||
'rttMonEchoAdminString2' => '1.3.6.1.4.1.9.9.42.1.2.2.1.21',
|
||||
'rttMonEchoAdminString3' => '1.3.6.1.4.1.9.9.42.1.2.2.1.22',
|
||||
'rttMonEchoAdminString4' => '1.3.6.1.4.1.9.9.42.1.2.2.1.23',
|
||||
'rttMonEchoAdminString5' => '1.3.6.1.4.1.9.9.42.1.2.2.1.24',
|
||||
'rttMonEchoAdminMode' => '1.3.6.1.4.1.9.9.42.1.2.2.1.25',
|
||||
'rttMonEchoAdminVrfName' => '1.3.6.1.4.1.9.9.42.1.2.2.1.26',
|
||||
'rttMonEchoAdminCodecType' => '1.3.6.1.4.1.9.9.42.1.2.2.1.27',
|
||||
'rttMonEchoAdminCodecTypeDefinition' => 'CISCO-RTTMON-TC-MIB::RttMonCodecType',
|
||||
|
||||
'rttMonEchoAdminCodecInterval' => '1.3.6.1.4.1.9.9.42.1.2.2.1.28',
|
||||
'rttMonEchoAdminCodecPayload' => '1.3.6.1.4.1.9.9.42.1.2.2.1.29',
|
||||
'rttMonEchoAdminCodecNumPackets' => '1.3.6.1.4.1.9.9.42.1.2.2.1.30',
|
||||
'rttMonEchoAdminICPIFAdvFactor' => '1.3.6.1.4.1.9.9.42.1.2.2.1.31',
|
||||
'rttMonEchoAdminLSPFECType' => '1.3.6.1.4.1.9.9.42.1.2.2.1.32',
|
||||
'rttMonEchoAdminLSPFECTypeDefinition' => 'CISCO-RTTMON-MIB::rttMonEchoAdminLSPFECType',
|
||||
'rttMonEchoAdminLSPSelector' => '1.3.6.1.4.1.9.9.42.1.2.2.1.33',
|
||||
'rttMonEchoAdminLSPReplyMode' => '1.3.6.1.4.1.9.9.42.1.2.2.1.34',
|
||||
'rttMonEchoAdminLSPTTL' => '1.3.6.1.4.1.9.9.42.1.2.2.1.35',
|
||||
'rttMonEchoAdminLSPExp' => '1.3.6.1.4.1.9.9.42.1.2.2.1.36',
|
||||
'rttMonEchoAdminPrecision' => '1.3.6.1.4.1.9.9.42.1.2.2.1.37',
|
||||
'rttMonEchoAdminPrecisionDefinition' => 'CISCO-RTTMON-MIB::rttMonEchoAdminPrecision',
|
||||
'rttMonEchoAdminProbePakPriority' => '1.3.6.1.4.1.9.9.42.1.2.2.1.38',
|
||||
'rttMonEchoAdminProbePakPriorityDefinition' => 'CISCO-RTTMON-MIB::rttMonEchoAdminProbePakPriority',
|
||||
'rttMonEchoAdminOWNTPSyncTolAbs' => '1.3.6.1.4.1.9.9.42.1.2.2.1.39',
|
||||
'rttMonEchoAdminOWNTPSyncTolPct' => '1.3.6.1.4.1.9.9.42.1.2.2.1.40',
|
||||
'rttMonEchoAdminOWNTPSyncTolType' => '1.3.6.1.4.1.9.9.42.1.2.2.1.41',
|
||||
'rttMonEchoAdminOWNTPSyncTolTypeDefinition' => 'CISCO-RTTMON-MIB::rttMonEchoAdminOWNTPSyncTolType',
|
||||
'rttMonEchoAdminCalledNumber' => '1.3.6.1.4.1.9.9.42.1.2.2.1.42',
|
||||
'rttMonEchoAdminDetectPoint' => '1.3.6.1.4.1.9.9.42.1.2.2.1.43',
|
||||
'rttMonEchoAdminGKRegistration' => '1.3.6.1.4.1.9.9.42.1.2.2.1.44',
|
||||
'rttMonEchoAdminSourceVoicePort' => '1.3.6.1.4.1.9.9.42.1.2.2.1.45',
|
||||
'rttMonEchoAdminCallDuration' => '1.3.6.1.4.1.9.9.42.1.2.2.1.46',
|
||||
'rttMonEchoAdminLSPReplyDscp' => '1.3.6.1.4.1.9.9.42.1.2.2.1.47',
|
||||
'rttMonEchoAdminLSPNullShim' => '1.3.6.1.4.1.9.9.42.1.2.2.1.48',
|
||||
'rttMonEchoAdminTargetMPID' => '1.3.6.1.4.1.9.9.42.1.2.2.1.49',
|
||||
'rttMonEchoAdminTargetDomainName' => '1.3.6.1.4.1.9.9.42.1.2.2.1.50',
|
||||
'rttMonEchoAdminTargetVLAN' => '1.3.6.1.4.1.9.9.42.1.2.2.1.51',
|
||||
'rttMonEchoAdminEthernetCOS' => '1.3.6.1.4.1.9.9.42.1.2.2.1.52',
|
||||
'rttMonEchoAdminLSPVccvID' => '1.3.6.1.4.1.9.9.42.1.2.2.1.53',
|
||||
'rttMonEchoAdminTargetEVC' => '1.3.6.1.4.1.9.9.42.1.2.2.1.54',
|
||||
'rttMonEchoAdminTargetMEPPort' => '1.3.6.1.4.1.9.9.42.1.2.2.1.55',
|
||||
'rttMonEchoAdminVideoTrafficProfile' => '1.3.6.1.4.1.9.9.42.1.2.2.1.56',
|
||||
'rttMonEchoAdminDscp' => '1.3.6.1.4.1.9.9.42.1.2.2.1.57',
|
||||
'rttMonEchoAdminReserveDsp' => '1.3.6.1.4.1.9.9.42.1.2.2.1.58',
|
||||
'rttMonEchoAdminReserveDspDefinition' => 'CISCO-RTTMON-MIB::rttMonEchoAdminReserveDsp',
|
||||
'rttMonEchoAdminInputInterface' => '1.3.6.1.4.1.9.9.42.1.2.2.1.59',
|
||||
'rttMonEchoAdminEmulateSourceAddress' => '1.3.6.1.4.1.9.9.42.1.2.2.1.60',
|
||||
'rttMonEchoAdminEmulateSourcePort' => '1.3.6.1.4.1.9.9.42.1.2.2.1.61',
|
||||
'rttMonEchoAdminEmulateTargetAddress' => '1.3.6.1.4.1.9.9.42.1.2.2.1.62',
|
||||
'rttMonEchoAdminEmulateTargetPort' => '1.3.6.1.4.1.9.9.42.1.2.2.1.63',
|
||||
'rttMonEchoAdminTargetMacAddress' => '1.3.6.1.4.1.9.9.42.1.2.2.1.64',
|
||||
'rttMonEchoAdminSourceMacAddress' => '1.3.6.1.4.1.9.9.42.1.2.2.1.65',
|
||||
'rttMonEchoAdminSourceMPID' => '1.3.6.1.4.1.9.9.42.1.2.2.1.66',
|
||||
'rttMonEchoAdminEndPointListName' => '1.3.6.1.4.1.9.9.42.1.2.2.1.67',
|
||||
'rttMonEchoAdminSSM' => '1.3.6.1.4.1.9.9.42.1.2.2.1.68',
|
||||
'rttMonEchoAdminControlRetry' => '1.3.6.1.4.1.9.9.42.1.2.2.1.69',
|
||||
'rttMonEchoAdminControlTimeout' => '1.3.6.1.4.1.9.9.42.1.2.2.1.70',
|
||||
'rttMonEchoAdminIgmpTreeInit' => '1.3.6.1.4.1.9.9.42.1.2.2.1.71',
|
||||
'rttMonEchoAdminEnableBurst' => '1.3.6.1.4.1.9.9.42.1.2.2.1.72',
|
||||
'rttMonEchoAdminAggBurstCycles' => '1.3.6.1.4.1.9.9.42.1.2.2.1.73',
|
||||
'rttMonEchoAdminLossRatioNumFrames' => '1.3.6.1.4.1.9.9.42.1.2.2.1.74',
|
||||
'rttMonEchoAdminAvailNumFrames' => '1.3.6.1.4.1.9.9.42.1.2.2.1.75',
|
||||
'rttMonEchoAdminTstampOptimization' => '1.3.6.1.4.1.9.9.42.1.2.2.1.76',
|
||||
'rttMonEchoAdminTargetSwitchId' => '1.3.6.1.4.1.9.9.42.1.2.2.1.77',
|
||||
'rttMonEchoAdminProfileId' => '1.3.6.1.4.1.9.9.42.1.2.2.1.78',
|
||||
'rttMonEchoAdminOutputInterface' => '1.3.6.1.4.1.9.9.42.1.2.2.1.79',
|
||||
'rttMonFileIOAdminTable' => '1.3.6.1.4.1.9.9.42.1.2.3',
|
||||
'rttMonFileIOAdminEntry' => '1.3.6.1.4.1.9.9.42.1.2.3.1',
|
||||
'rttMonFileIOAdminFilePath' => '1.3.6.1.4.1.9.9.42.1.2.3.1.1',
|
||||
'rttMonFileIOAdminSize' => '1.3.6.1.4.1.9.9.42.1.2.3.1.2',
|
||||
'rttMonFileIOAdminSizeDefinition' => 'CISCO-RTTMON-MIB::rttMonFileIOAdminSize',
|
||||
'rttMonFileIOAdminAction' => '1.3.6.1.4.1.9.9.42.1.2.3.1.3',
|
||||
'rttMonFileIOAdminActionDefinition' => 'CISCO-RTTMON-MIB::rttMonFileIOAdminAction',
|
||||
'rttMonScriptAdminTable' => '1.3.6.1.4.1.9.9.42.1.2.4',
|
||||
'rttMonScriptAdminEntry' => '1.3.6.1.4.1.9.9.42.1.2.4.1',
|
||||
'rttMonScriptAdminName' => '1.3.6.1.4.1.9.9.42.1.2.4.1.1',
|
||||
'rttMonScriptAdminCmdLineParams' => '1.3.6.1.4.1.9.9.42.1.2.4.1.2',
|
||||
'rttMonScheduleAdminTable' => '1.3.6.1.4.1.9.9.42.1.2.5',
|
||||
'rttMonScheduleAdminEntry' => '1.3.6.1.4.1.9.9.42.1.2.5.1',
|
||||
'rttMonScheduleAdminRttLife' => '1.3.6.1.4.1.9.9.42.1.2.5.1.1',
|
||||
'rttMonScheduleAdminRttStartTime' => '1.3.6.1.4.1.9.9.42.1.2.5.1.2',
|
||||
'rttMonScheduleAdminConceptRowAgeout' => '1.3.6.1.4.1.9.9.42.1.2.5.1.3',
|
||||
'rttMonScheduleAdminRttRecurring' => '1.3.6.1.4.1.9.9.42.1.2.5.1.4',
|
||||
'rttMonScheduleAdminConceptRowAgeoutV2' => '1.3.6.1.4.1.9.9.42.1.2.5.1.5',
|
||||
'rttMonScheduleAdminStartType' => '1.3.6.1.4.1.9.9.42.1.2.5.1.6',
|
||||
'rttMonScheduleAdminStartDelay' => '1.3.6.1.4.1.9.9.42.1.2.5.1.7',
|
||||
'rttMonReactAdminTable' => '1.3.6.1.4.1.9.9.42.1.2.6',
|
||||
'rttMonReactAdminEntry' => '1.3.6.1.4.1.9.9.42.1.2.6.1',
|
||||
'rttMonReactAdminConnectionEnable' => '1.3.6.1.4.1.9.9.42.1.2.6.1.1',
|
||||
'rttMonReactAdminTimeoutEnable' => '1.3.6.1.4.1.9.9.42.1.2.6.1.2',
|
||||
'rttMonReactAdminThresholdType' => '1.3.6.1.4.1.9.9.42.1.2.6.1.3',
|
||||
'rttMonReactAdminThresholdTypeDefinition' => 'CISCO-RTTMON-MIB::rttMonReactAdminThresholdType',
|
||||
'rttMonReactAdminThresholdFalling' => '1.3.6.1.4.1.9.9.42.1.2.6.1.4',
|
||||
'rttMonReactAdminThresholdCount' => '1.3.6.1.4.1.9.9.42.1.2.6.1.5',
|
||||
'rttMonReactAdminThresholdCount2' => '1.3.6.1.4.1.9.9.42.1.2.6.1.6',
|
||||
'rttMonReactAdminActionType' => '1.3.6.1.4.1.9.9.42.1.2.6.1.7',
|
||||
'rttMonReactAdminActionTypeDefinition' => 'CISCO-RTTMON-MIB::rttMonReactAdminActionType',
|
||||
'rttMonReactAdminVerifyErrorEnable' => '1.3.6.1.4.1.9.9.42.1.2.6.1.8',
|
||||
'rttMonStatisticsAdminTable' => '1.3.6.1.4.1.9.9.42.1.2.7',
|
||||
'rttMonStatisticsAdminEntry' => '1.3.6.1.4.1.9.9.42.1.2.7.1',
|
||||
'rttMonStatisticsAdminNumHourGroups' => '1.3.6.1.4.1.9.9.42.1.2.7.1.1',
|
||||
'rttMonStatisticsAdminNumPaths' => '1.3.6.1.4.1.9.9.42.1.2.7.1.2',
|
||||
'rttMonStatisticsAdminNumHops' => '1.3.6.1.4.1.9.9.42.1.2.7.1.3',
|
||||
'rttMonStatisticsAdminNumDistBuckets' => '1.3.6.1.4.1.9.9.42.1.2.7.1.4',
|
||||
'rttMonStatisticsAdminDistInterval' => '1.3.6.1.4.1.9.9.42.1.2.7.1.5',
|
||||
'rttMonHistoryAdminTable' => '1.3.6.1.4.1.9.9.42.1.2.8',
|
||||
'rttMonHistoryAdminEntry' => '1.3.6.1.4.1.9.9.42.1.2.8.1',
|
||||
'rttMonHistoryAdminNumLives' => '1.3.6.1.4.1.9.9.42.1.2.8.1.1',
|
||||
'rttMonHistoryAdminNumBuckets' => '1.3.6.1.4.1.9.9.42.1.2.8.1.2',
|
||||
'rttMonHistoryAdminNumSamples' => '1.3.6.1.4.1.9.9.42.1.2.8.1.3',
|
||||
'rttMonHistoryAdminFilter' => '1.3.6.1.4.1.9.9.42.1.2.8.1.4',
|
||||
'rttMonHistoryAdminFilterDefinition' => 'CISCO-RTTMON-MIB::rttMonHistoryAdminFilter',
|
||||
'rttMonCtrlOperTable' => '1.3.6.1.4.1.9.9.42.1.2.9',
|
||||
'rttMonCtrlOperEntry' => '1.3.6.1.4.1.9.9.42.1.2.9.1',
|
||||
'rttMonCtrlOperModificationTime' => '1.3.6.1.4.1.9.9.42.1.2.9.1.1',
|
||||
'rttMonCtrlOperDiagText' => '1.3.6.1.4.1.9.9.42.1.2.9.1.2',
|
||||
'rttMonCtrlOperResetTime' => '1.3.6.1.4.1.9.9.42.1.2.9.1.3',
|
||||
'rttMonCtrlOperOctetsInUse' => '1.3.6.1.4.1.9.9.42.1.2.9.1.4',
|
||||
'rttMonCtrlOperConnectionLostOccurred' => '1.3.6.1.4.1.9.9.42.1.2.9.1.5',
|
||||
'rttMonCtrlOperConnectionLostOccurredDefinition' => 'SNMPv2-TC-v1-MIB::TruthValue',
|
||||
'rttMonCtrlOperTimeoutOccurred' => '1.3.6.1.4.1.9.9.42.1.2.9.1.6',
|
||||
'rttMonCtrlOperTimeoutOccurredDefinition' => 'SNMPv2-TC-v1-MIB::TruthValue',
|
||||
'rttMonCtrlOperOverThresholdOccurred' => '1.3.6.1.4.1.9.9.42.1.2.9.1.7',
|
||||
'rttMonCtrlOperOverThresholdOccurredDefinition' => 'SNMPv2-TC-v1-MIB::TruthValue',
|
||||
'rttMonCtrlOperNumRtts' => '1.3.6.1.4.1.9.9.42.1.2.9.1.8',
|
||||
'rttMonCtrlOperRttLife' => '1.3.6.1.4.1.9.9.42.1.2.9.1.9',
|
||||
'rttMonCtrlOperState' => '1.3.6.1.4.1.9.9.42.1.2.9.1.10',
|
||||
'rttMonCtrlOperStateDefinition' => 'CISCO-RTTMON-MIB::rttMonCtrlOperState',
|
||||
'rttMonCtrlOperVerifyErrorOccurred' => '1.3.6.1.4.1.9.9.42.1.2.9.1.11',
|
||||
'rttMonCtrlOperVerifyErrorOccurredDefinition' => 'SNMPv2-TC-v1-MIB::TruthValue',
|
||||
'rttMonLatestRttOperTable' => '1.3.6.1.4.1.9.9.42.1.2.10',
|
||||
'rttMonLatestRttOperEntry' => '1.3.6.1.4.1.9.9.42.1.2.10.1',
|
||||
'rttMonLatestRttOperCompletionTime' => '1.3.6.1.4.1.9.9.42.1.2.10.1.1',
|
||||
'rttMonLatestRttOperSense' => '1.3.6.1.4.1.9.9.42.1.2.10.1.2',
|
||||
'rttMonLatestRttOperSenseDefinition' => 'CISCO-RTTMON-TC-MIB::RttResponseSense',
|
||||
|
||||
'rttMonLatestRttOperApplSpecificSense' => '1.3.6.1.4.1.9.9.42.1.2.10.1.3',
|
||||
'rttMonLatestRttOperSenseDescription' => '1.3.6.1.4.1.9.9.42.1.2.10.1.4',
|
||||
'rttMonLatestRttOperTime' => '1.3.6.1.4.1.9.9.42.1.2.10.1.5',
|
||||
'rttMonLatestRttOperAddress' => '1.3.6.1.4.1.9.9.42.1.2.10.1.6',
|
||||
'rttMonReactTriggerAdminTable' => '1.3.6.1.4.1.9.9.42.1.2.11',
|
||||
'rttMonReactTriggerAdminEntry' => '1.3.6.1.4.1.9.9.42.1.2.11.1',
|
||||
'rttMonReactTriggerAdminRttMonCtrlAdminIndex' => '1.3.6.1.4.1.9.9.42.1.2.11.1.1',
|
||||
'rttMonReactTriggerAdminStatus' => '1.3.6.1.4.1.9.9.42.1.2.11.1.2',
|
||||
'rttMonReactTriggerOperTable' => '1.3.6.1.4.1.9.9.42.1.2.12',
|
||||
'rttMonReactTriggerOperEntry' => '1.3.6.1.4.1.9.9.42.1.2.12.1',
|
||||
'rttMonReactTriggerOperState' => '1.3.6.1.4.1.9.9.42.1.2.12.1.1',
|
||||
'rttMonReactTriggerOperStateDefinition' => 'CISCO-RTTMON-MIB::rttMonReactTriggerOperState',
|
||||
'rttMonEchoPathAdminTable' => '1.3.6.1.4.1.9.9.42.1.2.13',
|
||||
'rttMonEchoPathAdminEntry' => '1.3.6.1.4.1.9.9.42.1.2.13.1',
|
||||
'rttMonEchoPathAdminHopIndex' => '1.3.6.1.4.1.9.9.42.1.2.13.1.1',
|
||||
'rttMonEchoPathAdminHopAddress' => '1.3.6.1.4.1.9.9.42.1.2.13.1.2',
|
||||
'rttMonGrpScheduleAdminTable' => '1.3.6.1.4.1.9.9.42.1.2.14',
|
||||
'rttMonGrpScheduleAdminEntry' => '1.3.6.1.4.1.9.9.42.1.2.14.1',
|
||||
'rttMonGrpScheduleAdminIndex' => '1.3.6.1.4.1.9.9.42.1.2.14.1.1',
|
||||
'rttMonGrpScheduleAdminProbes' => '1.3.6.1.4.1.9.9.42.1.2.14.1.2',
|
||||
'rttMonGrpScheduleAdminPeriod' => '1.3.6.1.4.1.9.9.42.1.2.14.1.3',
|
||||
'rttMonGrpScheduleAdminFrequency' => '1.3.6.1.4.1.9.9.42.1.2.14.1.4',
|
||||
'rttMonGrpScheduleAdminLife' => '1.3.6.1.4.1.9.9.42.1.2.14.1.5',
|
||||
'rttMonGrpScheduleAdminAgeout' => '1.3.6.1.4.1.9.9.42.1.2.14.1.6',
|
||||
'rttMonGrpScheduleAdminStatus' => '1.3.6.1.4.1.9.9.42.1.2.14.1.7',
|
||||
'rttMonGrpScheduleAdminFreqMax' => '1.3.6.1.4.1.9.9.42.1.2.14.1.8',
|
||||
'rttMonGrpScheduleAdminFreqMin' => '1.3.6.1.4.1.9.9.42.1.2.14.1.9',
|
||||
'rttMonGrpScheduleAdminStartTime' => '1.3.6.1.4.1.9.9.42.1.2.14.1.10',
|
||||
'rttMonGrpScheduleAdminAdd' => '1.3.6.1.4.1.9.9.42.1.2.14.1.11',
|
||||
'rttMonGrpScheduleAdminDelete' => '1.3.6.1.4.1.9.9.42.1.2.14.1.12',
|
||||
'rttMonGrpScheduleAdminReset' => '1.3.6.1.4.1.9.9.42.1.2.14.1.13',
|
||||
'rttMonGrpScheduleAdminStartType' => '1.3.6.1.4.1.9.9.42.1.2.14.1.14',
|
||||
'rttMonGrpScheduleAdminStartDelay' => '1.3.6.1.4.1.9.9.42.1.2.14.1.15',
|
||||
'rttMplsVpnMonCtrlTable' => '1.3.6.1.4.1.9.9.42.1.2.15',
|
||||
'rttMplsVpnMonCtrlEntry' => '1.3.6.1.4.1.9.9.42.1.2.15.1',
|
||||
'rttMplsVpnMonCtrlIndex' => '1.3.6.1.4.1.9.9.42.1.2.15.1.1',
|
||||
'rttMplsVpnMonCtrlRttType' => '1.3.6.1.4.1.9.9.42.1.2.15.1.2',
|
||||
'rttMplsVpnMonCtrlVrfName' => '1.3.6.1.4.1.9.9.42.1.2.15.1.3',
|
||||
'rttMplsVpnMonCtrlTag' => '1.3.6.1.4.1.9.9.42.1.2.15.1.4',
|
||||
'rttMplsVpnMonCtrlThreshold' => '1.3.6.1.4.1.9.9.42.1.2.15.1.5',
|
||||
'rttMplsVpnMonCtrlTimeout' => '1.3.6.1.4.1.9.9.42.1.2.15.1.6',
|
||||
'rttMplsVpnMonCtrlScanInterval' => '1.3.6.1.4.1.9.9.42.1.2.15.1.7',
|
||||
'rttMplsVpnMonCtrlDelScanFactor' => '1.3.6.1.4.1.9.9.42.1.2.15.1.8',
|
||||
'rttMplsVpnMonCtrlEXP' => '1.3.6.1.4.1.9.9.42.1.2.15.1.9',
|
||||
'rttMplsVpnMonCtrlRequestSize' => '1.3.6.1.4.1.9.9.42.1.2.15.1.10',
|
||||
'rttMplsVpnMonCtrlVerifyData' => '1.3.6.1.4.1.9.9.42.1.2.15.1.11',
|
||||
'rttMplsVpnMonCtrlStorageType' => '1.3.6.1.4.1.9.9.42.1.2.15.1.12',
|
||||
'rttMplsVpnMonCtrlProbeList' => '1.3.6.1.4.1.9.9.42.1.2.15.1.13',
|
||||
'rttMplsVpnMonCtrlStatus' => '1.3.6.1.4.1.9.9.42.1.2.15.1.14',
|
||||
'rttMplsVpnMonCtrlLpd' => '1.3.6.1.4.1.9.9.42.1.2.15.1.15',
|
||||
'rttMplsVpnMonCtrlLpdGrpList' => '1.3.6.1.4.1.9.9.42.1.2.15.1.16',
|
||||
'rttMplsVpnMonCtrlLpdCompTime' => '1.3.6.1.4.1.9.9.42.1.2.15.1.17',
|
||||
'rttMplsVpnMonTypeTable' => '1.3.6.1.4.1.9.9.42.1.2.16',
|
||||
'rttMplsVpnMonTypeEntry' => '1.3.6.1.4.1.9.9.42.1.2.16.1',
|
||||
'rttMplsVpnMonTypeInterval' => '1.3.6.1.4.1.9.9.42.1.2.16.1.1',
|
||||
'rttMplsVpnMonTypeNumPackets' => '1.3.6.1.4.1.9.9.42.1.2.16.1.2',
|
||||
'rttMplsVpnMonTypeDestPort' => '1.3.6.1.4.1.9.9.42.1.2.16.1.3',
|
||||
'rttMplsVpnMonTypeSecFreqType' => '1.3.6.1.4.1.9.9.42.1.2.16.1.4',
|
||||
'rttMplsVpnMonTypeSecFreqTypeDefinition' => 'CISCO-RTTMON-MIB::rttMplsVpnMonTypeSecFreqType',
|
||||
'rttMplsVpnMonTypeSecFreqValue' => '1.3.6.1.4.1.9.9.42.1.2.16.1.5',
|
||||
'rttMplsVpnMonTypeLspSelector' => '1.3.6.1.4.1.9.9.42.1.2.16.1.6',
|
||||
'rttMplsVpnMonTypeLSPReplyMode' => '1.3.6.1.4.1.9.9.42.1.2.16.1.7',
|
||||
'rttMplsVpnMonTypeLSPTTL' => '1.3.6.1.4.1.9.9.42.1.2.16.1.8',
|
||||
'rttMplsVpnMonTypeLSPReplyDscp' => '1.3.6.1.4.1.9.9.42.1.2.16.1.9',
|
||||
'rttMplsVpnMonTypeLpdMaxSessions' => '1.3.6.1.4.1.9.9.42.1.2.16.1.10',
|
||||
'rttMplsVpnMonTypeLpdSessTimeout' => '1.3.6.1.4.1.9.9.42.1.2.16.1.11',
|
||||
'rttMplsVpnMonTypeLpdEchoTimeout' => '1.3.6.1.4.1.9.9.42.1.2.16.1.12',
|
||||
'rttMplsVpnMonTypeLpdEchoInterval' => '1.3.6.1.4.1.9.9.42.1.2.16.1.13',
|
||||
'rttMplsVpnMonTypeLpdEchoNullShim' => '1.3.6.1.4.1.9.9.42.1.2.16.1.14',
|
||||
'rttMplsVpnMonTypeLpdScanPeriod' => '1.3.6.1.4.1.9.9.42.1.2.16.1.15',
|
||||
'rttMplsVpnMonTypeLpdStatHours' => '1.3.6.1.4.1.9.9.42.1.2.16.1.16',
|
||||
'rttMplsVpnMonScheduleTable' => '1.3.6.1.4.1.9.9.42.1.2.17',
|
||||
'rttMplsVpnMonScheduleEntry' => '1.3.6.1.4.1.9.9.42.1.2.17.1',
|
||||
'rttMplsVpnMonScheduleRttStartTime' => '1.3.6.1.4.1.9.9.42.1.2.17.1.1',
|
||||
'rttMplsVpnMonSchedulePeriod' => '1.3.6.1.4.1.9.9.42.1.2.17.1.2',
|
||||
'rttMplsVpnMonScheduleFrequency' => '1.3.6.1.4.1.9.9.42.1.2.17.1.3',
|
||||
'rttMplsVpnMonReactTable' => '1.3.6.1.4.1.9.9.42.1.2.18',
|
||||
'rttMplsVpnMonReactEntry' => '1.3.6.1.4.1.9.9.42.1.2.18.1',
|
||||
'rttMplsVpnMonReactConnectionEnable' => '1.3.6.1.4.1.9.9.42.1.2.18.1.1',
|
||||
'rttMplsVpnMonReactTimeoutEnable' => '1.3.6.1.4.1.9.9.42.1.2.18.1.2',
|
||||
'rttMplsVpnMonReactThresholdType' => '1.3.6.1.4.1.9.9.42.1.2.18.1.3',
|
||||
'rttMplsVpnMonReactThresholdTypeDefinition' => 'CISCO-RTTMON-MIB::rttMplsVpnMonReactThresholdType',
|
||||
'rttMplsVpnMonReactThresholdCount' => '1.3.6.1.4.1.9.9.42.1.2.18.1.4',
|
||||
'rttMplsVpnMonReactActionType' => '1.3.6.1.4.1.9.9.42.1.2.18.1.5',
|
||||
'rttMplsVpnMonReactActionTypeDefinition' => 'CISCO-RTTMON-MIB::rttMplsVpnMonReactActionType',
|
||||
'rttMplsVpnMonReactLpdNotifyType' => '1.3.6.1.4.1.9.9.42.1.2.18.1.6',
|
||||
'rttMplsVpnMonReactLpdNotifyTypeDefinition' => 'CISCO-RTTMON-MIB::rttMplsVpnMonReactLpdNotifyType',
|
||||
'rttMplsVpnMonReactLpdRetryCount' => '1.3.6.1.4.1.9.9.42.1.2.18.1.7',
|
||||
'rttMonReactTable' => '1.3.6.1.4.1.9.9.42.1.2.19',
|
||||
'rttMonReactEntry' => '1.3.6.1.4.1.9.9.42.1.2.19.1',
|
||||
'rttMonReactConfigIndex' => '1.3.6.1.4.1.9.9.42.1.2.19.1.1',
|
||||
'rttMonReactVar' => '1.3.6.1.4.1.9.9.42.1.2.19.1.2',
|
||||
'rttMonReactThresholdType' => '1.3.6.1.4.1.9.9.42.1.2.19.1.3',
|
||||
'rttMonReactThresholdTypeDefinition' => 'CISCO-RTTMON-MIB::rttMonReactThresholdType',
|
||||
'rttMonReactActionType' => '1.3.6.1.4.1.9.9.42.1.2.19.1.4',
|
||||
'rttMonReactActionTypeDefinition' => 'CISCO-RTTMON-MIB::rttMonReactActionType',
|
||||
'rttMonReactThresholdRising' => '1.3.6.1.4.1.9.9.42.1.2.19.1.5',
|
||||
'rttMonReactThresholdFalling' => '1.3.6.1.4.1.9.9.42.1.2.19.1.6',
|
||||
'rttMonReactThresholdCountX' => '1.3.6.1.4.1.9.9.42.1.2.19.1.7',
|
||||
'rttMonReactThresholdCountY' => '1.3.6.1.4.1.9.9.42.1.2.19.1.8',
|
||||
'rttMonReactValue' => '1.3.6.1.4.1.9.9.42.1.2.19.1.9',
|
||||
'rttMonReactOccurred' => '1.3.6.1.4.1.9.9.42.1.2.19.1.10',
|
||||
'rttMonReactStatus' => '1.3.6.1.4.1.9.9.42.1.2.19.1.11',
|
||||
'rttMonGeneratedOperTable' => '1.3.6.1.4.1.9.9.42.1.2.20',
|
||||
'rttMonGeneratedOperEntry' => '1.3.6.1.4.1.9.9.42.1.2.20.1',
|
||||
'rttMonGeneratedOperRespIpAddrType' => '1.3.6.1.4.1.9.9.42.1.2.20.1.1',
|
||||
'rttMonGeneratedOperRespIpAddr' => '1.3.6.1.4.1.9.9.42.1.2.20.1.2',
|
||||
'rttMonGeneratedOperCtrlAdminIndex' => '1.3.6.1.4.1.9.9.42.1.2.20.1.3',
|
||||
'rttMonStats' => '1.3.6.1.4.1.9.9.42.1.3',
|
||||
'rttMonStatsCaptureTable' => '1.3.6.1.4.1.9.9.42.1.3.1',
|
||||
'rttMonStatsCaptureEntry' => '1.3.6.1.4.1.9.9.42.1.3.1.1',
|
||||
'rttMonStatsCaptureStartTimeIndex' => '1.3.6.1.4.1.9.9.42.1.3.1.1.1',
|
||||
'rttMonStatsCapturePathIndex' => '1.3.6.1.4.1.9.9.42.1.3.1.1.2',
|
||||
'rttMonStatsCaptureHopIndex' => '1.3.6.1.4.1.9.9.42.1.3.1.1.3',
|
||||
'rttMonStatsCaptureDistIndex' => '1.3.6.1.4.1.9.9.42.1.3.1.1.4',
|
||||
'rttMonStatsCaptureCompletions' => '1.3.6.1.4.1.9.9.42.1.3.1.1.5',
|
||||
'rttMonStatsCaptureOverThresholds' => '1.3.6.1.4.1.9.9.42.1.3.1.1.6',
|
||||
'rttMonStatsCaptureSumCompletionTime' => '1.3.6.1.4.1.9.9.42.1.3.1.1.7',
|
||||
'rttMonStatsCaptureSumCompletionTime2Low' => '1.3.6.1.4.1.9.9.42.1.3.1.1.8',
|
||||
'rttMonStatsCaptureSumCompletionTime2High' => '1.3.6.1.4.1.9.9.42.1.3.1.1.9',
|
||||
'rttMonStatsCaptureCompletionTimeMax' => '1.3.6.1.4.1.9.9.42.1.3.1.1.10',
|
||||
'rttMonStatsCaptureCompletionTimeMin' => '1.3.6.1.4.1.9.9.42.1.3.1.1.11',
|
||||
'rttMonStatsCollectTable' => '1.3.6.1.4.1.9.9.42.1.3.2',
|
||||
'rttMonStatsCollectEntry' => '1.3.6.1.4.1.9.9.42.1.3.2.1',
|
||||
'rttMonStatsCollectNumDisconnects' => '1.3.6.1.4.1.9.9.42.1.3.2.1.1',
|
||||
'rttMonStatsCollectTimeouts' => '1.3.6.1.4.1.9.9.42.1.3.2.1.2',
|
||||
'rttMonStatsCollectBusies' => '1.3.6.1.4.1.9.9.42.1.3.2.1.3',
|
||||
'rttMonStatsCollectNoConnections' => '1.3.6.1.4.1.9.9.42.1.3.2.1.4',
|
||||
'rttMonStatsCollectDrops' => '1.3.6.1.4.1.9.9.42.1.3.2.1.5',
|
||||
'rttMonStatsCollectSequenceErrors' => '1.3.6.1.4.1.9.9.42.1.3.2.1.6',
|
||||
'rttMonStatsCollectVerifyErrors' => '1.3.6.1.4.1.9.9.42.1.3.2.1.7',
|
||||
'rttMonStatsCollectAddress' => '1.3.6.1.4.1.9.9.42.1.3.2.1.8',
|
||||
'rttMonControlEnableErrors' => '1.3.6.1.4.1.9.9.42.1.3.2.1.9',
|
||||
'rttMonStatsRetrieveErrors' => '1.3.6.1.4.1.9.9.42.1.3.2.1.10',
|
||||
'rttMonStatsCollectCtrlEnErrors' => '1.3.6.1.4.1.9.9.42.1.3.2.1.11',
|
||||
'rttMonStatsCollectRetrieveErrors' => '1.3.6.1.4.1.9.9.42.1.3.2.1.12',
|
||||
'rttMonStatsTotalsTable' => '1.3.6.1.4.1.9.9.42.1.3.3',
|
||||
'rttMonStatsTotalsEntry' => '1.3.6.1.4.1.9.9.42.1.3.3.1',
|
||||
'rttMonStatsTotalsElapsedTime' => '1.3.6.1.4.1.9.9.42.1.3.3.1.1',
|
||||
'rttMonStatsTotalsInitiations' => '1.3.6.1.4.1.9.9.42.1.3.3.1.2',
|
||||
'rttMonHTTPStatsTable' => '1.3.6.1.4.1.9.9.42.1.3.4',
|
||||
'rttMonHTTPStatsEntry' => '1.3.6.1.4.1.9.9.42.1.3.4.1',
|
||||
'rttMonHTTPStatsStartTimeIndex' => '1.3.6.1.4.1.9.9.42.1.3.4.1.1',
|
||||
'rttMonHTTPStatsCompletions' => '1.3.6.1.4.1.9.9.42.1.3.4.1.2',
|
||||
'rttMonHTTPStatsOverThresholds' => '1.3.6.1.4.1.9.9.42.1.3.4.1.3',
|
||||
'rttMonHTTPStatsRTTSum' => '1.3.6.1.4.1.9.9.42.1.3.4.1.4',
|
||||
'rttMonHTTPStatsRTTSum2Low' => '1.3.6.1.4.1.9.9.42.1.3.4.1.5',
|
||||
'rttMonHTTPStatsRTTSum2High' => '1.3.6.1.4.1.9.9.42.1.3.4.1.6',
|
||||
'rttMonHTTPStatsRTTMin' => '1.3.6.1.4.1.9.9.42.1.3.4.1.7',
|
||||
'rttMonHTTPStatsRTTMax' => '1.3.6.1.4.1.9.9.42.1.3.4.1.8',
|
||||
'rttMonHTTPStatsDNSRTTSum' => '1.3.6.1.4.1.9.9.42.1.3.4.1.9',
|
||||
'rttMonHTTPStatsTCPConnectRTTSum' => '1.3.6.1.4.1.9.9.42.1.3.4.1.10',
|
||||
'rttMonHTTPStatsTransactionRTTSum' => '1.3.6.1.4.1.9.9.42.1.3.4.1.11',
|
||||
'rttMonHTTPStatsMessageBodyOctetsSum' => '1.3.6.1.4.1.9.9.42.1.3.4.1.12',
|
||||
'rttMonHTTPStatsDNSServerTimeout' => '1.3.6.1.4.1.9.9.42.1.3.4.1.13',
|
||||
'rttMonHTTPStatsTCPConnectTimeout' => '1.3.6.1.4.1.9.9.42.1.3.4.1.14',
|
||||
'rttMonHTTPStatsTransactionTimeout' => '1.3.6.1.4.1.9.9.42.1.3.4.1.15',
|
||||
'rttMonHTTPStatsDNSQueryError' => '1.3.6.1.4.1.9.9.42.1.3.4.1.16',
|
||||
'rttMonHTTPStatsHTTPError' => '1.3.6.1.4.1.9.9.42.1.3.4.1.17',
|
||||
'rttMonHTTPStatsError' => '1.3.6.1.4.1.9.9.42.1.3.4.1.18',
|
||||
'rttMonHTTPStatsBusies' => '1.3.6.1.4.1.9.9.42.1.3.4.1.19',
|
||||
'rttMonJitterStatsTable' => '1.3.6.1.4.1.9.9.42.1.3.5',
|
||||
'rttMonJitterStatsEntry' => '1.3.6.1.4.1.9.9.42.1.3.5.1',
|
||||
'rttMonJitterStatsStartTimeIndex' => '1.3.6.1.4.1.9.9.42.1.3.5.1.1',
|
||||
'rttMonJitterStatsCompletions' => '1.3.6.1.4.1.9.9.42.1.3.5.1.2',
|
||||
'rttMonJitterStatsOverThresholds' => '1.3.6.1.4.1.9.9.42.1.3.5.1.3',
|
||||
'rttMonJitterStatsNumOfRTT' => '1.3.6.1.4.1.9.9.42.1.3.5.1.4',
|
||||
'rttMonJitterStatsRTTSum' => '1.3.6.1.4.1.9.9.42.1.3.5.1.5',
|
||||
'rttMonJitterStatsRTTSum2Low' => '1.3.6.1.4.1.9.9.42.1.3.5.1.6',
|
||||
'rttMonJitterStatsRTTSum2High' => '1.3.6.1.4.1.9.9.42.1.3.5.1.7',
|
||||
'rttMonJitterStatsRTTMin' => '1.3.6.1.4.1.9.9.42.1.3.5.1.8',
|
||||
'rttMonJitterStatsRTTMax' => '1.3.6.1.4.1.9.9.42.1.3.5.1.9',
|
||||
'rttMonJitterStatsMinOfPositivesSD' => '1.3.6.1.4.1.9.9.42.1.3.5.1.10',
|
||||
'rttMonJitterStatsMaxOfPositivesSD' => '1.3.6.1.4.1.9.9.42.1.3.5.1.11',
|
||||
'rttMonJitterStatsNumOfPositivesSD' => '1.3.6.1.4.1.9.9.42.1.3.5.1.12',
|
||||
'rttMonJitterStatsSumOfPositivesSD' => '1.3.6.1.4.1.9.9.42.1.3.5.1.13',
|
||||
'rttMonJitterStatsSum2PositivesSDLow' => '1.3.6.1.4.1.9.9.42.1.3.5.1.14',
|
||||
'rttMonJitterStatsSum2PositivesSDHigh' => '1.3.6.1.4.1.9.9.42.1.3.5.1.15',
|
||||
'rttMonJitterStatsMinOfNegativesSD' => '1.3.6.1.4.1.9.9.42.1.3.5.1.16',
|
||||
'rttMonJitterStatsMaxOfNegativesSD' => '1.3.6.1.4.1.9.9.42.1.3.5.1.17',
|
||||
'rttMonJitterStatsNumOfNegativesSD' => '1.3.6.1.4.1.9.9.42.1.3.5.1.18',
|
||||
'rttMonJitterStatsSumOfNegativesSD' => '1.3.6.1.4.1.9.9.42.1.3.5.1.19',
|
||||
'rttMonJitterStatsSum2NegativesSDLow' => '1.3.6.1.4.1.9.9.42.1.3.5.1.20',
|
||||
'rttMonJitterStatsSum2NegativesSDHigh' => '1.3.6.1.4.1.9.9.42.1.3.5.1.21',
|
||||
'rttMonJitterStatsMinOfPositivesDS' => '1.3.6.1.4.1.9.9.42.1.3.5.1.22',
|
||||
'rttMonJitterStatsMaxOfPositivesDS' => '1.3.6.1.4.1.9.9.42.1.3.5.1.23',
|
||||
'rttMonJitterStatsNumOfPositivesDS' => '1.3.6.1.4.1.9.9.42.1.3.5.1.24',
|
||||
'rttMonJitterStatsSumOfPositivesDS' => '1.3.6.1.4.1.9.9.42.1.3.5.1.25',
|
||||
'rttMonJitterStatsSum2PositivesDSLow' => '1.3.6.1.4.1.9.9.42.1.3.5.1.26',
|
||||
'rttMonJitterStatsSum2PositivesDSHigh' => '1.3.6.1.4.1.9.9.42.1.3.5.1.27',
|
||||
'rttMonJitterStatsMinOfNegativesDS' => '1.3.6.1.4.1.9.9.42.1.3.5.1.28',
|
||||
'rttMonJitterStatsMaxOfNegativesDS' => '1.3.6.1.4.1.9.9.42.1.3.5.1.29',
|
||||
'rttMonJitterStatsNumOfNegativesDS' => '1.3.6.1.4.1.9.9.42.1.3.5.1.30',
|
||||
'rttMonJitterStatsSumOfNegativesDS' => '1.3.6.1.4.1.9.9.42.1.3.5.1.31',
|
||||
'rttMonJitterStatsSum2NegativesDSLow' => '1.3.6.1.4.1.9.9.42.1.3.5.1.32',
|
||||
'rttMonJitterStatsSum2NegativesDSHigh' => '1.3.6.1.4.1.9.9.42.1.3.5.1.33',
|
||||
'rttMonJitterStatsPacketLossSD' => '1.3.6.1.4.1.9.9.42.1.3.5.1.34',
|
||||
'rttMonJitterStatsPacketLossDS' => '1.3.6.1.4.1.9.9.42.1.3.5.1.35',
|
||||
'rttMonJitterStatsPacketOutOfSequence' => '1.3.6.1.4.1.9.9.42.1.3.5.1.36',
|
||||
'rttMonJitterStatsPacketMIA' => '1.3.6.1.4.1.9.9.42.1.3.5.1.37',
|
||||
'rttMonJitterStatsPacketLateArrival' => '1.3.6.1.4.1.9.9.42.1.3.5.1.38',
|
||||
'rttMonJitterStatsError' => '1.3.6.1.4.1.9.9.42.1.3.5.1.39',
|
||||
'rttMonJitterStatsBusies' => '1.3.6.1.4.1.9.9.42.1.3.5.1.40',
|
||||
'rttMonJitterStatsOWSumSD' => '1.3.6.1.4.1.9.9.42.1.3.5.1.41',
|
||||
'rttMonJitterStatsOWSum2SDLow' => '1.3.6.1.4.1.9.9.42.1.3.5.1.42',
|
||||
'rttMonJitterStatsOWSum2SDHigh' => '1.3.6.1.4.1.9.9.42.1.3.5.1.43',
|
||||
'rttMonJitterStatsOWMinSD' => '1.3.6.1.4.1.9.9.42.1.3.5.1.44',
|
||||
'rttMonJitterStatsOWMaxSD' => '1.3.6.1.4.1.9.9.42.1.3.5.1.45',
|
||||
'rttMonJitterStatsOWSumDS' => '1.3.6.1.4.1.9.9.42.1.3.5.1.46',
|
||||
'rttMonJitterStatsOWSum2DSLow' => '1.3.6.1.4.1.9.9.42.1.3.5.1.47',
|
||||
'rttMonJitterStatsOWSum2DSHigh' => '1.3.6.1.4.1.9.9.42.1.3.5.1.48',
|
||||
'rttMonJitterStatsOWMinDS' => '1.3.6.1.4.1.9.9.42.1.3.5.1.49',
|
||||
'rttMonJitterStatsOWMaxDS' => '1.3.6.1.4.1.9.9.42.1.3.5.1.50',
|
||||
'rttMonJitterStatsNumOfOW' => '1.3.6.1.4.1.9.9.42.1.3.5.1.51',
|
||||
'rttMonJitterStatsOWMinSDNew' => '1.3.6.1.4.1.9.9.42.1.3.5.1.52',
|
||||
'rttMonJitterStatsOWMaxSDNew' => '1.3.6.1.4.1.9.9.42.1.3.5.1.53',
|
||||
'rttMonJitterStatsOWMinDSNew' => '1.3.6.1.4.1.9.9.42.1.3.5.1.54',
|
||||
'rttMonJitterStatsOWMaxDSNew' => '1.3.6.1.4.1.9.9.42.1.3.5.1.55',
|
||||
'rttMonJitterStatsMinOfMOS' => '1.3.6.1.4.1.9.9.42.1.3.5.1.56',
|
||||
'rttMonJitterStatsMaxOfMOS' => '1.3.6.1.4.1.9.9.42.1.3.5.1.57',
|
||||
'rttMonJitterStatsMinOfICPIF' => '1.3.6.1.4.1.9.9.42.1.3.5.1.58',
|
||||
'rttMonJitterStatsMaxOfICPIF' => '1.3.6.1.4.1.9.9.42.1.3.5.1.59',
|
||||
'rttMonJitterStatsIAJOut' => '1.3.6.1.4.1.9.9.42.1.3.5.1.60',
|
||||
'rttMonJitterStatsIAJIn' => '1.3.6.1.4.1.9.9.42.1.3.5.1.61',
|
||||
'rttMonJitterStatsAvgJitter' => '1.3.6.1.4.1.9.9.42.1.3.5.1.62',
|
||||
'rttMonJitterStatsAvgJitterSD' => '1.3.6.1.4.1.9.9.42.1.3.5.1.63',
|
||||
'rttMonJitterStatsAvgJitterDS' => '1.3.6.1.4.1.9.9.42.1.3.5.1.64',
|
||||
'rttMonJitterStatsUnSyncRTs' => '1.3.6.1.4.1.9.9.42.1.3.5.1.65',
|
||||
'rttMonJitterStatsRTTSumHigh' => '1.3.6.1.4.1.9.9.42.1.3.5.1.66',
|
||||
'rttMonJitterStatsOWSumSDHigh' => '1.3.6.1.4.1.9.9.42.1.3.5.1.67',
|
||||
'rttMonJitterStatsOWSumDSHigh' => '1.3.6.1.4.1.9.9.42.1.3.5.1.68',
|
||||
'rttMonJitterStatsNumOverThresh' => '1.3.6.1.4.1.9.9.42.1.3.5.1.69',
|
||||
'rttMonLpdGrpStatsTable' => '1.3.6.1.4.1.9.9.42.1.3.7',
|
||||
'rttMonLpdGrpStatsEntry' => '1.3.6.1.4.1.9.9.42.1.3.7.1',
|
||||
'rttMonLpdGrpStatsGroupIndex' => '1.3.6.1.4.1.9.9.42.1.3.7.1.1',
|
||||
'rttMonLpdGrpStatsStartTimeIndex' => '1.3.6.1.4.1.9.9.42.1.3.7.1.2',
|
||||
'rttMonLpdGrpStatsTargetPE' => '1.3.6.1.4.1.9.9.42.1.3.7.1.3',
|
||||
'rttMonLpdGrpStatsNumOfPass' => '1.3.6.1.4.1.9.9.42.1.3.7.1.4',
|
||||
'rttMonLpdGrpStatsNumOfFail' => '1.3.6.1.4.1.9.9.42.1.3.7.1.5',
|
||||
'rttMonLpdGrpStatsNumOfTimeout' => '1.3.6.1.4.1.9.9.42.1.3.7.1.6',
|
||||
'rttMonLpdGrpStatsAvgRTT' => '1.3.6.1.4.1.9.9.42.1.3.7.1.7',
|
||||
'rttMonLpdGrpStatsMinRTT' => '1.3.6.1.4.1.9.9.42.1.3.7.1.8',
|
||||
'rttMonLpdGrpStatsMaxRTT' => '1.3.6.1.4.1.9.9.42.1.3.7.1.9',
|
||||
'rttMonLpdGrpStatsMinNumPaths' => '1.3.6.1.4.1.9.9.42.1.3.7.1.10',
|
||||
'rttMonLpdGrpStatsMaxNumPaths' => '1.3.6.1.4.1.9.9.42.1.3.7.1.11',
|
||||
'rttMonLpdGrpStatsLPDStartTime' => '1.3.6.1.4.1.9.9.42.1.3.7.1.12',
|
||||
'rttMonLpdGrpStatsLPDFailOccurred' => '1.3.6.1.4.1.9.9.42.1.3.7.1.13',
|
||||
'rttMonLpdGrpStatsLPDFailCause' => '1.3.6.1.4.1.9.9.42.1.3.7.1.14',
|
||||
'rttMonLpdGrpStatsLPDCompTime' => '1.3.6.1.4.1.9.9.42.1.3.7.1.15',
|
||||
'rttMonLpdGrpStatsGroupStatus' => '1.3.6.1.4.1.9.9.42.1.3.7.1.16',
|
||||
'rttMonLpdGrpStatsGroupProbeIndex' => '1.3.6.1.4.1.9.9.42.1.3.7.1.17',
|
||||
'rttMonLpdGrpStatsPathIds' => '1.3.6.1.4.1.9.9.42.1.3.7.1.18',
|
||||
'rttMonLpdGrpStatsProbeStatus' => '1.3.6.1.4.1.9.9.42.1.3.7.1.19',
|
||||
'rttMonLpdGrpStatsResetTime' => '1.3.6.1.4.1.9.9.42.1.3.7.1.20',
|
||||
'rttMonHistory' => '1.3.6.1.4.1.9.9.42.1.4',
|
||||
'rttMonHistoryCollectionTable' => '1.3.6.1.4.1.9.9.42.1.4.1',
|
||||
'rttMonHistoryCollectionEntry' => '1.3.6.1.4.1.9.9.42.1.4.1.1',
|
||||
'rttMonHistoryCollectionLifeIndex' => '1.3.6.1.4.1.9.9.42.1.4.1.1.1',
|
||||
'rttMonHistoryCollectionBucketIndex' => '1.3.6.1.4.1.9.9.42.1.4.1.1.2',
|
||||
'rttMonHistoryCollectionSampleIndex' => '1.3.6.1.4.1.9.9.42.1.4.1.1.3',
|
||||
'rttMonHistoryCollectionSampleTime' => '1.3.6.1.4.1.9.9.42.1.4.1.1.4',
|
||||
'rttMonHistoryCollectionAddress' => '1.3.6.1.4.1.9.9.42.1.4.1.1.5',
|
||||
'rttMonHistoryCollectionCompletionTime' => '1.3.6.1.4.1.9.9.42.1.4.1.1.6',
|
||||
'rttMonHistoryCollectionSense' => '1.3.6.1.4.1.9.9.42.1.4.1.1.7',
|
||||
'rttMonHistoryCollectionApplSpecificSense' => '1.3.6.1.4.1.9.9.42.1.4.1.1.8',
|
||||
'rttMonHistoryCollectionSenseDescription' => '1.3.6.1.4.1.9.9.42.1.4.1.1.9',
|
||||
'rttMonLatestOper' => '1.3.6.1.4.1.9.9.42.1.5',
|
||||
'rttMonLatestHTTPOperTable' => '1.3.6.1.4.1.9.9.42.1.5.1',
|
||||
'rttMonLatestHTTPOperEntry' => '1.3.6.1.4.1.9.9.42.1.5.1.1',
|
||||
'rttMonLatestHTTPOperRTT' => '1.3.6.1.4.1.9.9.42.1.5.1.1.1',
|
||||
'rttMonLatestHTTPOperDNSRTT' => '1.3.6.1.4.1.9.9.42.1.5.1.1.2',
|
||||
'rttMonLatestHTTPOperTCPConnectRTT' => '1.3.6.1.4.1.9.9.42.1.5.1.1.3',
|
||||
'rttMonLatestHTTPOperTransactionRTT' => '1.3.6.1.4.1.9.9.42.1.5.1.1.4',
|
||||
'rttMonLatestHTTPOperMessageBodyOctets' => '1.3.6.1.4.1.9.9.42.1.5.1.1.5',
|
||||
'rttMonLatestHTTPOperSense' => '1.3.6.1.4.1.9.9.42.1.5.1.1.6',
|
||||
'rttMonLatestHTTPErrorSenseDescription' => '1.3.6.1.4.1.9.9.42.1.5.1.1.7',
|
||||
'rttMonLatestJitterOperTable' => '1.3.6.1.4.1.9.9.42.1.5.2',
|
||||
'rttMonLatestJitterOperEntry' => '1.3.6.1.4.1.9.9.42.1.5.2.1',
|
||||
'rttMonLatestJitterOperNumOfRTT' => '1.3.6.1.4.1.9.9.42.1.5.2.1.1',
|
||||
'rttMonLatestJitterOperRTTSum' => '1.3.6.1.4.1.9.9.42.1.5.2.1.2',
|
||||
'rttMonLatestJitterOperRTTSum2' => '1.3.6.1.4.1.9.9.42.1.5.2.1.3',
|
||||
'rttMonLatestJitterOperRTTMin' => '1.3.6.1.4.1.9.9.42.1.5.2.1.4',
|
||||
'rttMonLatestJitterOperRTTMax' => '1.3.6.1.4.1.9.9.42.1.5.2.1.5',
|
||||
'rttMonLatestJitterOperMinOfPositivesSD' => '1.3.6.1.4.1.9.9.42.1.5.2.1.6',
|
||||
'rttMonLatestJitterOperMaxOfPositivesSD' => '1.3.6.1.4.1.9.9.42.1.5.2.1.7',
|
||||
'rttMonLatestJitterOperNumOfPositivesSD' => '1.3.6.1.4.1.9.9.42.1.5.2.1.8',
|
||||
'rttMonLatestJitterOperSumOfPositivesSD' => '1.3.6.1.4.1.9.9.42.1.5.2.1.9',
|
||||
'rttMonLatestJitterOperSum2PositivesSD' => '1.3.6.1.4.1.9.9.42.1.5.2.1.10',
|
||||
'rttMonLatestJitterOperMinOfNegativesSD' => '1.3.6.1.4.1.9.9.42.1.5.2.1.11',
|
||||
'rttMonLatestJitterOperMaxOfNegativesSD' => '1.3.6.1.4.1.9.9.42.1.5.2.1.12',
|
||||
'rttMonLatestJitterOperNumOfNegativesSD' => '1.3.6.1.4.1.9.9.42.1.5.2.1.13',
|
||||
'rttMonLatestJitterOperSumOfNegativesSD' => '1.3.6.1.4.1.9.9.42.1.5.2.1.14',
|
||||
'rttMonLatestJitterOperSum2NegativesSD' => '1.3.6.1.4.1.9.9.42.1.5.2.1.15',
|
||||
'rttMonLatestJitterOperMinOfPositivesDS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.16',
|
||||
'rttMonLatestJitterOperMaxOfPositivesDS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.17',
|
||||
'rttMonLatestJitterOperNumOfPositivesDS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.18',
|
||||
'rttMonLatestJitterOperSumOfPositivesDS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.19',
|
||||
'rttMonLatestJitterOperSum2PositivesDS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.20',
|
||||
'rttMonLatestJitterOperMinOfNegativesDS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.21',
|
||||
'rttMonLatestJitterOperMaxOfNegativesDS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.22',
|
||||
'rttMonLatestJitterOperNumOfNegativesDS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.23',
|
||||
'rttMonLatestJitterOperSumOfNegativesDS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.24',
|
||||
'rttMonLatestJitterOperSum2NegativesDS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.25',
|
||||
'rttMonLatestJitterOperPacketLossSD' => '1.3.6.1.4.1.9.9.42.1.5.2.1.26',
|
||||
'rttMonLatestJitterOperPacketLossDS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.27',
|
||||
'rttMonLatestJitterOperPacketOutOfSequence' => '1.3.6.1.4.1.9.9.42.1.5.2.1.28',
|
||||
'rttMonLatestJitterOperPacketMIA' => '1.3.6.1.4.1.9.9.42.1.5.2.1.29',
|
||||
'rttMonLatestJitterOperPacketLateArrival' => '1.3.6.1.4.1.9.9.42.1.5.2.1.30',
|
||||
'rttMonLatestJitterOperSense' => '1.3.6.1.4.1.9.9.42.1.5.2.1.31',
|
||||
'rttMonLatestJitterOperSenseDefinition' => 'CISCO-RTTMON-TC-MIB::RttResponseSense',
|
||||
|
||||
'rttMonLatestJitterErrorSenseDescription' => '1.3.6.1.4.1.9.9.42.1.5.2.1.32',
|
||||
'rttMonLatestJitterOperOWSumSD' => '1.3.6.1.4.1.9.9.42.1.5.2.1.33',
|
||||
'rttMonLatestJitterOperOWSum2SD' => '1.3.6.1.4.1.9.9.42.1.5.2.1.34',
|
||||
'rttMonLatestJitterOperOWMinSD' => '1.3.6.1.4.1.9.9.42.1.5.2.1.35',
|
||||
'rttMonLatestJitterOperOWMaxSD' => '1.3.6.1.4.1.9.9.42.1.5.2.1.36',
|
||||
'rttMonLatestJitterOperOWSumDS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.37',
|
||||
'rttMonLatestJitterOperOWSum2DS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.38',
|
||||
'rttMonLatestJitterOperOWMinDS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.39',
|
||||
'rttMonLatestJitterOperOWMaxDS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.40',
|
||||
'rttMonLatestJitterOperNumOfOW' => '1.3.6.1.4.1.9.9.42.1.5.2.1.41',
|
||||
'rttMonLatestJitterOperMOS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.42',
|
||||
'rttMonLatestJitterOperICPIF' => '1.3.6.1.4.1.9.9.42.1.5.2.1.43',
|
||||
'rttMonLatestJitterOperIAJOut' => '1.3.6.1.4.1.9.9.42.1.5.2.1.44',
|
||||
'rttMonLatestJitterOperIAJIn' => '1.3.6.1.4.1.9.9.42.1.5.2.1.45',
|
||||
'rttMonLatestJitterOperAvgJitter' => '1.3.6.1.4.1.9.9.42.1.5.2.1.46',
|
||||
'rttMonLatestJitterOperAvgSDJ' => '1.3.6.1.4.1.9.9.42.1.5.2.1.47',
|
||||
'rttMonLatestJitterOperAvgDSJ' => '1.3.6.1.4.1.9.9.42.1.5.2.1.48',
|
||||
'rttMonLatestJitterOperOWAvgSD' => '1.3.6.1.4.1.9.9.42.1.5.2.1.49',
|
||||
'rttMonLatestJitterOperOWAvgDS' => '1.3.6.1.4.1.9.9.42.1.5.2.1.50',
|
||||
'rttMonLatestJitterOperNTPState' => '1.3.6.1.4.1.9.9.42.1.5.2.1.51',
|
||||
'rttMonLatestJitterOperNTPStateDefinition' => 'CISCO-RTTMON-MIB::rttMonLatestJitterOperNTPState',
|
||||
'rttMonLatestJitterOperUnSyncRTs' => '1.3.6.1.4.1.9.9.42.1.5.2.1.52',
|
||||
'rttMonLatestJitterOperRTTSumHigh' => '1.3.6.1.4.1.9.9.42.1.5.2.1.53',
|
||||
'rttMonLatestJitterOperRTTSum2High' => '1.3.6.1.4.1.9.9.42.1.5.2.1.54',
|
||||
'rttMonLatestJitterOperOWSumSDHigh' => '1.3.6.1.4.1.9.9.42.1.5.2.1.55',
|
||||
'rttMonLatestJitterOperOWSum2SDHigh' => '1.3.6.1.4.1.9.9.42.1.5.2.1.56',
|
||||
'rttMonLatestJitterOperOWSumDSHigh' => '1.3.6.1.4.1.9.9.42.1.5.2.1.57',
|
||||
'rttMonLatestJitterOperOWSum2DSHigh' => '1.3.6.1.4.1.9.9.42.1.5.2.1.58',
|
||||
'rttMonLatestJitterOperNumOverThresh' => '1.3.6.1.4.1.9.9.42.1.5.2.1.59',
|
||||
'rttMonNotificationsPrefix' => '1.3.6.1.4.1.9.9.42.2',
|
||||
'rttMonNotifications' => '1.3.6.1.4.1.9.9.42.2.0',
|
||||
'ciscoRttMonMibConformance' => '1.3.6.1.4.1.9.9.42.3',
|
||||
'ciscoRttMonMibCompliances' => '1.3.6.1.4.1.9.9.42.3.1',
|
||||
'ciscoRttMonMibGroups' => '1.3.6.1.4.1.9.9.42.3.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'CISCO-RTTMON-MIB'} = {
|
||||
'rttMonReactAdminThresholdType' => {
|
||||
'1' => 'never',
|
||||
'2' => 'immediate',
|
||||
'3' => 'consecutive',
|
||||
'4' => 'xOfy',
|
||||
'5' => 'average',
|
||||
},
|
||||
'rttMonEchoAdminReserveDsp' => {
|
||||
'1' => 'be',
|
||||
'2' => 'gs',
|
||||
'3' => 'na',
|
||||
},
|
||||
'rttMonLatestJitterOperNTPState' => {
|
||||
'1' => 'sync',
|
||||
'2' => 'outOfSync',
|
||||
},
|
||||
'rttMonApplPreConfigedType' => {
|
||||
'1' => 'filePath',
|
||||
'2' => 'scriptName',
|
||||
},
|
||||
'rttMonFileIOAdminAction' => {
|
||||
'1' => 'write',
|
||||
'2' => 'read',
|
||||
'3' => 'writeRead',
|
||||
},
|
||||
'rttMplsVpnMonTypeSecFreqType' => {
|
||||
'1' => 'none',
|
||||
'2' => 'timeout',
|
||||
'3' => 'connectionLoss',
|
||||
'4' => 'both',
|
||||
},
|
||||
'rttMonCtrlOperState' => {
|
||||
'1' => 'reset',
|
||||
'2' => 'orderlyStop',
|
||||
'3' => 'immediateStop',
|
||||
'4' => 'pending',
|
||||
'5' => 'inactive',
|
||||
'6' => 'active',
|
||||
'7' => 'restart',
|
||||
},
|
||||
'rttMonReactActionType' => {
|
||||
'1' => 'none',
|
||||
'2' => 'trapOnly',
|
||||
'3' => 'triggerOnly',
|
||||
'4' => 'trapAndTrigger',
|
||||
},
|
||||
'rttMonHistoryAdminFilter' => {
|
||||
'1' => 'none',
|
||||
'2' => 'all',
|
||||
'3' => 'overThreshold',
|
||||
'4' => 'failures',
|
||||
},
|
||||
'rttMonEchoAdminLSPFECType' => {
|
||||
'1' => 'ldpIpv4Prefix',
|
||||
},
|
||||
'rttMplsVpnMonReactLpdNotifyType' => {
|
||||
'1' => 'none',
|
||||
'2' => 'lpdPathDiscovery',
|
||||
'3' => 'lpdGroupStatus',
|
||||
'4' => 'lpdAll',
|
||||
},
|
||||
'rttMonEchoAdminProbePakPriority' => {
|
||||
'1' => 'normal',
|
||||
'2' => 'high',
|
||||
},
|
||||
'rttMplsVpnMonReactThresholdType' => {
|
||||
'1' => 'never',
|
||||
'2' => 'immediate',
|
||||
'3' => 'consecutive',
|
||||
},
|
||||
'rttMplsVpnMonReactActionType' => {
|
||||
'1' => 'none',
|
||||
'2' => 'trapOnly',
|
||||
},
|
||||
'rttMonEchoAdminPrecision' => {
|
||||
'1' => 'milliseconds',
|
||||
'2' => 'microseconds',
|
||||
},
|
||||
'rttMonReactTriggerOperState' => {
|
||||
'1' => 'active',
|
||||
'2' => 'pending',
|
||||
},
|
||||
'rttMonReactAdminActionType' => {
|
||||
'1' => 'none',
|
||||
'2' => 'trapOnly',
|
||||
'3' => 'nmvtOnly',
|
||||
'4' => 'triggerOnly',
|
||||
'5' => 'trapAndNmvt',
|
||||
'6' => 'trapAndTrigger',
|
||||
'7' => 'nmvtAndTrigger',
|
||||
'8' => 'trapNmvtAndTrigger',
|
||||
},
|
||||
'rttMonFileIOAdminSize' => {
|
||||
'1' => 'n256',
|
||||
'2' => 'n1k',
|
||||
'3' => 'n64k',
|
||||
'4' => 'n128k',
|
||||
'5' => 'n256k',
|
||||
},
|
||||
'rttMonEchoAdminOWNTPSyncTolType' => {
|
||||
'1' => 'percent',
|
||||
'2' => 'absolute',
|
||||
},
|
||||
'rttMonReactThresholdType' => {
|
||||
'1' => 'never',
|
||||
'2' => 'immediate',
|
||||
'3' => 'consecutive',
|
||||
'4' => 'xOfy',
|
||||
'5' => 'average',
|
||||
},
|
||||
};
|
||||
|
||||
|
|
@ -1,246 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::CISCORTTMONTCMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'CISCO-RTTMON-TC-MIB'} = {
|
||||
url => '',
|
||||
name => 'CISCO-RTTMON-TC-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'CISCO-RTTMON-TC-MIB'} =
|
||||
'1.3.6.1.4.1.9.9.485';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'CISCO-RTTMON-TC-MIB'} = {
|
||||
'ciscoRttMonTCMIB' => '1.3.6.1.4.1.9.9.485',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'CISCO-RTTMON-TC-MIB'} = {
|
||||
'RttMonOperation' => {
|
||||
'0' => 'notApplicable',
|
||||
'1' => 'httpGet',
|
||||
'2' => 'httpRaw',
|
||||
'3' => 'ftpGet',
|
||||
'4' => 'ftpPassive',
|
||||
'5' => 'ftpActive',
|
||||
'6' => 'voipDTAlertRinging',
|
||||
'7' => 'voipDTConnectOK',
|
||||
},
|
||||
'RttResponseSense' => {
|
||||
'0' => 'other',
|
||||
'1' => 'ok',
|
||||
'2' => 'disconnected',
|
||||
'3' => 'overThreshold',
|
||||
'4' => 'timeout',
|
||||
'5' => 'busy',
|
||||
'6' => 'notConnected',
|
||||
'7' => 'dropped',
|
||||
'8' => 'sequenceError',
|
||||
'9' => 'verifyError',
|
||||
'10' => 'applicationSpecific',
|
||||
'11' => 'dnsServerTimeout',
|
||||
'12' => 'tcpConnectTimeout',
|
||||
'13' => 'httpTransactionTimeout',
|
||||
'14' => 'dnsQueryError',
|
||||
'15' => 'httpError',
|
||||
'16' => 'error',
|
||||
'17' => 'mplsLspEchoTxError',
|
||||
'18' => 'mplsLspUnreachable',
|
||||
'19' => 'mplsLspMalformedReq',
|
||||
'20' => 'mplsLspReachButNotFEC',
|
||||
'21' => 'enableOk',
|
||||
'22' => 'enableNoConnect',
|
||||
'23' => 'enableVersionFail',
|
||||
'24' => 'enableInternalError',
|
||||
'25' => 'enableAbort',
|
||||
'26' => 'enableFail',
|
||||
'27' => 'enableAuthFail',
|
||||
'28' => 'enableFormatError',
|
||||
'29' => 'enablePortInUse',
|
||||
'30' => 'statsRetrieveOk',
|
||||
'31' => 'statsRetrieveNoConnect',
|
||||
'32' => 'statsRetrieveVersionFail',
|
||||
'33' => 'statsRetrieveInternalError',
|
||||
'34' => 'statsRetrieveAbort',
|
||||
'35' => 'statsRetrieveFail',
|
||||
'36' => 'statsRetrieveAuthFail',
|
||||
'37' => 'statsRetrieveFormatError',
|
||||
'38' => 'statsRetrievePortInUse',
|
||||
},
|
||||
'RttMonCodecType' => {
|
||||
'0' => 'notApplicable',
|
||||
'1' => 'g711ulaw',
|
||||
'2' => 'g711alaw',
|
||||
'3' => 'g729a',
|
||||
},
|
||||
'RttMonIdLst' => {
|
||||
},
|
||||
'RttMplsVpnMonLpdGrpStatus' => {
|
||||
'1' => 'unknown',
|
||||
'2' => 'up',
|
||||
'3' => 'partial',
|
||||
'4' => 'down',
|
||||
},
|
||||
'RttMonLSPPingReplyMode' => {
|
||||
'1' => 'replyIpv4Udp',
|
||||
'2' => 'replyIpv4UdpRA',
|
||||
},
|
||||
'RttMonRttType' => {
|
||||
'1' => 'echo',
|
||||
'2' => 'pathEcho',
|
||||
'3' => 'fileIO',
|
||||
'4' => 'script',
|
||||
'5' => 'udpEcho',
|
||||
'6' => 'tcpConnect',
|
||||
'7' => 'http',
|
||||
'8' => 'dns',
|
||||
'9' => 'jitter',
|
||||
'10' => 'dlsw',
|
||||
'11' => 'dhcp',
|
||||
'12' => 'ftp',
|
||||
'13' => 'voip',
|
||||
'14' => 'rtp',
|
||||
'15' => 'lspGroup',
|
||||
'16' => 'icmpjitter',
|
||||
'17' => 'lspPing',
|
||||
'18' => 'lspTrace',
|
||||
'19' => 'ethernetPing',
|
||||
'20' => 'ethernetJitter',
|
||||
'21' => 'lspPingPseudowire',
|
||||
'22' => 'video',
|
||||
'23' => 'y1731Delay',
|
||||
'24' => 'y1731Loss',
|
||||
'25' => 'mcastJitter',
|
||||
'26' => 'fabricPathEcho',
|
||||
},
|
||||
'RttMonProtocol' => {
|
||||
'1' => 'notApplicable',
|
||||
'2' => 'ipIcmpEcho',
|
||||
'3' => 'ipUdpEchoAppl',
|
||||
'4' => 'snaRUEcho',
|
||||
'5' => 'snaLU0EchoAppl',
|
||||
'6' => 'snaLU2EchoAppl',
|
||||
'7' => 'snaLU62Echo',
|
||||
'8' => 'snaLU62EchoAppl',
|
||||
'9' => 'appleTalkEcho',
|
||||
'10' => 'appleTalkEchoAppl',
|
||||
'11' => 'decNetEcho',
|
||||
'12' => 'decNetEchoAppl',
|
||||
'13' => 'ipxEcho',
|
||||
'14' => 'ipxEchoAppl',
|
||||
'15' => 'isoClnsEcho',
|
||||
'16' => 'isoClnsEchoAppl',
|
||||
'17' => 'vinesEcho',
|
||||
'18' => 'vinesEchoAppl',
|
||||
'19' => 'xnsEcho',
|
||||
'20' => 'xnsEchoAppl',
|
||||
'21' => 'apolloEcho',
|
||||
'22' => 'apolloEchoAppl',
|
||||
'23' => 'netbiosEchoAppl',
|
||||
'24' => 'ipTcpConn',
|
||||
'25' => 'httpAppl',
|
||||
'26' => 'dnsAppl',
|
||||
'27' => 'jitterAppl',
|
||||
'28' => 'dlswAppl',
|
||||
'29' => 'dhcpAppl',
|
||||
'30' => 'ftpAppl',
|
||||
'31' => 'mplsLspPingAppl',
|
||||
'32' => 'voipAppl',
|
||||
'33' => 'rtpAppl',
|
||||
'34' => 'icmpJitterAppl',
|
||||
'35' => 'ethernetPingAppl',
|
||||
'36' => 'ethernetJitterAppl',
|
||||
'37' => 'videoAppl',
|
||||
'38' => 'y1731dmm',
|
||||
'39' => 'y17311dm',
|
||||
'40' => 'y1731lmm',
|
||||
'41' => 'mcastJitterAppl',
|
||||
'42' => 'y1731slm',
|
||||
'43' => 'y1731dmmv1',
|
||||
'44' => 'fabricPathEchoAppl',
|
||||
},
|
||||
'RttMonReactVar' => {
|
||||
'1' => 'rtt',
|
||||
'2' => 'jitterSDAvg',
|
||||
'3' => 'jitterDSAvg',
|
||||
'4' => 'packetLossSD',
|
||||
'5' => 'packetLossDS',
|
||||
'6' => 'mos',
|
||||
'7' => 'timeout',
|
||||
'8' => 'connectionLoss',
|
||||
'9' => 'verifyError',
|
||||
'10' => 'jitterAvg',
|
||||
'11' => 'icpif',
|
||||
'12' => 'packetMIA',
|
||||
'13' => 'packetLateArrival',
|
||||
'14' => 'packetOutOfSequence',
|
||||
'15' => 'maxOfPositiveSD',
|
||||
'16' => 'maxOfNegativeSD',
|
||||
'17' => 'maxOfPositiveDS',
|
||||
'18' => 'maxOfNegativeDS',
|
||||
'19' => 'iaJitterDS',
|
||||
'20' => 'frameLossDS',
|
||||
'21' => 'mosLQDS',
|
||||
'22' => 'mosCQDS',
|
||||
'23' => 'rFactorDS',
|
||||
'24' => 'successivePacketLoss',
|
||||
'25' => 'maxOfLatencyDS',
|
||||
'26' => 'maxOfLatencySD',
|
||||
'27' => 'latencyDSAvg',
|
||||
'28' => 'latencySDAvg',
|
||||
'29' => 'packetLoss',
|
||||
'30' => 'iaJitterSD',
|
||||
'31' => 'mosCQSD',
|
||||
'32' => 'rFactorSD',
|
||||
'33' => 'lpdGroup',
|
||||
'34' => 'lpdTreeTrace',
|
||||
'35' => 'lpdAll',
|
||||
'36' => 'unavailSD',
|
||||
'37' => 'unavailDS',
|
||||
'38' => 'pktLossPctSD',
|
||||
'39' => 'pktLossPctDS',
|
||||
'40' => 'rttPct',
|
||||
'41' => 'maxOfLatencySDPct',
|
||||
'42' => 'maxOfLatencyDSPct',
|
||||
'43' => 'latencySDAvgPct',
|
||||
'44' => 'latencyDSAvgPct',
|
||||
'45' => 'jitterSDAvgPct',
|
||||
'46' => 'jitterDSAvgPct',
|
||||
'47' => 'jitterAvgPct',
|
||||
'48' => 'overThreshold',
|
||||
'49' => 'protocolSpecificError',
|
||||
},
|
||||
'RttMplsVpnMonRttType' => {
|
||||
'1' => 'jitter',
|
||||
'2' => 'echo',
|
||||
'3' => 'pathEcho',
|
||||
},
|
||||
'RttMonScheduleStartType' => {
|
||||
'1' => 'pending',
|
||||
'2' => 'now',
|
||||
'3' => 'random',
|
||||
'4' => 'after',
|
||||
'5' => 'specific',
|
||||
},
|
||||
'RttMplsVpnMonLpdFailureSense' => {
|
||||
'1' => 'unknown',
|
||||
'2' => 'noPath',
|
||||
'3' => 'allPathsBroken',
|
||||
'4' => 'allPathsUnexplorable',
|
||||
'5' => 'allPathsBrokenOrUnexplorable',
|
||||
'6' => 'timeout',
|
||||
'7' => 'error',
|
||||
},
|
||||
'RttReset' => {
|
||||
'1' => 'ready',
|
||||
'2' => 'reset',
|
||||
},
|
||||
'RttMonCtrlIndex' => {
|
||||
},
|
||||
'CipslaPercentileVar' => {
|
||||
'1' => 'rtt',
|
||||
'2' => 'owsd',
|
||||
'3' => 'owds',
|
||||
'4' => 'jittersd',
|
||||
'5' => 'jitterds',
|
||||
'6' => 'jitteravg',
|
||||
},
|
||||
};
|
||||
|
||||
|
|
@ -1,109 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::CISCOSDWANAPPROUTEMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'CISCO-SDWAN-APP-ROUTE-MIB'} = {
|
||||
url => '',
|
||||
name => 'CISCO-SDWAN-APP-ROUTE-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'CISCO-SDWAN-APP-ROUTE-MIB'} =
|
||||
'1.3.6.1.4.1.9.9.1001';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'CISCO-SDWAN-APP-ROUTE-MIB'} = {
|
||||
'ciscoSdwanAppRouteMIB' => '1.3.6.1.4.1.9.9.1001',
|
||||
'ciscoSdwanAppRouteMIBObjects' => '1.3.6.1.4.1.9.9.1001.1',
|
||||
'appRouteStatisticsTable' => '1.3.6.1.4.1.9.9.1001.1.2',
|
||||
'appRouteStatisticsEntry' => '1.3.6.1.4.1.9.9.1001.1.2.1',
|
||||
'appRouteStatisticsSrcIp' => '1.3.6.1.4.1.9.9.1001.1.2.1.1',
|
||||
'appRouteStatisticsDstIp' => '1.3.6.1.4.1.9.9.1001.1.2.1.2',
|
||||
'appRouteStatisticsProto' => '1.3.6.1.4.1.9.9.1001.1.2.1.3',
|
||||
'appRouteStatisticsProtoDefinition' => 'CISCO-SDWAN-APP-ROUTE-MIB::appRouteStatisticsProto',
|
||||
'appRouteStatisticsSrcPort' => '1.3.6.1.4.1.9.9.1001.1.2.1.4',
|
||||
'appRouteStatisticsDstPort' => '1.3.6.1.4.1.9.9.1001.1.2.1.5',
|
||||
'appRouteStatisticsRemoteSystemIp' => '1.3.6.1.4.1.9.9.1001.1.2.1.6',
|
||||
'appRouteStatisticsLocalColor' => '1.3.6.1.4.1.9.9.1001.1.2.1.7',
|
||||
'appRouteStatisticsLocalColorDefinition' => 'CISCO-SDWAN-APP-ROUTE-MIB::appRouteStatisticsLocalColor',
|
||||
'appRouteStatisticsRemoteColor' => '1.3.6.1.4.1.9.9.1001.1.2.1.8',
|
||||
'appRouteStatisticsRemoteColorDefinition' => 'CISCO-SDWAN-APP-ROUTE-MIB::appRouteStatisticsRemoteColor',
|
||||
'appRouteSlaClassTable' => '1.3.6.1.4.1.9.9.1001.1.4',
|
||||
'appRouteSlaClassEntry' => '1.3.6.1.4.1.9.9.1001.1.4.1',
|
||||
'appRouteSlaClassIndex' => '1.3.6.1.4.1.9.9.1001.1.4.1.1',
|
||||
'appRouteSlaClassName' => '1.3.6.1.4.1.9.9.1001.1.4.1.2',
|
||||
'appRouteSlaClassLoss' => '1.3.6.1.4.1.9.9.1001.1.4.1.3',
|
||||
'appRouteSlaClassLatency' => '1.3.6.1.4.1.9.9.1001.1.4.1.4',
|
||||
'appRouteSlaClassJitter' => '1.3.6.1.4.1.9.9.1001.1.4.1.5',
|
||||
'appRouteStatisticsAppProbeClassTable' => '1.3.6.1.4.1.9.9.1001.1.5',
|
||||
'appRouteStatisticsAppProbeClassEntry' => '1.3.6.1.4.1.9.9.1001.1.5.1',
|
||||
'appRouteStatisticsAppProbeClassName' => '1.3.6.1.4.1.9.9.1001.1.5.1.1',
|
||||
'appRouteStatisticsAppProbeClassMeanLoss' => '1.3.6.1.4.1.9.9.1001.1.5.1.2',
|
||||
'appRouteStatisticsAppProbeClassMeanLatency' => '1.3.6.1.4.1.9.9.1001.1.5.1.3',
|
||||
'appRouteStatisticsAppProbeClassMeanJitter' => '1.3.6.1.4.1.9.9.1001.1.5.1.4',
|
||||
'appRouteStatisticsAppProbeClassIntervalTable' => '1.3.6.1.4.1.9.9.1001.1.6',
|
||||
'appRouteStatisticsAppProbeClassIntervalEntry' => '1.3.6.1.4.1.9.9.1001.1.6.1',
|
||||
'appRouteStatisticsAppProbeClassIntervalIndex' => '1.3.6.1.4.1.9.9.1001.1.6.1.1',
|
||||
'appRouteStatisticsAppProbeClassIntervalTotalPackets' => '1.3.6.1.4.1.9.9.1001.1.6.1.2',
|
||||
'appRouteStatisticsAppProbeClassIntervalLoss' => '1.3.6.1.4.1.9.9.1001.1.6.1.3',
|
||||
'appRouteStatisticsAppProbeClassIntervalAverageLatency' => '1.3.6.1.4.1.9.9.1001.1.6.1.4',
|
||||
'appRouteStatisticsAppProbeClassIntervalAverageJitter' => '1.3.6.1.4.1.9.9.1001.1.6.1.5',
|
||||
'appRouteStatisticsAppProbeClassIntervalTxDataPkts' => '1.3.6.1.4.1.9.9.1001.1.6.1.6',
|
||||
'appRouteStatisticsAppProbeClassIntervalRxDataPkts' => '1.3.6.1.4.1.9.9.1001.1.6.1.7',
|
||||
'appRouteStatisticsAppProbeClassIntervalIpv6TxDataPkts' => '1.3.6.1.4.1.9.9.1001.1.6.1.8',
|
||||
'appRouteStatisticsAppProbeClassIntervalIpv6RxDataPkts' => '1.3.6.1.4.1.9.9.1001.1.6.1.9',
|
||||
'ciscoSdwanAppRouteMIBConform' => '1.3.6.1.4.1.9.9.1001.3',
|
||||
'ciscoSdwanAppRouteMIBCompliances' => '1.3.6.1.4.1.9.9.1001.3.1',
|
||||
'ciscoSdwanAppRouteMIBGroups' => '1.3.6.1.4.1.9.9.1001.3.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'CISCO-SDWAN-APP-ROUTE-MIB'} = {
|
||||
'appRouteStatisticsRemoteColor' => {
|
||||
'1' => 'default',
|
||||
'2' => 'mpls',
|
||||
'3' => 'metroEthernet',
|
||||
'4' => 'bizInternet',
|
||||
'5' => 'publicInternet',
|
||||
'6' => 'lte',
|
||||
'7' => 'threeG',
|
||||
'8' => 'red',
|
||||
'9' => 'green',
|
||||
'10' => 'blue',
|
||||
'11' => 'gold',
|
||||
'12' => 'silver',
|
||||
'13' => 'bronze',
|
||||
'14' => 'custom1',
|
||||
'15' => 'custom2',
|
||||
'16' => 'custom3',
|
||||
'17' => 'private1',
|
||||
'18' => 'private2',
|
||||
'19' => 'private3',
|
||||
'20' => 'private4',
|
||||
'21' => 'private5',
|
||||
'22' => 'private6',
|
||||
},
|
||||
'appRouteStatisticsLocalColor' => {
|
||||
'1' => 'default',
|
||||
'2' => 'mpls',
|
||||
'3' => 'metroEthernet',
|
||||
'4' => 'bizInternet',
|
||||
'5' => 'publicInternet',
|
||||
'6' => 'lte',
|
||||
'7' => 'threeG',
|
||||
'8' => 'red',
|
||||
'9' => 'green',
|
||||
'10' => 'blue',
|
||||
'11' => 'gold',
|
||||
'12' => 'silver',
|
||||
'13' => 'bronze',
|
||||
'14' => 'custom1',
|
||||
'15' => 'custom2',
|
||||
'16' => 'custom3',
|
||||
'17' => 'private1',
|
||||
'18' => 'private2',
|
||||
'19' => 'private3',
|
||||
'20' => 'private4',
|
||||
'21' => 'private5',
|
||||
'22' => 'private6',
|
||||
},
|
||||
'appRouteStatisticsProto' => {
|
||||
'1' => 'gre',
|
||||
'2' => 'ipsec',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,267 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::CISCOSDWANOPERSYSTEMMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'CISCO-SDWAN-OPER-SYSTEM-MIB'} = {
|
||||
url => '',
|
||||
name => 'CISCO-SDWAN-OPER-SYSTEM-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'CISCO-SDWAN-OPER-SYSTEM-MIB'} =
|
||||
'1.3.6.1.4.1.9.9.1004';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'CISCO-SDWAN-OPER-SYSTEM-MIB'} = {
|
||||
'ciscoSdwanOperSystemMIB' => '1.3.6.1.4.1.9.9.1004',
|
||||
'ciscoSdwanSystemMIBNotifs' => '1.3.6.1.4.1.9.9.1004.0',
|
||||
'ciscoSdwanOperSystemMIBObjects' => '1.3.6.1.4.1.9.9.1004.1',
|
||||
'systemStatus' => '1.3.6.1.4.1.9.9.1004.1.1',
|
||||
'systemStatusPersonality' => '1.3.6.1.4.1.9.9.1004.1.1.1',
|
||||
'systemStatusVersion' => '1.3.6.1.4.1.9.9.1004.1.1.2',
|
||||
'systemStatusDiskStatus' => '1.3.6.1.4.1.9.9.1004.1.1.5',
|
||||
'systemStatusRebootReason' => '1.3.6.1.4.1.9.9.1004.1.1.6',
|
||||
'systemStatusUptime' => '1.3.6.1.4.1.9.9.1004.1.1.8',
|
||||
'systemStatusMin1Avg' => '1.3.6.1.4.1.9.9.1004.1.1.9',
|
||||
'systemStatusMin5Avg' => '1.3.6.1.4.1.9.9.1004.1.1.10',
|
||||
'systemStatusMin15Avg' => '1.3.6.1.4.1.9.9.1004.1.1.11',
|
||||
'systemStatusCpuUser' => '1.3.6.1.4.1.9.9.1004.1.1.14',
|
||||
'systemStatusCpuSystem' => '1.3.6.1.4.1.9.9.1004.1.1.15',
|
||||
'systemStatusCpuIdle' => '1.3.6.1.4.1.9.9.1004.1.1.16',
|
||||
'systemStatusMemTotal' => '1.3.6.1.4.1.9.9.1004.1.1.17',
|
||||
'systemStatusMemUsed' => '1.3.6.1.4.1.9.9.1004.1.1.18',
|
||||
'systemStatusMemFree' => '1.3.6.1.4.1.9.9.1004.1.1.19',
|
||||
'systemStatusMemBuffers' => '1.3.6.1.4.1.9.9.1004.1.1.20',
|
||||
'systemStatusMemCached' => '1.3.6.1.4.1.9.9.1004.1.1.21',
|
||||
'systemStatusDiskFs' => '1.3.6.1.4.1.9.9.1004.1.1.22',
|
||||
'systemStatusDiskSize' => '1.3.6.1.4.1.9.9.1004.1.1.23',
|
||||
'systemStatusDiskUsed' => '1.3.6.1.4.1.9.9.1004.1.1.24',
|
||||
'systemStatusDiskAvail' => '1.3.6.1.4.1.9.9.1004.1.1.25',
|
||||
'systemStatusDiskUse' => '1.3.6.1.4.1.9.9.1004.1.1.26',
|
||||
'systemStatusDiskTotalBytes' => '1.3.6.1.4.1.9.9.1004.1.1.27',
|
||||
'systemStatusDiskUsedBytes' => '1.3.6.1.4.1.9.9.1004.1.1.28',
|
||||
'systemStatusDiskAvailBytes' => '1.3.6.1.4.1.9.9.1004.1.1.29',
|
||||
'systemStatusDiskMount' => '1.3.6.1.4.1.9.9.1004.1.1.30',
|
||||
'systemStatusServices' => '1.3.6.1.4.1.9.9.1004.1.1.31',
|
||||
'systemStatusVmanaged' => '1.3.6.1.4.1.9.9.1004.1.1.36',
|
||||
'systemStatusPseudoConfirmCommit' => '1.3.6.1.4.1.9.9.1004.1.1.37',
|
||||
'systemStatusConfigTemplateName' => '1.3.6.1.4.1.9.9.1004.1.1.38',
|
||||
'systemStatusModel' => '1.3.6.1.4.1.9.9.1004.1.1.47',
|
||||
'systemStatusModelDefinition' => 'CISCO-SDWAN-OPER-SYSTEM-MIB::systemStatusModel',
|
||||
'systemStatusRebootType' => '1.3.6.1.4.1.9.9.1004.1.1.48',
|
||||
'systemStatusTotalCpuCount' => '1.3.6.1.4.1.9.9.1004.1.1.49',
|
||||
'systemStatusFpCpuCount' => '1.3.6.1.4.1.9.9.1004.1.1.50',
|
||||
'systemStatusLinuxCpuCount' => '1.3.6.1.4.1.9.9.1004.1.1.51',
|
||||
'systemStatusState' => '1.3.6.1.4.1.9.9.1004.1.1.54',
|
||||
'systemStatusStateDefinition' => 'CISCO-SDWAN-OPER-SYSTEM-MIB::systemStatusState',
|
||||
'systemStatusSystemStateDescription' => '1.3.6.1.4.1.9.9.1004.1.1.55',
|
||||
'systemStatusSystemFipsMode' => '1.3.6.1.4.1.9.9.1004.1.1.58',
|
||||
'systemStatusSystemFipsModeDefinition' => 'CISCO-SDWAN-OPER-SYSTEM-MIB::systemStatusSystemFipsMode',
|
||||
'systemStatusSystemCtrlCompatibility' => '1.3.6.1.4.1.9.9.1004.1.1.60',
|
||||
'systemStatusSystemTimezone' => '1.3.6.1.4.1.9.9.1004.1.1.61',
|
||||
'systemStatusSystemLiLicenseEnabled' => '1.3.6.1.4.1.9.9.1004.1.1.63',
|
||||
'systemStatusSystemChassisSerialNumber' => '1.3.6.1.4.1.9.9.1004.1.1.64',
|
||||
'systemStatusInstallerDiskFs' => '1.3.6.1.4.1.9.9.1004.1.1.65',
|
||||
'systemStatusInstallerDiskSize' => '1.3.6.1.4.1.9.9.1004.1.1.66',
|
||||
'systemStatusInstallerDiskUsed' => '1.3.6.1.4.1.9.9.1004.1.1.67',
|
||||
'systemStatusInstallerDiskAvail' => '1.3.6.1.4.1.9.9.1004.1.1.68',
|
||||
'systemStatusInstallerDiskUse' => '1.3.6.1.4.1.9.9.1004.1.1.69',
|
||||
'systemStatusInstallerDiskMount' => '1.3.6.1.4.1.9.9.1004.1.1.70',
|
||||
'systemStatusProductId' => '1.3.6.1.4.1.9.9.1004.1.1.71',
|
||||
'systemStatusProcs' => '1.3.6.1.4.1.9.9.1004.1.1.100',
|
||||
'systemStatusDiskBsize' => '1.3.6.1.4.1.9.9.1004.1.1.101',
|
||||
'systemStatusDiskBlocks' => '1.3.6.1.4.1.9.9.1004.1.1.102',
|
||||
'systemStatusDiskBused' => '1.3.6.1.4.1.9.9.1004.1.1.103',
|
||||
'systemStatusDiskBavail' => '1.3.6.1.4.1.9.9.1004.1.1.104',
|
||||
'ciscoSdwanSystemMIBNotifObjects' => '1.3.6.1.4.1.9.9.1004.2',
|
||||
'netconfNotificationSeverity' => '1.3.6.1.4.1.9.9.1004.2.2',
|
||||
'netconfNotificationSeverityDefinition' => 'CISCO-SDWAN-OPER-SYSTEM-MIB::NotificationSeverity',
|
||||
'ciscoSdwanSystemOldDomainId' => '1.3.6.1.4.1.9.9.1004.2.3',
|
||||
'ciscoSdwanSystemNewDomainId' => '1.3.6.1.4.1.9.9.1004.2.4',
|
||||
'ciscoSdwanSystemOldOrganizationName' => '1.3.6.1.4.1.9.9.1004.2.5',
|
||||
'ciscoSdwanSystemNewOrganizationName' => '1.3.6.1.4.1.9.9.1004.2.6',
|
||||
'ciscoSdwanSystemStatusStr' => '1.3.6.1.4.1.9.9.1004.2.7',
|
||||
'ciscoSdwanSystemOldSiteId' => '1.3.6.1.4.1.9.9.1004.2.8',
|
||||
'ciscoSdwanSystemNewSiteId' => '1.3.6.1.4.1.9.9.1004.2.9',
|
||||
'ciscoSdwanSystemUserName' => '1.3.6.1.4.1.9.9.1004.2.10',
|
||||
'ciscoSdwanSystemOldSystemIp' => '1.3.6.1.4.1.9.9.1004.2.11',
|
||||
'ciscoSdwanSystemNewSystemIp' => '1.3.6.1.4.1.9.9.1004.2.12',
|
||||
'ciscoSdwanOperSystemMIBConform' => '1.3.6.1.4.1.9.9.1004.3',
|
||||
'ciscoSdwanOperSystemMIBCompliances' => '1.3.6.1.4.1.9.9.1004.3.1',
|
||||
'ciscoSdwanOperSystemMIBGroups' => '1.3.6.1.4.1.9.9.1004.3.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'CISCO-SDWAN-OPER-SYSTEM-MIB'} = {
|
||||
'systemStatusState' => {
|
||||
'0' => 'blkng-green',
|
||||
'1' => 'green',
|
||||
'2' => 'yellow',
|
||||
'3' => 'red',
|
||||
},
|
||||
'systemStatusSystemFipsMode' => {
|
||||
'0' => 'unavailable',
|
||||
'1' => 'disabled',
|
||||
'2' => 'enabled',
|
||||
},
|
||||
'NotificationSeverity' => {
|
||||
'1' => 'critical',
|
||||
'2' => 'major',
|
||||
'3' => 'minor',
|
||||
},
|
||||
'systemStatusModel' => {
|
||||
'1' => 'vsmart',
|
||||
'2' => 'vmanage',
|
||||
'3' => 'vbond',
|
||||
'4' => 'vedge-1000',
|
||||
'5' => 'vedge-2000',
|
||||
'6' => 'vedge-100',
|
||||
'7' => 'vedge-100-W2',
|
||||
'8' => 'vedge-100-WM',
|
||||
'9' => 'vedge-100-M2',
|
||||
'10' => 'vedge-100-M',
|
||||
'11' => 'vedge-100-B',
|
||||
'12' => 'vedge-cloud',
|
||||
'13' => 'vcontainer',
|
||||
'14' => 'vedge-5000',
|
||||
'15' => 'vedge-CSR-1000v',
|
||||
'16' => 'vedge-ISR-4331',
|
||||
'17' => 'vedge-ISR-4321',
|
||||
'18' => 'vedge-ISR-4351',
|
||||
'19' => 'vedge-ISR-4221',
|
||||
'20' => 'vedge-ASR-1001-X',
|
||||
'21' => 'vedge-ASR-1001-HX',
|
||||
'22' => 'vedge-ASR-1002-X',
|
||||
'23' => 'vedge-ASR-1002-HX',
|
||||
'24' => 'vedge-C1111-8PLTEEA',
|
||||
'25' => 'vedge-C1111-8PLTELA',
|
||||
'26' => 'vedge-C1117-4PLTEEA',
|
||||
'27' => 'vedge-C1117-4PLTELA',
|
||||
'28' => 'vedge-C1116-4PLTEEA',
|
||||
'29' => 'vedge-C1116-4PLTELA',
|
||||
'30' => 'vedge-ISRv',
|
||||
'31' => 'vedge-C1111-8P',
|
||||
'32' => 'vedge-C1111-4PLTEEA',
|
||||
'33' => 'vedge-C1111-4PLTELA',
|
||||
'34' => 'vedge-C1117-4PMLTEEA',
|
||||
'35' => 'vedge-C1111-4P',
|
||||
'36' => 'vedge-C1116-4P',
|
||||
'37' => 'vedge-C1117-4P',
|
||||
'38' => 'vedge-C1117-4PM',
|
||||
'39' => 'vedge-C1101-4P',
|
||||
'40' => 'vedge-C1101-4PLTEP',
|
||||
'41' => 'vedge-C1111X-8P',
|
||||
'42' => 'vedge-C1111-8PLTEEAW',
|
||||
'43' => 'vedge-C1111-8PW',
|
||||
'44' => 'vedge-ISR-4431',
|
||||
'45' => 'vedge-ISR-4451-X',
|
||||
'46' => 'vedge-ISR-4221X',
|
||||
'47' => 'vedge-ISR-4461',
|
||||
'48' => 'vedge-C8300-1N1S-6G',
|
||||
'49' => 'vedge-C8300-1N1S-4G2X',
|
||||
'54' => 'vedge-CE-9515',
|
||||
'55' => 'vedge-CE-9511',
|
||||
'56' => 'vedge-IR-1101',
|
||||
'57' => 'vedge-C1121X-8PLTEPW',
|
||||
'60' => 'vedge-C1161X-8P',
|
||||
'61' => 'vedge-C1161X-8PLTEP',
|
||||
'62' => 'vedge-C1111-8PLTEAEAW',
|
||||
'63' => 'vedge-C1121-8P',
|
||||
'64' => 'vedge-C1121-8PLTEP',
|
||||
'65' => 'vedge-C1121X-8PLTEPWA',
|
||||
'66' => 'vedge-C1127X-8PMLTEP',
|
||||
'68' => 'vedge-C1109-4PLTE2P',
|
||||
'69' => 'vedge-C1101-4PLTEPW',
|
||||
'70' => 'vedge-C1109-4PLTE2PW',
|
||||
'71' => 'vedge-C1111-8PLTELAW',
|
||||
'72' => 'vedge-C1121X-8P',
|
||||
'73' => 'vedge-C1121X-8PLTEP',
|
||||
'74' => 'vedge-C1126X-8PLTEP',
|
||||
'75' => 'vedge-C1127X-8PLTEP',
|
||||
'76' => 'vedge-C8500-12X4QC',
|
||||
'77' => 'vedge-C8500-12X',
|
||||
'78' => 'vedge-C1121-8PLTEPW',
|
||||
'79' => 'vedge-C1113-8PMLTEEA',
|
||||
'80' => 'vedge-ISR1100-4G',
|
||||
'81' => 'vedge-ISR1100-4GLTE',
|
||||
'82' => 'vedge-ISR1100-6G',
|
||||
'84' => 'vedge-C8300-2N2S-6G',
|
||||
'85' => 'vedge-C8300-2N2S-4G2X',
|
||||
'86' => 'vedge-C8500L-8G4X',
|
||||
'87' => 'vedge-C8500L-8S4X',
|
||||
'100' => 'vedge-sim',
|
||||
'200' => 'vedge-NFVIS-ENCS5100',
|
||||
'201' => 'vedge-NFVIS-ENCS5400',
|
||||
'202' => 'vedge-NFVIS-UCSC-M5',
|
||||
'203' => 'vedge-NFVIS-UCSC-E',
|
||||
'204' => 'vedge-NFVIS-CSP2100',
|
||||
'205' => 'vedge-NFVIS-CSP2100-X1',
|
||||
'206' => 'vedge-NFVIS-CSP2100-X2',
|
||||
'207' => 'vedge-NFVIS-CSP2100-CSP-5444',
|
||||
'212' => 'vedge-C1161-8P',
|
||||
'213' => 'vedge-C1161-8PLTEP',
|
||||
'214' => 'vedge-C1126-8PLTEP',
|
||||
'215' => 'vedge-C1127-8PLTEP',
|
||||
'216' => 'vedge-C1127-8PMLTEP',
|
||||
'217' => 'vedge-C1121-4P',
|
||||
'218' => 'vedge-C1121-4PLTEP',
|
||||
'219' => 'vedge-C1128-8PLTEP',
|
||||
'220' => 'vedge-C1111-4PW',
|
||||
'221' => 'vedge-C1112-8P',
|
||||
'222' => 'vedge-C1112-8PLTEEA',
|
||||
'223' => 'vedge-C1112-8PLTEEAW',
|
||||
'224' => 'vedge-C1112-8PW',
|
||||
'225' => 'vedge-C1113-8P',
|
||||
'226' => 'vedge-C1113-8PLTEEA',
|
||||
'227' => 'vedge-C1113-8PLTEEAW',
|
||||
'228' => 'vedge-C1113-8PLTELAW',
|
||||
'229' => 'vedge-C1113-8PLTELA',
|
||||
'230' => 'vedge-C1113-8PM',
|
||||
'231' => 'vedge-C1113-8PMW',
|
||||
'232' => 'vedge-C1113-8PW',
|
||||
'233' => 'vedge-C1116-4PLTEEAW',
|
||||
'234' => 'vedge-C1116-4PW',
|
||||
'235' => 'vedge-C1117-4PLTEEAW',
|
||||
'236' => 'vedge-C1117-4PMLTEEAW',
|
||||
'237' => 'vedge-C1117-4PMW',
|
||||
'238' => 'vedge-C1117-4PW',
|
||||
'239' => 'vedge-C1118-8P',
|
||||
'240' => 'vedge-C1109-2PLTEGB',
|
||||
'241' => 'vedge-C1109-2PLTEUS',
|
||||
'242' => 'vedge-C1109-2PLTEVZ',
|
||||
'243' => 'vedge-C1113-8PLTEW',
|
||||
'244' => 'vedge-C1112-8PLTEEAWE',
|
||||
'245' => 'vedge-C1112-8PWE',
|
||||
'246' => 'vedge-C1113-8PLTELAWZ',
|
||||
'247' => 'vedge-C1113-8PMWE',
|
||||
'248' => 'vedge-C1116-4PLTEEAWE',
|
||||
'249' => 'vedge-C1116-4PWE',
|
||||
'251' => 'vedge-C1117-4PMLTEEAWE',
|
||||
'252' => 'vedge-C1117-4PMWE',
|
||||
'253' => 'vedge-C8200-1N-4G',
|
||||
'254' => 'vedge-ISR1100-4GLTENA-XE',
|
||||
'255' => 'vedge-ISR1100-4G-XE',
|
||||
'256' => 'vedge-ISR1100-6G-XE',
|
||||
'257' => 'vedge-NFVIS-C8200-UCPE',
|
||||
'258' => 'vedge-C8300-1N1S-6T',
|
||||
'259' => 'vedge-C8300-1N1S-4T2X',
|
||||
'260' => 'vedge-C8300-2N2S-6T',
|
||||
'261' => 'vedge-C8300-2N2S-4T2X',
|
||||
'262' => 'vedge-C8200-1N-4T',
|
||||
'263' => 'vedge-ESR-6300',
|
||||
'264' => 'vedge-C8000V',
|
||||
'265' => 'vedge-ISR1100X-4G',
|
||||
'266' => 'vedge-ISR1100X-6G',
|
||||
'269' => 'cellular-gateway-CG418-E',
|
||||
'270' => 'cellular-gateway-CG522-E',
|
||||
'271' => 'vedge-IR-1821',
|
||||
'272' => 'vedge-IR-1831',
|
||||
'273' => 'vedge-IR-1833',
|
||||
'274' => 'vedge-IR-1835',
|
||||
'275' => 'vedge-ISR1100-4GLTEGB-XE',
|
||||
'276' => 'vedge-ASR-1006-X',
|
||||
'277' => 'vedge-C1121-8PLTEWK',
|
||||
'278' => 'vedge-C1117-4PLTELAWZ',
|
||||
'279' => 'vedge-C8200L-1N-4T',
|
||||
'280' => 'vedge-C8500-20X6C',
|
||||
'282' => 'vedge-C1131-8PW',
|
||||
'283' => 'vedge-C1131X-8PW',
|
||||
'284' => 'vedge-C1131-8PLTEPW',
|
||||
'285' => 'vedge-C1131X-8PLTEPW',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,97 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::CISCOSMARTLICMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'CISCO-SMART-LIC-MIB'} = {
|
||||
url => '',
|
||||
name => 'CISCO-SMART-LIC-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'CISCO-SMART-LIC-MIB'} =
|
||||
'1.3.6.1.4.1.9.9.831';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'CISCO-SMART-LIC-MIB'} = {
|
||||
'ciscoSmartLicMIB' => '1.3.6.1.4.1.9.9.831',
|
||||
'ciscoSlaMIBObjects' => '1.3.6.1.4.1.9.9.831.0',
|
||||
'ciscoSlaInstanceId' => '1.3.6.1.4.1.9.9.831.0.1',
|
||||
'ciscoSlaSUDIInfo' => '1.3.6.1.4.1.9.9.831.0.2',
|
||||
'ciscoSlaVersion' => '1.3.6.1.4.1.9.9.831.0.3',
|
||||
'ciscoSlaEnabled' => '1.3.6.1.4.1.9.9.831.0.4',
|
||||
'ciscoSlaEnabledDefinition' => 'SNMPv2-TC-v1-MIB::TruthValue',
|
||||
'ciscoSlaEntitlementInfo' => '1.3.6.1.4.1.9.9.831.0.5',
|
||||
'ciscoSlaEntitlementInfoTable' => '1.3.6.1.4.1.9.9.831.0.5.1',
|
||||
'ciscoSlaEntitlementInfoEntry' => '1.3.6.1.4.1.9.9.831.0.5.1.1',
|
||||
'ciscoSlaEntitlementInfoIndex' => '1.3.6.1.4.1.9.9.831.0.5.1.1.1',
|
||||
'ciscoSlaEntitlementRequestCount' => '1.3.6.1.4.1.9.9.831.0.5.1.1.2',
|
||||
'ciscoSlaEntitlementTag' => '1.3.6.1.4.1.9.9.831.0.5.1.1.3',
|
||||
'ciscoSlaEntitlementVersion' => '1.3.6.1.4.1.9.9.831.0.5.1.1.4',
|
||||
'ciscoSlaEntitlementEnforceMode' => '1.3.6.1.4.1.9.9.831.0.5.1.1.5',
|
||||
'ciscoSlaEntitlementEnforceModeDefinition' => 'CISCO-SMART-LIC-MIB::ciscoSlaEntitlementEnforceMode',
|
||||
'ciscoSlaEntitlementDescription' => '1.3.6.1.4.1.9.9.831.0.5.1.1.6',
|
||||
'ciscoSlaEntitlementFeatureName' => '1.3.6.1.4.1.9.9.831.0.5.1.1.7',
|
||||
'ciscoSlaRegistrationStatusInfo' => '1.3.6.1.4.1.9.9.831.0.6',
|
||||
'ciscoSlaRegistrationStatusInfoTable' => '1.3.6.1.4.1.9.9.831.0.6',
|
||||
'ciscoSlaRegistrationStatusInfoEntry' => '1.3.6.1.4.1.9.9.831.0.6',
|
||||
'ciscoSlaRegistrationStatus' => '1.3.6.1.4.1.9.9.831.0.6.1',
|
||||
'ciscoSlaRegistrationStatusDefinition' => 'CISCO-SMART-LIC-MIB::ciscoSlaRegistrationStatus',
|
||||
'ciscoSlaVirtualAccount' => '1.3.6.1.4.1.9.9.831.0.6.2',
|
||||
'ciscoSlaNextCertificateExpireTime' => '1.3.6.1.4.1.9.9.831.0.6.3',
|
||||
'ciscoSlaEnterpriseAccountName' => '1.3.6.1.4.1.9.9.831.0.6.4',
|
||||
'ciscoSlaRegisterTime' => '1.3.6.1.4.1.9.9.831.0.6.5',
|
||||
'ciscoSlaRegisterInitTime' => '1.3.6.1.4.1.9.9.831.0.6.5.1',
|
||||
'ciscoSlaRegisterSuccess' => '1.3.6.1.4.1.9.9.831.0.6.5.2',
|
||||
'ciscoSlaRegisterSuccessDefinition' => 'SNMPv2-TC-v1-MIB::TruthValue',
|
||||
'ciscoSlaRegisterFailureReason' => '1.3.6.1.4.1.9.9.831.0.6.5.3',
|
||||
'ciscoSlaRegisterNextRetryTime' => '1.3.6.1.4.1.9.9.831.0.6.5.4',
|
||||
'ciscoSlaRenewTime' => '1.3.6.1.4.1.9.9.831.0.6.6',
|
||||
'ciscoSlaRenewInitTime' => '1.3.6.1.4.1.9.9.831.0.6.6.1',
|
||||
'ciscoSlaRenewSuccess' => '1.3.6.1.4.1.9.9.831.0.6.6.2',
|
||||
'ciscoSlaRenewSuccessDefinition' => 'SNMPv2-TC-v1-MIB::TruthValue',
|
||||
'ciscoSlaRenewFailureReason' => '1.3.6.1.4.1.9.9.831.0.6.6.3',
|
||||
'ciscoSlaRenewNextRetryTime' => '1.3.6.1.4.1.9.9.831.0.6.6.4',
|
||||
'ciscoSlaAuthorizationInfo' => '1.3.6.1.4.1.9.9.831.0.7',
|
||||
'ciscoSlaAuthorizationInfoTable' => '1.3.6.1.4.1.9.9.831.0.7',
|
||||
'ciscoSlaAuthorizationInfoEntry' => '1.3.6.1.4.1.9.9.831.0.7',
|
||||
'ciscoSlaAuthExpireTime' => '1.3.6.1.4.1.9.9.831.0.7.1',
|
||||
'ciscoSlaAuthComplianceStatus' => '1.3.6.1.4.1.9.9.831.0.7.2',
|
||||
'ciscoSlaAuthOOCStartTime' => '1.3.6.1.4.1.9.9.831.0.7.3',
|
||||
'ciscoSlaAuthEvalPeriod' => '1.3.6.1.4.1.9.9.831.0.7.4',
|
||||
'ciscoSlaAuthEvalPeriodInUse' => '1.3.6.1.4.1.9.9.831.0.7.4.1',
|
||||
'ciscoSlaAuthEvalPeriodInUseDefinition' => 'SNMPv2-TC-v1-MIB::TruthValue',
|
||||
'ciscoSlaAuthEvalExpiredTime' => '1.3.6.1.4.1.9.9.831.0.7.4.2',
|
||||
'ciscoSlaAuthEvalPeriodLeft' => '1.3.6.1.4.1.9.9.831.0.7.4.3',
|
||||
'ciscoSlaAuthRenewTime' => '1.3.6.1.4.1.9.9.831.0.7.5',
|
||||
'ciscoSlaAuthRenewInitTime' => '1.3.6.1.4.1.9.9.831.0.7.5.1',
|
||||
'ciscoSlaAuthRenewSuccess' => '1.3.6.1.4.1.9.9.831.0.7.5.2',
|
||||
'ciscoSlaAuthRenewSuccessDefinition' => 'SNMPv2-TC-v1-MIB::TruthValue',
|
||||
'ciscoSlaAuthRenewFailureReason' => '1.3.6.1.4.1.9.9.831.0.7.5.3',
|
||||
'ciscoSlaAuthRenewNextRetryTime' => '1.3.6.1.4.1.9.9.831.0.7.5.4',
|
||||
'ciscoSlaNotifObjects' => '1.3.6.1.4.1.9.9.831.0.8',
|
||||
'ciscoSlaGlobalNotifEnable' => '1.3.6.1.4.1.9.9.831.0.8.1',
|
||||
'ciscoSlaEntitlementNotifEnable' => '1.3.6.1.4.1.9.9.831.0.8.2',
|
||||
'ciscoSlaMIBNotifs' => '1.3.6.1.4.1.9.9.831.1',
|
||||
'ciscoSlaMIBConform' => '1.3.6.1.4.1.9.9.831.2',
|
||||
'ciscoSlaMIBCompliances' => '1.3.6.1.4.1.9.9.831.2.1',
|
||||
'ciscoSlaMIBGroups' => '1.3.6.1.4.1.9.9.831.2.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'CISCO-SMART-LIC-MIB'} = {
|
||||
'ciscoSlaEntitlementEnforceMode' => {
|
||||
'1' => 'initialized',
|
||||
'2' => 'waiting',
|
||||
'3' => 'authorized',
|
||||
'4' => 'outOfCompliance',
|
||||
'5' => 'overage',
|
||||
'6' => 'evaluationPeriod',
|
||||
'7' => 'evaluationExpired',
|
||||
'8' => 'gracePeriod',
|
||||
'9' => 'gracePeriodExpired',
|
||||
'10' => 'disabled',
|
||||
'11' => 'invalidTag',
|
||||
},
|
||||
'ciscoSlaRegistrationStatus' => {
|
||||
'1' => 'notRegistered',
|
||||
'2' => 'registrationInProgress',
|
||||
'3' => 'registrationFailed',
|
||||
'4' => 'registrationRetryinProgress',
|
||||
'5' => 'registrationCompleted',
|
||||
},
|
||||
};
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,56 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::DEVICEMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'DEVICE-MIB'} = {
|
||||
url => '',
|
||||
name => 'DEVICE-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'DEVICE-MIB'} = '1.3.6.1.4.1.42359.2.2.1.1';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'DEVICE-MIB'} = {
|
||||
'device' => '1.3.6.1.4.1.42359.2.2.1.1',
|
||||
'deviceTable' => '1.3.6.1.4.1.42359.2.2.1.1.1',
|
||||
'deviceEntry' => '1.3.6.1.4.1.42359.2.2.1.1.1.1',
|
||||
'deviceVSNId' => '1.3.6.1.4.1.42359.2.2.1.1.1.1.1',
|
||||
'deviceCPULoad' => '1.3.6.1.4.1.42359.2.2.1.1.1.1.2',
|
||||
'deviceMemoryLoad' => '1.3.6.1.4.1.42359.2.2.1.1.1.1.3',
|
||||
'deviceBuffer' => '1.3.6.1.4.1.42359.2.2.1.1.1.1.4',
|
||||
'deviceActiveSessions' => '1.3.6.1.4.1.42359.2.2.1.1.1.1.5',
|
||||
'deviceFailedSessions' => '1.3.6.1.4.1.42359.2.2.1.1.1.1.6',
|
||||
'deviceMaxSessions' => '1.3.6.1.4.1.42359.2.2.1.1.1.1.7',
|
||||
'deviceClientId' => '1.3.6.1.4.1.42359.2.2.1.1.1.1.8',
|
||||
'deviceAlarmStatsTable' => '1.3.6.1.4.1.42359.2.2.1.1.3',
|
||||
'deviceAlarmStatsEntry' => '1.3.6.1.4.1.42359.2.2.1.1.3.1',
|
||||
'deviceAlarmId' => '1.3.6.1.4.1.42359.2.2.1.1.3.1.1',
|
||||
'deviceAlarmName' => '1.3.6.1.4.1.42359.2.2.1.1.3.1.2',
|
||||
'deviceAlarmNewCnt' => '1.3.6.1.4.1.42359.2.2.1.1.3.1.5',
|
||||
'deviceAlarmChangedCnt' => '1.3.6.1.4.1.42359.2.2.1.1.3.1.6',
|
||||
'deviceAlarmClearedCnt' => '1.3.6.1.4.1.42359.2.2.1.1.3.1.7',
|
||||
'deviceAlarmNetconfCnt' => '1.3.6.1.4.1.42359.2.2.1.1.3.1.8',
|
||||
'deviceAlarmSnmpCnt' => '1.3.6.1.4.1.42359.2.2.1.1.3.1.9',
|
||||
'deviceAlarmSyslogCnt' => '1.3.6.1.4.1.42359.2.2.1.1.3.1.10',
|
||||
'deviceAlarmAnalyticsCnt' => '1.3.6.1.4.1.42359.2.2.1.1.3.1.11',
|
||||
'deviceHardwareTable' => '1.3.6.1.4.1.42359.2.2.1.1.4',
|
||||
'deviceHardwareEntry' => '1.3.6.1.4.1.42359.2.2.1.1.4.1',
|
||||
'deviceHardwareSku' => '1.3.6.1.4.1.42359.2.2.1.1.4.1.1',
|
||||
'deviceHardwareModel' => '1.3.6.1.4.1.42359.2.2.1.1.4.1.2',
|
||||
'deviceHardwareSerialnumber' => '1.3.6.1.4.1.42359.2.2.1.1.4.1.3',
|
||||
'deviceCpuInfoTable' => '1.3.6.1.4.1.42359.2.2.1.1.5',
|
||||
'deviceCpuInfoEntry' => '1.3.6.1.4.1.42359.2.2.1.1.5.1',
|
||||
'deviceCpuId' => '1.3.6.1.4.1.42359.2.2.1.1.5.1.1',
|
||||
'deviceCpuLoadPercentage' => '1.3.6.1.4.1.42359.2.2.1.1.5.1.2',
|
||||
'deviceSoftwareInfo' => '1.3.6.1.4.1.42359.2.2.1.1.6',
|
||||
'packageVersionMajor' => '1.3.6.1.4.1.42359.2.2.1.1.6.1',
|
||||
'packageVersionMinor' => '1.3.6.1.4.1.42359.2.2.1.1.6.2',
|
||||
'packageVersionService' => '1.3.6.1.4.1.42359.2.2.1.1.6.3',
|
||||
'packageReleaseDate' => '1.3.6.1.4.1.42359.2.2.1.1.6.4',
|
||||
'packageId' => '1.3.6.1.4.1.42359.2.2.1.1.6.5',
|
||||
'packageName' => '1.3.6.1.4.1.42359.2.2.1.1.6.6',
|
||||
'packageReleaseType' => '1.3.6.1.4.1.42359.2.2.1.1.6.7',
|
||||
'packageSpackApiVersion' => '1.3.6.1.4.1.42359.2.2.1.1.6.8',
|
||||
'packageSpackLibVersion' => '1.3.6.1.4.1.42359.2.2.1.1.6.9',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'DEVICE-MIB'} = {
|
||||
};
|
||||
|
||||
|
|
@ -1,308 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::HUAWEIBGPVPNMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'HUAWEI-BGP-VPN-MIB'} = {
|
||||
url => '',
|
||||
name => 'HUAWEI-BGP-VPN-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'HUAWEI-BGP-VPN-MIB'} =
|
||||
'1.3.6.1.4.1.2011.5.25.177';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'HUAWEI-BGP-VPN-MIB'} = {
|
||||
'hwBgpMIB' => '1.3.6.1.4.1.2011.5.25.177',
|
||||
'hwBgpObjects' => '1.3.6.1.4.1.2011.5.25.177.1',
|
||||
'hwBgpPeers' => '1.3.6.1.4.1.2011.5.25.177.1.1',
|
||||
'hwBgpPeerAddrFamilyTable' => '1.3.6.1.4.1.2011.5.25.177.1.1.1',
|
||||
'hwBgpPeerAddrFamilyEntry' => '1.3.6.1.4.1.2011.5.25.177.1.1.1.1',
|
||||
'hwBgpPeerInstanceId' => '1.3.6.1.4.1.2011.5.25.177.1.1.1.1.1',
|
||||
'hwBgpPeerAddrFamilyAfi' => '1.3.6.1.4.1.2011.5.25.177.1.1.1.1.2',
|
||||
'hwBgpPeerAddrFamilyAfiDefinition' => 'HUAWEI-BGP-VPN-MIB::HWBgpAfi',
|
||||
'hwBgpPeerAddrFamilySafi' => '1.3.6.1.4.1.2011.5.25.177.1.1.1.1.3',
|
||||
'hwBgpPeerAddrFamilySafiDefinition' => 'HUAWEI-BGP-VPN-MIB::HWBgpSafi',
|
||||
'hwBgpPeerType' => '1.3.6.1.4.1.2011.5.25.177.1.1.1.1.4',
|
||||
'hwBgpPeerIPAddr' => '1.3.6.1.4.1.2011.5.25.177.1.1.1.1.5',
|
||||
'hwBgpPeerVrfName' => '1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6',
|
||||
'hwBgpPeerTable' => '1.3.6.1.4.1.2011.5.25.177.1.1.2',
|
||||
'hwBgpPeerEntry' => '1.3.6.1.4.1.2011.5.25.177.1.1.2.1',
|
||||
'hwBgpPeerNegotiatedVersion' => '1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1',
|
||||
'hwBgpPeerRemoteAs' => '1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2',
|
||||
'hwBgpPeerRemoteAddr' => '1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4',
|
||||
'hwBgpPeerState' => '1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5',
|
||||
'hwBgpPeerStateDefinition' => 'HUAWEI-BGP-VPN-MIB::hwBgpPeerState',
|
||||
'hwBgpPeerFsmEstablishedCounter' => '1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6',
|
||||
'hwBgpPeerFsmEstablishedTime' => '1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7',
|
||||
'hwBgpPeerGRStatus' => '1.3.6.1.4.1.2011.5.25.177.1.1.2.1.8',
|
||||
'hwBgpPeerGRStatusDefinition' => 'HUAWEI-BGP-VPN-MIB::hwBgpPeerGRStatus',
|
||||
'hwBgpPeerLastError' => '1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9',
|
||||
'hwBgpPeerUnAvaiReason' => '1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10',
|
||||
'hwBgpPeerUnAvaiReasonDefinition' => {
|
||||
1 => "Configuration lead peer down",
|
||||
2 => "Receive notification",
|
||||
3 => "Receive error packet",
|
||||
4 => "Hold timer expire",
|
||||
5 => "Remote peer not reachable",
|
||||
6 => "Direct connect-interface down",
|
||||
7 => "Route limit",
|
||||
},
|
||||
'hwBgpPeerAdminStatus' => '1.3.6.1.4.1.2011.5.25.177.1.1.2.1.11',
|
||||
'hwBgpPeerAdminStatusDefinition' => 'HUAWEI-BGP-VPN-MIB::hwBgpPeerAdminStatus',
|
||||
'hwBgpPeerRouteTable' => '1.3.6.1.4.1.2011.5.25.177.1.1.3',
|
||||
'hwBgpPeerRouteEntry' => '1.3.6.1.4.1.2011.5.25.177.1.1.3.1',
|
||||
'hwBgpPeerPrefixRcvCounter' => '1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1',
|
||||
'hwBgpPeerPrefixActiveCounter' => '1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2',
|
||||
'hwBgpPeerPrefixAdvCounter' => '1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3',
|
||||
'hwBgpPeerMessageTable' => '1.3.6.1.4.1.2011.5.25.177.1.1.4',
|
||||
'hwBgpPeerMessageEntry' => '1.3.6.1.4.1.2011.5.25.177.1.1.4.1',
|
||||
'hwBgpPeerInTotalMsgCounter' => '1.3.6.1.4.1.2011.5.25.177.1.1.4.1.1',
|
||||
'hwBgpPeerOutTotalMsgCounter' => '1.3.6.1.4.1.2011.5.25.177.1.1.4.1.2',
|
||||
'hwBgpPeerInOpenMsgCounter' => '1.3.6.1.4.1.2011.5.25.177.1.1.4.1.3',
|
||||
'hwBgpPeerInUpdateMsgCounter' => '1.3.6.1.4.1.2011.5.25.177.1.1.4.1.4',
|
||||
'hwBgpPeerInNotificationMsgCounter' => '1.3.6.1.4.1.2011.5.25.177.1.1.4.1.5',
|
||||
'hwBgpPeerInKeepAliveMsgCounter' => '1.3.6.1.4.1.2011.5.25.177.1.1.4.1.6',
|
||||
'hwBgpPeerInRouteFreshMsgCounter' => '1.3.6.1.4.1.2011.5.25.177.1.1.4.1.7',
|
||||
'hwBgpPeerOutOpenMsgCounter' => '1.3.6.1.4.1.2011.5.25.177.1.1.4.1.8',
|
||||
'hwBgpPeerOutUpdateMsgCounter' => '1.3.6.1.4.1.2011.5.25.177.1.1.4.1.9',
|
||||
'hwBgpPeerOutNotificationMsgCounter' => '1.3.6.1.4.1.2011.5.25.177.1.1.4.1.10',
|
||||
'hwBgpPeerOutKeepAliveMsgCounter' => '1.3.6.1.4.1.2011.5.25.177.1.1.4.1.11',
|
||||
'hwBgpPeerOutRouteFreshMsgCounter' => '1.3.6.1.4.1.2011.5.25.177.1.1.4.1.12',
|
||||
'hwBgpPeerConfigTable' => '1.3.6.1.4.1.2011.5.25.177.1.1.5',
|
||||
'hwBgpPeerConfigEntry' => '1.3.6.1.4.1.2011.5.25.177.1.1.5.1',
|
||||
'hwBgpPeerConfigRouteLimitNum' => '1.3.6.1.4.1.2011.5.25.177.1.1.5.1.1',
|
||||
'hwBgpPeerConfigRouteLimitThreshold' => '1.3.6.1.4.1.2011.5.25.177.1.1.5.1.2',
|
||||
'hwBgpPeerSessionTable' => '1.3.6.1.4.1.2011.5.25.177.1.1.6',
|
||||
'hwBgpPeerSessionEntry' => '1.3.6.1.4.1.2011.5.25.177.1.1.6.1',
|
||||
'hwBgpPeerSessionVrfName' => '1.3.6.1.4.1.2011.5.25.177.1.1.6.1.1',
|
||||
'hwBgpPeerSessionRemoteAddrType' => '1.3.6.1.4.1.2011.5.25.177.1.1.6.1.2',
|
||||
'hwBgpPeerSessionRemoteAddr' => '1.3.6.1.4.1.2011.5.25.177.1.1.6.1.3',
|
||||
'hwBgpPeerSessionLocalAddrType' => '1.3.6.1.4.1.2011.5.25.177.1.1.6.1.4',
|
||||
'hwBgpPeerSessionLocalAddr' => '1.3.6.1.4.1.2011.5.25.177.1.1.6.1.5',
|
||||
'hwBgpPeerSessionUnavailableType' => '1.3.6.1.4.1.2011.5.25.177.1.1.6.1.6',
|
||||
'hwBgpPeerSessionUnavailableTypeDefinition' => 'HUAWEI-BGP-VPN-MIB::hwBgpPeerSessionUnavailableType',
|
||||
'hwBgpPeerSessionLocalIfName' => '1.3.6.1.4.1.2011.5.25.177.1.1.6.1.7',
|
||||
'hwBgpPeerSessionReason' => '1.3.6.1.4.1.2011.5.25.177.1.1.6.1.8',
|
||||
'hwBgpPeerSessionReasonDefinition' => 'HUAWEI-BGP-VPN-MIB::hwBgpPeerSessionReason',
|
||||
'hwBgpPeerStatisticTable' => '1.3.6.1.4.1.2011.5.25.177.1.1.7',
|
||||
'hwBgpPeerStatisticEntry' => '1.3.6.1.4.1.2011.5.25.177.1.1.7.1',
|
||||
'hwBgpProcessId' => '1.3.6.1.4.1.2011.5.25.177.1.1.7.1.1',
|
||||
'hwBgpPeerVrfInstanceId' => '1.3.6.1.4.1.2011.5.25.177.1.1.7.1.2',
|
||||
'hwBgpPeerAddr' => '1.3.6.1.4.1.2011.5.25.177.1.1.7.1.3',
|
||||
'hwBgpPeerFsmEstablishedTransitions' => '1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4',
|
||||
'hwBgpPeerDownCounts' => '1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5',
|
||||
'hwBgpPeerInUpdateMsgs' => '1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6',
|
||||
'hwBgpPeerOutUpdateMsgs' => '1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7',
|
||||
'hwBgpPeerInTotalMsgs' => '1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8',
|
||||
'hwBgpPeerOutTotalMsgs' => '1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9',
|
||||
'hwBgpPeerSessionExtTable' => '1.3.6.1.4.1.2011.5.25.177.1.1.8',
|
||||
'hwBgpPeerSessionExtEntry' => '1.3.6.1.4.1.2011.5.25.177.1.1.8.1',
|
||||
'hwBgpPeerSessionExtVrfId' => '1.3.6.1.4.1.2011.5.25.177.1.1.8.1.1',
|
||||
'hwBgpPeerSessionExtRemoteAddrType' => '1.3.6.1.4.1.2011.5.25.177.1.1.8.1.2',
|
||||
'hwBgpPeerSessionExtRemoteAddr' => '1.3.6.1.4.1.2011.5.25.177.1.1.8.1.3',
|
||||
'hwBgpPeerSessionExtLocalAddrType' => '1.3.6.1.4.1.2011.5.25.177.1.1.8.1.4',
|
||||
'hwBgpPeerSessionExtLocalAddr' => '1.3.6.1.4.1.2011.5.25.177.1.1.8.1.5',
|
||||
'hwBgpPeerSessionExtUnavailableType' => '1.3.6.1.4.1.2011.5.25.177.1.1.8.1.6',
|
||||
'hwBgpPeerSessionExtUnavailableTypeDefinition' => 'HUAWEI-BGP-VPN-MIB::hwBgpPeerSessionExtUnavailableType',
|
||||
'hwBgpPeerSessionExtLocalIfName' => '1.3.6.1.4.1.2011.5.25.177.1.1.8.1.7',
|
||||
'hwBgpPeerSessionExtReason' => '1.3.6.1.4.1.2011.5.25.177.1.1.8.1.8',
|
||||
'hwBgpPeerSessionExtReasonDefinition' => 'HUAWEI-BGP-VPN-MIB::hwBgpPeerSessionExtReason',
|
||||
'hwBgpPeerSessionExtVrfName' => '1.3.6.1.4.1.2011.5.25.177.1.1.8.1.9',
|
||||
'hwBgpPeerSessionExtRemoteAs' => '1.3.6.1.4.1.2011.5.25.177.1.1.8.1.10',
|
||||
'hwBgpPeerSessionExtDescription' => '1.3.6.1.4.1.2011.5.25.177.1.1.8.1.11',
|
||||
'hwBgpRoute' => '1.3.6.1.4.1.2011.5.25.177.1.2',
|
||||
'hwBgpRouteLimitTable' => '1.3.6.1.4.1.2011.5.25.177.1.2.1',
|
||||
'hwBgpRouteLimitindex' => '1.3.6.1.4.1.2011.5.25.177.1.2.1.1',
|
||||
'hwBgpRouteLimitindexDefinition' => 'HUAWEI-BGP-VPN-MIB::hwBgpRouteLimitindex',
|
||||
'hwBgpRouteCurNum' => '1.3.6.1.4.1.2011.5.25.177.1.2.1.2',
|
||||
'hwBgpRouteMaxNum' => '1.3.6.1.4.1.2011.5.25.177.1.2.1.3',
|
||||
'hwBgpRouteThreshold' => '1.3.6.1.4.1.2011.5.25.177.1.2.1.4',
|
||||
'hwBgpRouteType' => '1.3.6.1.4.1.2011.5.25.177.1.2.1.5',
|
||||
'hwBgpVrfRouteTable' => '1.3.6.1.4.1.2011.5.25.177.1.2.2',
|
||||
'hwBgpVrfRouteEntry' => '1.3.6.1.4.1.2011.5.25.177.1.2.2.1',
|
||||
'hwBgpVrfCurrRouteNum' => '1.3.6.1.4.1.2011.5.25.177.1.2.2.1.1',
|
||||
'hwBgpVrfThresholdValue' => '1.3.6.1.4.1.2011.5.25.177.1.2.2.1.2',
|
||||
'hwBgpVrfRouteType' => '1.3.6.1.4.1.2011.5.25.177.1.2.2.1.3',
|
||||
'hwBgpVrfInstName' => '1.3.6.1.4.1.2011.5.25.177.1.2.2.1.4',
|
||||
'hwBgpVrfAddressFamily' => '1.3.6.1.4.1.2011.5.25.177.1.2.2.1.5',
|
||||
'hwEvpnRouteTable' => '1.3.6.1.4.1.2011.5.25.177.1.2.3',
|
||||
'hwEvpnRouteEntry' => '1.3.6.1.4.1.2011.5.25.177.1.2.3.1',
|
||||
'hwEvpnCurrRouteNum' => '1.3.6.1.4.1.2011.5.25.177.1.2.3.1.1',
|
||||
'hwEvpnThresholdValue' => '1.3.6.1.4.1.2011.5.25.177.1.2.3.1.2',
|
||||
'hwEvpnRouteType' => '1.3.6.1.4.1.2011.5.25.177.1.2.3.1.3',
|
||||
'hwEvpnAddressFamily' => '1.3.6.1.4.1.2011.5.25.177.1.2.3.1.4',
|
||||
'hwBgpLabelLimitTable' => '1.3.6.1.4.1.2011.5.25.177.1.2.4',
|
||||
'hwBgpAddrFamilyAfi' => '1.3.6.1.4.1.2011.5.25.177.1.2.4.1',
|
||||
'hwBgpAddrFamilyAfiDefinition' => 'HUAWEI-BGP-VPN-MIB::HWBgpAfi',
|
||||
'hwBgpAddrFamilySafi' => '1.3.6.1.4.1.2011.5.25.177.1.2.4.2',
|
||||
'hwBgpAddrFamilySafiDefinition' => 'HUAWEI-BGP-VPN-MIB::HWBgpSafi',
|
||||
'hwBgpLabelMaxValue' => '1.3.6.1.4.1.2011.5.25.177.1.2.4.3',
|
||||
'hwBgpLabelLimitThreshold' => '1.3.6.1.4.1.2011.5.25.177.1.2.4.4',
|
||||
'hwBgpTraps' => '1.3.6.1.4.1.2011.5.25.177.1.3',
|
||||
'hwBgpScalars' => '1.3.6.1.4.1.2011.5.25.177.1.4',
|
||||
'hwBgpPeerSessionNum' => '1.3.6.1.4.1.2011.5.25.177.1.4.1',
|
||||
'hwIBgpPeerSessionNum' => '1.3.6.1.4.1.2011.5.25.177.1.4.2',
|
||||
'hwEBgpPeerSessionNum' => '1.3.6.1.4.1.2011.5.25.177.1.4.3',
|
||||
'hwBgpPeerSessionMaxNum' => '1.3.6.1.4.1.2011.5.25.177.1.4.4',
|
||||
'hwBgpDynamicPeerSessionNum' => '1.3.6.1.4.1.2011.5.25.177.1.4.5',
|
||||
'hwBgpDynamicPeerSessionMaxNum' => '1.3.6.1.4.1.2011.5.25.177.1.4.6',
|
||||
'hwBgpPeerSessionThreshold' => '1.3.6.1.4.1.2011.5.25.177.1.4.7',
|
||||
'hwBgpPeerTotalInUpdateMsgs' => '1.3.6.1.4.1.2011.5.25.177.1.4.8',
|
||||
'hwBgpPeerTotalOutUpdateMsgs' => '1.3.6.1.4.1.2011.5.25.177.1.4.9',
|
||||
'hwBgpProcess' => '1.3.6.1.4.1.2011.5.25.177.1.5',
|
||||
'hwBgpProcessCommTable' => '1.3.6.1.4.1.2011.5.25.177.1.5.1',
|
||||
'hwBgpProcessCommEntry' => '1.3.6.1.4.1.2011.5.25.177.1.5.1.1',
|
||||
'hwBgpProcessName' => '1.3.6.1.4.1.2011.5.25.177.1.5.1.1.1',
|
||||
'hwBgpVpnObjects' => '1.3.6.1.4.1.2011.5.25.177.2',
|
||||
'hwBgpVpnTunnelTable' => '1.3.6.1.4.1.2011.5.25.177.2.1',
|
||||
'hwBgpVpnTunnelEntry' => '1.3.6.1.4.1.2011.5.25.177.2.1.1',
|
||||
'hwBgpVpnTunnelVrfName' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.1',
|
||||
'hwBgpVpnTunnelPublicNetNextHop' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.2',
|
||||
'hwBgpVpnTunnelId' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.3',
|
||||
'hwBgpVpnTunnelDestAddr' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.4',
|
||||
'hwBgpVpnTunnelType' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.5',
|
||||
'hwBgpVpnTunnelSrcAddr' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.6',
|
||||
'hwBgpVpnTunnelOutIfName' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.7',
|
||||
'hwBgpVpnTunnelIsLoadBalance' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.8',
|
||||
'hwBgpVpnTunnelLspIndex' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.9',
|
||||
'hwBgpVpnTunnelLspOutIfName' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.10',
|
||||
'hwBgpVpnTunnelLspOutLabel' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.11',
|
||||
'hwBgpVpnTunnelLspNextHop' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.12',
|
||||
'hwBgpVpnTunnelLspFec' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.13',
|
||||
'hwBgpVpnTunnelLspFecPfxLen' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.14',
|
||||
'hwBgpVpnTunnelLspIsBackup' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.15',
|
||||
'hwBgpVpnTunnelSignalProtocol' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.16',
|
||||
'hwBgpVpnTunnelSessionTunnelId' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.17',
|
||||
'hwBgpVpnTunnelTunnelName' => '1.3.6.1.4.1.2011.5.25.177.2.1.1.18',
|
||||
'hwBgpVpnServiceIdTable' => '1.3.6.1.4.1.2011.5.25.177.2.2',
|
||||
'hwBgpVpnServiceIdEntry' => '1.3.6.1.4.1.2011.5.25.177.2.2.1',
|
||||
'hwBgpVpnServiceIdVrfName' => '1.3.6.1.4.1.2011.5.25.177.2.2.1.1',
|
||||
'hwBgpVpnServiceIdValue' => '1.3.6.1.4.1.2011.5.25.177.2.2.1.2',
|
||||
'hwBgpVpnScalars' => '1.3.6.1.4.1.2011.5.25.177.2.3',
|
||||
'hwConfiguredVrfs' => '1.3.6.1.4.1.2011.5.25.177.2.3.1',
|
||||
'hwConfiguredIpv4Vrfs' => '1.3.6.1.4.1.2011.5.25.177.2.3.2',
|
||||
'hwConfiguredIpv6Vrfs' => '1.3.6.1.4.1.2011.5.25.177.2.3.3',
|
||||
'hwBgpConformance' => '1.3.6.1.4.1.2011.5.25.177.3',
|
||||
'hwBgpCompliances' => '1.3.6.1.4.1.2011.5.25.177.3.1',
|
||||
'hwBgpGroups' => '1.3.6.1.4.1.2011.5.25.177.3.2',
|
||||
'hwBgpVpnConformance' => '1.3.6.1.4.1.2011.5.25.177.5',
|
||||
'hwBgpVpnCompliances' => '1.3.6.1.4.1.2011.5.25.177.5.1',
|
||||
'hwBgpVpnExtGroups' => '1.3.6.1.4.1.2011.5.25.177.5.2',
|
||||
'hwTnl2VpnTrapObjects' => '1.3.6.1.4.1.2011.5.25.177.6',
|
||||
'hwTnl2VpnTrapTable' => '1.3.6.1.4.1.2011.5.25.177.6.1',
|
||||
'hwTnl2VpnTrapEntry' => '1.3.6.1.4.1.2011.5.25.177.6.1.1',
|
||||
'hwVpnId' => '1.3.6.1.4.1.2011.5.25.177.6.1.1.1',
|
||||
'hwVpnPublicNextHop' => '1.3.6.1.4.1.2011.5.25.177.6.1.1.2',
|
||||
'hwTunnelReachablityEvent' => '1.3.6.1.4.1.2011.5.25.177.6.1.1.3',
|
||||
'hwVpnTrapCkeyValue' => '1.3.6.1.4.1.2011.5.25.177.6.1.1.4',
|
||||
'hwTnl2VpnTrapConformance' => '1.3.6.1.4.1.2011.5.25.177.7',
|
||||
'hwTnl2VpnTrapConformances' => '1.3.6.1.4.1.2011.5.25.177.7.1',
|
||||
'hwTnl2VpnTrapGroups' => '1.3.6.1.4.1.2011.5.25.177.7.2',
|
||||
'hwTnl2VpnTrapNotification' => '1.3.6.1.4.1.2011.5.25.177.8',
|
||||
'hwPeerDistributeObjects' => '1.3.6.1.4.1.2011.5.25.177.9',
|
||||
'hwBgpTotalRouteNumber' => '1.3.6.1.4.1.2011.5.25.177.9.1',
|
||||
'hwOsNodeTable' => '1.3.6.1.4.1.2011.5.25.177.9.2',
|
||||
'hwOsNodeEntry' => '1.3.6.1.4.1.2011.5.25.177.9.2.1',
|
||||
'hwCurrSlot' => '1.3.6.1.4.1.2011.5.25.177.9.2.1.1',
|
||||
'hwPeerNumber' => '1.3.6.1.4.1.2011.5.25.177.9.2.1.4',
|
||||
'hwRouteNumber' => '1.3.6.1.4.1.2011.5.25.177.9.2.1.5',
|
||||
'hwDistributeTable' => '1.3.6.1.4.1.2011.5.25.177.9.3',
|
||||
'hwDistributeEntry' => '1.3.6.1.4.1.2011.5.25.177.9.3.1',
|
||||
'hwDistributeLocId' => '1.3.6.1.4.1.2011.5.25.177.9.3.1.1',
|
||||
'hwDistributeName' => '1.3.6.1.4.1.2011.5.25.177.9.3.1.2',
|
||||
'hwMigrateSrcSlot' => '1.3.6.1.4.1.2011.5.25.177.9.3.1.3',
|
||||
'hwMigrateDestSlot' => '1.3.6.1.4.1.2011.5.25.177.9.3.1.4',
|
||||
'hwMigrateReason' => '1.3.6.1.4.1.2011.5.25.177.9.3.1.5',
|
||||
'hwMigrateReasonDefinition' => 'HUAWEI-BGP-VPN-MIB::hwMigrateReason',
|
||||
'hwPeerDistributeTraps' => '1.3.6.1.4.1.2011.5.25.177.9.4',
|
||||
'hwRpkiObjects' => '1.3.6.1.4.1.2011.5.25.177.11',
|
||||
'hwRpkiSessions' => '1.3.6.1.4.1.2011.5.25.177.11.1',
|
||||
'hwRpkiSessionTable' => '1.3.6.1.4.1.2011.5.25.177.11.1.1',
|
||||
'hwRpkiSessionEntry' => '1.3.6.1.4.1.2011.5.25.177.11.1.1.1',
|
||||
'hwRpkiSessionVrfName' => '1.3.6.1.4.1.2011.5.25.177.11.1.1.1.1',
|
||||
'hwRpkiSessionType' => '1.3.6.1.4.1.2011.5.25.177.11.1.1.1.2',
|
||||
'hwSessionIPAddr' => '1.3.6.1.4.1.2011.5.25.177.11.1.1.1.3',
|
||||
'hwRpkiSessionRoaLimitNum' => '1.3.6.1.4.1.2011.5.25.177.11.1.1.1.4',
|
||||
'hwRpkiTraps' => '1.3.6.1.4.1.2011.5.25.177.11.2',
|
||||
'hwRpkiConformance' => '1.3.6.1.4.1.2011.5.25.177.11.3',
|
||||
'hwRpkiCompliances' => '1.3.6.1.4.1.2011.5.25.177.11.3.1',
|
||||
'hwRpkiGroups' => '1.3.6.1.4.1.2011.5.25.177.11.3.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'HUAWEI-BGP-VPN-MIB'} = {
|
||||
'hwMigrateReason' => {
|
||||
'1' => 'memoryoverload',
|
||||
'2' => 'cpuoverload',
|
||||
},
|
||||
'HWBgpSafi' => {
|
||||
'1' => 'unicast',
|
||||
'2' => 'multicast',
|
||||
'4' => 'mpls',
|
||||
'5' => 'mcast-vpn',
|
||||
'65' => 'vpls',
|
||||
'66' => 'mdt',
|
||||
'128' => 'vpn',
|
||||
'132' => 'route-target',
|
||||
},
|
||||
'hwBgpPeerAdminStatus' => {
|
||||
'1' => 'stop',
|
||||
'2' => 'start',
|
||||
},
|
||||
'hwBgpPeerSessionReason' => {
|
||||
'1' => 'configurationLeadPeerDown',
|
||||
'2' => 'receiveNotification',
|
||||
'3' => 'receiveErrorPacket',
|
||||
'4' => 'holdTimerExpire',
|
||||
'5' => 'remotePeerNotReachable',
|
||||
'6' => 'directConnectInterfaceDown',
|
||||
'7' => 'routeLimit',
|
||||
'8' => 'peerIsNotUpForASpecifiedPeriodOfTime',
|
||||
'100' => 'alarmClear',
|
||||
},
|
||||
'hwBgpRouteLimitindex' => {
|
||||
'1' => 'ipv4',
|
||||
'2' => 'ipv6',
|
||||
'3' => 'ipv4vrf',
|
||||
'4' => 'ipv6vrf',
|
||||
'5' => 'ipv4public',
|
||||
'6' => 'ipv6public',
|
||||
'7' => 'l2ad',
|
||||
},
|
||||
'hwBgpPeerSessionExtReason' => {
|
||||
'1' => 'configurationLeadPeerDown',
|
||||
'2' => 'receiveNotification',
|
||||
'3' => 'receiveErrorPacket',
|
||||
'4' => 'holdTimerExpire',
|
||||
'5' => 'remotePeerNotReachable',
|
||||
'6' => 'directConnectInterfaceDown',
|
||||
'7' => 'routeLimit',
|
||||
'8' => 'peerIsNotUpForASpecifiedPeriodOfTime',
|
||||
'90' => 'unknown',
|
||||
'100' => 'alarmClear',
|
||||
},
|
||||
'HWBgpAfi' => {
|
||||
'1' => 'ipv4',
|
||||
'2' => 'ipv6',
|
||||
'25' => 'vpls',
|
||||
'196' => 'l2vpn',
|
||||
},
|
||||
'hwBgpPeerGRStatus' => {
|
||||
'1' => 'peerNotBeingHelped',
|
||||
'2' => 'peerRestarting',
|
||||
'3' => 'peerFinishRestart',
|
||||
'4' => 'peerHelping',
|
||||
},
|
||||
'hwBgpPeerState' => {
|
||||
'1' => 'idle',
|
||||
'2' => 'connect',
|
||||
'3' => 'active',
|
||||
'4' => 'opensent',
|
||||
'5' => 'openconfirm',
|
||||
'6' => 'established',
|
||||
},
|
||||
'hwBgpPeerSessionUnavailableType' => {
|
||||
'1' => 'uptodown',
|
||||
'2' => 'alwaysdown',
|
||||
},
|
||||
'hwBgpPeerSessionExtUnavailableType' => {
|
||||
'1' => 'uptodown',
|
||||
'2' => 'alwaysdown',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,939 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::HUAWEIENTITYEXTENTMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'HUAWEI-ENTITY-EXTENT-MIB'} = {
|
||||
url => '',
|
||||
name => 'HUAWEI-ENTITY-EXTENT-MIB',
|
||||
};
|
||||
|
||||
#$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'HUAWEI-ENTITY-EXTENT-MIB'} =
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'HUAWEI-ENTITY-EXTENT-MIB'} = {
|
||||
'hwEntityExtentMIB' => '1.3.6.1.4.1.2011.5.25.31',
|
||||
'hwEntityExtObjects' => '1.3.6.1.4.1.2011.5.25.31.1',
|
||||
'hwEntityState' => '1.3.6.1.4.1.2011.5.25.31.1.1',
|
||||
'hwEntityStateTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.1',
|
||||
'hwEntityStateEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1',
|
||||
'hwEntityAdminStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1',
|
||||
'hwEntityAdminStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::HwAdminState',
|
||||
'hwEntityOperStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2',
|
||||
'hwEntityOperStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::HwOperState',
|
||||
'hwEntityStandbyStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3',
|
||||
'hwEntityStandbyStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::HwStandbyStatus',
|
||||
'hwEntityAlarmLight' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.4',
|
||||
'hwEntityAlarmLightDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::HwAlarmStatus',
|
||||
'hwEntityCpuUsage' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5',
|
||||
'hwEntityCpuUsageThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6',
|
||||
'hwEntityMemUsage' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7',
|
||||
'hwEntityMemUsageThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8',
|
||||
'hwEntityMemSize' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9',
|
||||
'hwEntityUpTime' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10',
|
||||
'hwEntityTemperature' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11',
|
||||
'hwEntityTemperatureThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12',
|
||||
'hwEntityVoltage' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13',
|
||||
'hwEntityVoltageLowThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14',
|
||||
'hwEntityVoltageHighThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15',
|
||||
'hwEntityTemperatureLowThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16',
|
||||
'hwEntityOpticalPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17',
|
||||
'hwEntityCurrent' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18',
|
||||
'hwEntityMemSizeMega' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19',
|
||||
'hwEntityPortType' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20',
|
||||
'hwEntityPortTypeDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityPortType',
|
||||
'hwEntityDuplex' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21',
|
||||
'hwEntityDuplexDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityDuplex',
|
||||
'hwEntityOpticalPowerRx' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22',
|
||||
'hwEntityCpuUsageLowThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.23',
|
||||
'hwEntityBoardPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.24',
|
||||
'hwEntityCpuFrequency' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.25',
|
||||
'hwEntitySupportFlexCard' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.26',
|
||||
'hwEntitySupportFlexCardDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntitySupportFlexCard',
|
||||
'hwEntityBoardClass' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.27',
|
||||
'hwEntityBoardClassDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityBoardClass',
|
||||
'hwNseOpmStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.28',
|
||||
'hwEntityCpuMaxUsage' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.29',
|
||||
'hwEntityCPUType' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.30',
|
||||
'hwEntityMemoryType' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.31',
|
||||
'hwEntityFlashSize' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.32',
|
||||
'hwEntityIfUpTimes' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.33',
|
||||
'hwEntityIfDownTimes' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.34',
|
||||
'hwEntityCPUAvgUsage' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.35',
|
||||
'hwEntityMemoryAvgUsage' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.36',
|
||||
'hwEntityMemUsed' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.37',
|
||||
'hwEntityTotalFanNum' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.38',
|
||||
'hwEntityNomalFanNum' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.39',
|
||||
'hwEntityTotalPwrNum' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.40',
|
||||
'hwEntityNomalPwrNum' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.41',
|
||||
'hwEntityFaultLight' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.42',
|
||||
'hwEntityFaultLightDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityFaultLight',
|
||||
'hwEntityBoardName' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43',
|
||||
'hwEntityBoardDescription' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44',
|
||||
'hwEntity5MinCpuUsage' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.45',
|
||||
'hwEntityStartMode' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.46',
|
||||
'hwEntityStartModeDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityStartMode',
|
||||
'hwEntitySplitAttribute' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.47',
|
||||
'hwEntityFaultLightKeepTime' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.48',
|
||||
'hwEntityPbufUsage' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.49',
|
||||
'hwEntityTMUsage' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.50',
|
||||
'hwEntityHda1Usage' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.51',
|
||||
'hwEntityHda1UsageThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.52',
|
||||
'hwEntityHda1UsageResumeThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.53',
|
||||
'hwEntitySlotID' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.54',
|
||||
'hwEntityCpuID' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.55',
|
||||
'hwEntityPreviousValue' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.56',
|
||||
'hwEntityCurrentValue' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.57',
|
||||
'hwEntityChangeValue' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.58',
|
||||
'hwEntityChangeValueThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.59',
|
||||
'hwEntityModelName' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.60',
|
||||
'hwEntityIssueNumber' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.61',
|
||||
'hwEntityDeviceStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.62',
|
||||
'hwEntityDeviceStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityDeviceStatus',
|
||||
'hwEntityPicStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.63',
|
||||
'hwEntityPicStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityPicStatus',
|
||||
'hwEntityMPUType' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.64',
|
||||
'hwEntityMemSizeExt' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65',
|
||||
'hwEntityTemperatureMinorThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.66',
|
||||
'hwEntityVoltageFatalHighThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.67',
|
||||
'hwEntityVoltageFatalLowThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.68',
|
||||
'hwEntityMemCacheUsage' => '1.3.6.1.4.1.2011.5.25.31.1.1.1.1.69',
|
||||
'hwRUModuleInfoTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.2',
|
||||
'hwRUModuleInfoEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.2.1',
|
||||
'hwEntityBomId' => '1.3.6.1.4.1.2011.5.25.31.1.1.2.1.1',
|
||||
'hwEntityBomEnDesc' => '1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2',
|
||||
'hwEntityBomLocalDesc' => '1.3.6.1.4.1.2011.5.25.31.1.1.2.1.3',
|
||||
'hwEntityManufacturedDate' => '1.3.6.1.4.1.2011.5.25.31.1.1.2.1.4',
|
||||
'hwEntityManufactureCode' => '1.3.6.1.4.1.2011.5.25.31.1.1.2.1.5',
|
||||
'hwEntityCLEICode' => '1.3.6.1.4.1.2011.5.25.31.1.1.2.1.6',
|
||||
'hwEntityUpdateLog' => '1.3.6.1.4.1.2011.5.25.31.1.1.2.1.7',
|
||||
'hwEntityArchivesInfoVersion' => '1.3.6.1.4.1.2011.5.25.31.1.1.2.1.8',
|
||||
'hwEntityOpenBomId' => '1.3.6.1.4.1.2011.5.25.31.1.1.2.1.9',
|
||||
'hwEntityIssueNum' => '1.3.6.1.4.1.2011.5.25.31.1.1.2.1.10',
|
||||
'hwEntityBoardType' => '1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11',
|
||||
'hwEntityExInfo' => '1.3.6.1.4.1.2011.5.25.31.1.1.2.1.12',
|
||||
'hwEntityModel' => '1.3.6.1.4.1.2011.5.25.31.1.1.2.1.13',
|
||||
'hwEntityElabelVersion' => '1.3.6.1.4.1.2011.5.25.31.1.1.2.1.14',
|
||||
'hwOpticalModuleInfoTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.3',
|
||||
'hwOpticalModuleInfoEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1',
|
||||
'hwEntityOpticalMode' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1',
|
||||
'hwEntityOpticalModeDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityOpticalMode',
|
||||
'hwEntityOpticalWaveLength' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2',
|
||||
'hwEntityOpticalTransDistance' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3',
|
||||
'hwEntityOpticalVendorSn' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4',
|
||||
'hwEntityOpticalTemperature' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5',
|
||||
'hwEntityOpticalVoltage' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6',
|
||||
'hwEntityOpticalBiasCurrent' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7',
|
||||
'hwEntityOpticalRxPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8',
|
||||
'hwEntityOpticalTxPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9',
|
||||
'hwEntityOpticalType' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.10',
|
||||
'hwEntityOpticalTypeDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityOpticalType',
|
||||
'hwEntityOpticalTransBW' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.11',
|
||||
'hwEntityOpticalFiberType' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.12',
|
||||
'hwEntityOpticalFiberTypeDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityOpticalFiberType',
|
||||
'hwEntityOpticalRxLowThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.13',
|
||||
'hwEntityOpticalRxHighThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.14',
|
||||
'hwEntityOpticalTxLowThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.15',
|
||||
'hwEntityOpticalTxHighThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.16',
|
||||
'hwEntityOpticalPlug' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.17',
|
||||
'hwEntityOpticalPlugDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityOpticalPlug',
|
||||
'hwEntityOpticalDirectionType' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.18',
|
||||
'hwEntityOpticalDirectionTypeDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityOpticalDirectionType',
|
||||
'hwEntityOpticalUserEeprom' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.19',
|
||||
'hwEntityOpticalRxLowWarnThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.20',
|
||||
'hwEntityOpticalRxHighWarnThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.21',
|
||||
'hwEntityOpticalTxLowWarnThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.22',
|
||||
'hwEntityOpticalTxHighWarnThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.23',
|
||||
'hwEntityOpticalVenderName' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.24',
|
||||
'hwEntityOpticalVenderPn' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.25',
|
||||
'hwEntityOpticalAuthenticationStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.26',
|
||||
'hwEntityOpticalAuthenticationStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityOpticalAuthenticationStatus',
|
||||
'hwEntityOpticalTunableType' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.27',
|
||||
'hwEntityOpticalTunableTypeDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityOpticalTunableType',
|
||||
'hwEntityOpticalWaveLengthDecimal' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.28',
|
||||
'hwEntityOpticalTunableModuleChannel' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.29',
|
||||
'hwEntityOpticalWaveBand' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.30',
|
||||
'hwEntityOpticalWaveBandDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityOpticalWaveBand',
|
||||
'hwEntityOpticalLaneBiasCurrent' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.31',
|
||||
'hwEntityOpticalLaneRxPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.32',
|
||||
'hwEntityOpticalLaneTxPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.33',
|
||||
'hwEntityOpticalVendorOUI' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.34',
|
||||
'hwEntityOpticalVendorRev' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.35',
|
||||
'hwEntityOpticalGponSN' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.36',
|
||||
'hwEntityTransceiverType' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.37',
|
||||
'hwEntityOpticalMaxRxPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.38',
|
||||
'hwEntityOpticalMinRxPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.39',
|
||||
'hwEntityOpticalMaxTxPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.40',
|
||||
'hwEntityOpticalMinTxPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.41',
|
||||
'hwEntityOpticalTransType' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.42',
|
||||
'hwEntityOpticalConnectType' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.43',
|
||||
'hwEntityOpticalOrderingName' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.44',
|
||||
'hwEntityOpticalTransferDistance' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.45',
|
||||
'hwEntityOpticalBandWidth' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.46',
|
||||
'hwEntityOpticalWaveLengthExact' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.47',
|
||||
'hwEntityOpticalModel' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.48',
|
||||
'hwEntityOpticalManufacturedDate' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.49',
|
||||
'hwEntityOpticalTempLowThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.50',
|
||||
'hwEntityOpticalTempHighThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.51',
|
||||
'hwEntityOpticalVoltLowThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.52',
|
||||
'hwEntityOpticalVoltHighThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.53',
|
||||
'hwEntityOpticalBiasLowThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.54',
|
||||
'hwEntityOpticalBiasHighThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.55',
|
||||
'hwEntityOpticalHuaweiCertified' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.56',
|
||||
'hwEntityOpticalSupportDDM' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.57',
|
||||
'hwEntityOpticalSupportDDMDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityOpticalSupportDDM',
|
||||
'hwEntityOpticalPortName' => '1.3.6.1.4.1.2011.5.25.31.1.1.3.1.58',
|
||||
'hwMonitorInputTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.4',
|
||||
'hwMonitorInputEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.4.1',
|
||||
'hwMonitorInputIndex' => '1.3.6.1.4.1.2011.5.25.31.1.1.4.1.1',
|
||||
'hwMonitorInputName' => '1.3.6.1.4.1.2011.5.25.31.1.1.4.1.2',
|
||||
'hwMonitorInputState' => '1.3.6.1.4.1.2011.5.25.31.1.1.4.1.3',
|
||||
'hwMonitorInputStateDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::HWLevelState',
|
||||
'hwMonitorInputStateEnable' => '1.3.6.1.4.1.2011.5.25.31.1.1.4.1.4',
|
||||
'hwMonitorInputRowStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.4.1.5',
|
||||
'hwMonitorOutputTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.5',
|
||||
'hwMonitorOutputEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.5.1',
|
||||
'hwMonitorOutputIndex' => '1.3.6.1.4.1.2011.5.25.31.1.1.5.1.1',
|
||||
'hwMonitorOutputRuleIndex' => '1.3.6.1.4.1.2011.5.25.31.1.1.5.1.2',
|
||||
'hwMonitorOutputMask' => '1.3.6.1.4.1.2011.5.25.31.1.1.5.1.3',
|
||||
'hwMonitorOutputKey' => '1.3.6.1.4.1.2011.5.25.31.1.1.5.1.4',
|
||||
'hwMonitorOutputRowStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.5.1.5',
|
||||
'hwEntPowerUsedInfoTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.6',
|
||||
'hwEntPowerUsedInfoEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.6.1',
|
||||
'hwEntPowerUsedInfoBoardName' => '1.3.6.1.4.1.2011.5.25.31.1.1.6.1.1',
|
||||
'hwEntPowerUsedInfoBoardType' => '1.3.6.1.4.1.2011.5.25.31.1.1.6.1.2',
|
||||
'hwEntPowerUsedInfoBoardSlot' => '1.3.6.1.4.1.2011.5.25.31.1.1.6.1.3',
|
||||
'hwEntPowerUsedInfoPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.6.1.4',
|
||||
'hwVirtualCableTestTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.7',
|
||||
'hwVirtualCableTestEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.7.1',
|
||||
'hwVirtualCableTestIfIndex' => '1.3.6.1.4.1.2011.5.25.31.1.1.7.1.1',
|
||||
'hwVirtualCableTestPairStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.7.1.2',
|
||||
'hwVirtualCableTestPairStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwVirtualCableTestPairStatus',
|
||||
'hwVirtualCableTestPairLength' => '1.3.6.1.4.1.2011.5.25.31.1.1.7.1.3',
|
||||
'hwVirtualCableTestOperation' => '1.3.6.1.4.1.2011.5.25.31.1.1.7.1.4',
|
||||
'hwVirtualCableTestOperationDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwVirtualCableTestOperation',
|
||||
'hwVirtualCableTestLastTime' => '1.3.6.1.4.1.2011.5.25.31.1.1.7.1.5',
|
||||
'hwVirtualCableTestPairAStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.7.1.6',
|
||||
'hwVirtualCableTestPairAStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwVirtualCableTestPairAStatus',
|
||||
'hwVirtualCableTestPairBStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.7.1.7',
|
||||
'hwVirtualCableTestPairBStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwVirtualCableTestPairBStatus',
|
||||
'hwVirtualCableTestPairCStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.7.1.8',
|
||||
'hwVirtualCableTestPairCStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwVirtualCableTestPairCStatus',
|
||||
'hwVirtualCableTestPairDStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.7.1.9',
|
||||
'hwVirtualCableTestPairDStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwVirtualCableTestPairDStatus',
|
||||
'hwVirtualCableTestPairALength' => '1.3.6.1.4.1.2011.5.25.31.1.1.7.1.10',
|
||||
'hwVirtualCableTestPairBLength' => '1.3.6.1.4.1.2011.5.25.31.1.1.7.1.11',
|
||||
'hwVirtualCableTestPairCLength' => '1.3.6.1.4.1.2011.5.25.31.1.1.7.1.12',
|
||||
'hwVirtualCableTestPairDLength' => '1.3.6.1.4.1.2011.5.25.31.1.1.7.1.13',
|
||||
'hwTemperatureThresholdTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.8',
|
||||
'hwTemperatureThresholdEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.8.1',
|
||||
'hwEntityTempSlotId' => '1.3.6.1.4.1.2011.5.25.31.1.1.8.1.1',
|
||||
'hwEntityTempI2CId' => '1.3.6.1.4.1.2011.5.25.31.1.1.8.1.2',
|
||||
'hwEntityTempAddr' => '1.3.6.1.4.1.2011.5.25.31.1.1.8.1.3',
|
||||
'hwEntityTempChannel' => '1.3.6.1.4.1.2011.5.25.31.1.1.8.1.4',
|
||||
'hwEntityTempStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.8.1.5',
|
||||
'hwEntityTempStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityTempStatus',
|
||||
'hwEntityTempValue' => '1.3.6.1.4.1.2011.5.25.31.1.1.8.1.6',
|
||||
'hwEntityTempMinorAlmThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.8.1.7',
|
||||
'hwEntityTempMajorAlmThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.8.1.8',
|
||||
'hwEntityTempFatalAlmThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.8.1.9',
|
||||
'hwVoltageInfoTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.9',
|
||||
'hwVoltageInfoEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.9.1',
|
||||
'hwEntityVolSlot' => '1.3.6.1.4.1.2011.5.25.31.1.1.9.1.1',
|
||||
'hwEntityVolI2CId' => '1.3.6.1.4.1.2011.5.25.31.1.1.9.1.2',
|
||||
'hwEntityVolAddr' => '1.3.6.1.4.1.2011.5.25.31.1.1.9.1.3',
|
||||
'hwEntityVolChannel' => '1.3.6.1.4.1.2011.5.25.31.1.1.9.1.4',
|
||||
'hwEntityVolStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.9.1.5',
|
||||
'hwEntityVolStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityVolStatus',
|
||||
'hwEntityVolRequired' => '1.3.6.1.4.1.2011.5.25.31.1.1.9.1.6',
|
||||
'hwEntityVolCurValue' => '1.3.6.1.4.1.2011.5.25.31.1.1.9.1.7',
|
||||
'hwEntityVolRatio' => '1.3.6.1.4.1.2011.5.25.31.1.1.9.1.8',
|
||||
'hwEntityVolLowAlmMajor' => '1.3.6.1.4.1.2011.5.25.31.1.1.9.1.9',
|
||||
'hwEntityVolLowAlmFatal' => '1.3.6.1.4.1.2011.5.25.31.1.1.9.1.10',
|
||||
'hwEntityVolHighAlmMajor' => '1.3.6.1.4.1.2011.5.25.31.1.1.9.1.11',
|
||||
'hwEntityVolHighAlmFatal' => '1.3.6.1.4.1.2011.5.25.31.1.1.9.1.12',
|
||||
'hwFanStatusTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.10',
|
||||
'hwFanStatusEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.10.1',
|
||||
'hwEntityFanSlot' => '1.3.6.1.4.1.2011.5.25.31.1.1.10.1.1',
|
||||
'hwEntityFanSn' => '1.3.6.1.4.1.2011.5.25.31.1.1.10.1.2',
|
||||
'hwEntityFanReg' => '1.3.6.1.4.1.2011.5.25.31.1.1.10.1.3',
|
||||
'hwEntityFanRegDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityFanReg',
|
||||
'hwEntityFanSpdAdjMode' => '1.3.6.1.4.1.2011.5.25.31.1.1.10.1.4',
|
||||
'hwEntityFanSpdAdjModeDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityFanSpdAdjMode',
|
||||
'hwEntityFanSpeed' => '1.3.6.1.4.1.2011.5.25.31.1.1.10.1.5',
|
||||
'hwEntityFanPresent' => '1.3.6.1.4.1.2011.5.25.31.1.1.10.1.6',
|
||||
'hwEntityFanPresentDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityFanPresent',
|
||||
'hwEntityFanState' => '1.3.6.1.4.1.2011.5.25.31.1.1.10.1.7',
|
||||
'hwEntityFanStateDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityFanState',
|
||||
'hwEntityFanDesc' => '1.3.6.1.4.1.2011.5.25.31.1.1.10.1.8',
|
||||
'hwEntityGlobalPara' => '1.3.6.1.4.1.2011.5.25.31.1.1.11',
|
||||
'hwEntityServiceType' => '1.3.6.1.4.1.2011.5.25.31.1.1.11.1',
|
||||
'hwEntityServiceTypeDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityServiceType',
|
||||
'hwDeviceServiceType' => '1.3.6.1.4.1.2011.5.25.31.1.1.11.2',
|
||||
'hwEntityManufacturerOUI' => '1.3.6.1.4.1.2011.5.25.31.1.1.11.3',
|
||||
'hwPortBip8StatisticsTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.12',
|
||||
'hwPortBip8StatisticsEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.12.1',
|
||||
'hwPhysicalPortBip8StatisticsEB' => '1.3.6.1.4.1.2011.5.25.31.1.1.12.1.1',
|
||||
'hwPhysicalPortBip8StatisticsES' => '1.3.6.1.4.1.2011.5.25.31.1.1.12.1.2',
|
||||
'hwPhysicalPortBip8StatisticsSES' => '1.3.6.1.4.1.2011.5.25.31.1.1.12.1.3',
|
||||
'hwPhysicalPortBip8StatisticsUAS' => '1.3.6.1.4.1.2011.5.25.31.1.1.12.1.4',
|
||||
'hwPhysicalPortBip8StatisticsBBE' => '1.3.6.1.4.1.2011.5.25.31.1.1.12.1.5',
|
||||
'hwPhysicalPortSpeed' => '1.3.6.1.4.1.2011.5.25.31.1.1.12.1.6',
|
||||
'hwStorageEntTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.13',
|
||||
'hwStorageEntEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.13.1',
|
||||
'hwStorageEntIndex' => '1.3.6.1.4.1.2011.5.25.31.1.1.13.1.1',
|
||||
'hwStorageEntType' => '1.3.6.1.4.1.2011.5.25.31.1.1.13.1.2',
|
||||
'hwStorageEntSpace' => '1.3.6.1.4.1.2011.5.25.31.1.1.13.1.3',
|
||||
'hwStorageEntSpaceFree' => '1.3.6.1.4.1.2011.5.25.31.1.1.13.1.4',
|
||||
'hwStorageEntName' => '1.3.6.1.4.1.2011.5.25.31.1.1.13.1.5',
|
||||
'hwStorageEntDescr' => '1.3.6.1.4.1.2011.5.25.31.1.1.13.1.6',
|
||||
'hwSystemPowerTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.14',
|
||||
'hwSystemPowerEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.14.1',
|
||||
'hwSystemPowerDeviceID' => '1.3.6.1.4.1.2011.5.25.31.1.1.14.1.1',
|
||||
'hwSystemPowerTotalPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.14.1.2',
|
||||
'hwSystemPowerUsedPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.14.1.3',
|
||||
'hwSystemPowerRemainPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.14.1.4',
|
||||
'hwSystemPowerReservedPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.14.1.5',
|
||||
'hwBatteryInfoTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.15',
|
||||
'hwBatteryInfoEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.15.1',
|
||||
'hwBatteryState' => '1.3.6.1.4.1.2011.5.25.31.1.1.15.1.1',
|
||||
'hwBatteryStateDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwBatteryState',
|
||||
'hwBatteryTemperatureLow' => '1.3.6.1.4.1.2011.5.25.31.1.1.15.1.2',
|
||||
'hwBatteryTemperatureHigh' => '1.3.6.1.4.1.2011.5.25.31.1.1.15.1.3',
|
||||
'hwBatteryRemainPercent' => '1.3.6.1.4.1.2011.5.25.31.1.1.15.1.4',
|
||||
'hwBatteryRemainTime' => '1.3.6.1.4.1.2011.5.25.31.1.1.15.1.5',
|
||||
'hwBatteryElecTimes' => '1.3.6.1.4.1.2011.5.25.31.1.1.15.1.6',
|
||||
'hwBatteryLifeThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.15.1.7',
|
||||
'hwGPSLocationInfo' => '1.3.6.1.4.1.2011.5.25.31.1.1.16',
|
||||
'hwGPSLongitude' => '1.3.6.1.4.1.2011.5.25.31.1.1.16.1',
|
||||
'hwGPSLatitude' => '1.3.6.1.4.1.2011.5.25.31.1.1.16.2',
|
||||
'hwGPSVelocity' => '1.3.6.1.4.1.2011.5.25.31.1.1.16.3',
|
||||
'hwAdmPortTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.17',
|
||||
'hwAdmPortEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.17.1',
|
||||
'hwAdmPortDescription' => '1.3.6.1.4.1.2011.5.25.31.1.1.17.1.1',
|
||||
'hwPwrStatusTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.18',
|
||||
'hwPwrStatusEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.18.1',
|
||||
'hwEntityPwrSlot' => '1.3.6.1.4.1.2011.5.25.31.1.1.18.1.1',
|
||||
'hwEntityPwrSn' => '1.3.6.1.4.1.2011.5.25.31.1.1.18.1.2',
|
||||
'hwEntityPwrReg' => '1.3.6.1.4.1.2011.5.25.31.1.1.18.1.3',
|
||||
'hwEntityPwrRegDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityPwrReg',
|
||||
'hwEntityPwrMode' => '1.3.6.1.4.1.2011.5.25.31.1.1.18.1.4',
|
||||
'hwEntityPwrModeDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityPwrMode',
|
||||
'hwEntityPwrPresent' => '1.3.6.1.4.1.2011.5.25.31.1.1.18.1.5',
|
||||
'hwEntityPwrPresentDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityPwrPresent',
|
||||
'hwEntityPwrState' => '1.3.6.1.4.1.2011.5.25.31.1.1.18.1.6',
|
||||
'hwEntityPwrStateDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityPwrState',
|
||||
'hwEntityPwrCurrent' => '1.3.6.1.4.1.2011.5.25.31.1.1.18.1.7',
|
||||
'hwEntityPwrVoltage' => '1.3.6.1.4.1.2011.5.25.31.1.1.18.1.8',
|
||||
'hwEntityPwrDesc' => '1.3.6.1.4.1.2011.5.25.31.1.1.18.1.9',
|
||||
'hwEntityPwrPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.18.1.10',
|
||||
'hwEntityCpuUsageHistoryTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.19',
|
||||
'hwEntityCpuUsageHistoryEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.19.1',
|
||||
'hwCpuUsageHistoryIndex' => '1.3.6.1.4.1.2011.5.25.31.1.1.19.1.1',
|
||||
'hwCpuUsageHistoryTime' => '1.3.6.1.4.1.2011.5.25.31.1.1.19.1.2',
|
||||
'hwCpuUsageHistoryRate' => '1.3.6.1.4.1.2011.5.25.31.1.1.19.1.3',
|
||||
'hwEntityMemUsageHistoryTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.20',
|
||||
'hwEntityMemUsageHistoryEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.20.1',
|
||||
'hwMemUsageHistoryIndex' => '1.3.6.1.4.1.2011.5.25.31.1.1.20.1.1',
|
||||
'hwMemUsageHistoryTime' => '1.3.6.1.4.1.2011.5.25.31.1.1.20.1.2',
|
||||
'hwMemUsageHistoryRate' => '1.3.6.1.4.1.2011.5.25.31.1.1.20.1.3',
|
||||
'hwProcessStateInfo' => '1.3.6.1.4.1.2011.5.25.31.1.1.21',
|
||||
'hwProcessName' => '1.3.6.1.4.1.2011.5.25.31.1.1.21.1',
|
||||
'hwDiskStateInfo' => '1.3.6.1.4.1.2011.5.25.31.1.1.22',
|
||||
'hwDiskType' => '1.3.6.1.4.1.2011.5.25.31.1.1.22.1',
|
||||
'hwDiskSN' => '1.3.6.1.4.1.2011.5.25.31.1.1.22.2',
|
||||
'hwDiskUsage' => '1.3.6.1.4.1.2011.5.25.31.1.1.22.3',
|
||||
'hwDiskUsageThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.22.4',
|
||||
'hwDiskSlot' => '1.3.6.1.4.1.2011.5.25.31.1.1.22.5',
|
||||
'hwLpuStateInfo' => '1.3.6.1.4.1.2011.5.25.31.1.1.23',
|
||||
'hwLPUType' => '1.3.6.1.4.1.2011.5.25.31.1.1.23.1',
|
||||
'hwLPUSlot' => '1.3.6.1.4.1.2011.5.25.31.1.1.23.2',
|
||||
'hwHardDiskStateTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.24',
|
||||
'hwHardDiskStateEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.24.1',
|
||||
'hwHardDiskIndex' => '1.3.6.1.4.1.2011.5.25.31.1.1.24.1.1',
|
||||
'hwHardDiskSN' => '1.3.6.1.4.1.2011.5.25.31.1.1.24.1.2',
|
||||
'hwHardDiskType' => '1.3.6.1.4.1.2011.5.25.31.1.1.24.1.3',
|
||||
'hwHardDiskCapacity' => '1.3.6.1.4.1.2011.5.25.31.1.1.24.1.4',
|
||||
'hwHardDiskUsage' => '1.3.6.1.4.1.2011.5.25.31.1.1.24.1.5',
|
||||
'hwHardDiskUsageThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.24.1.6',
|
||||
'hwEntitySDCardUsage' => '1.3.6.1.4.1.2011.5.25.31.1.1.24.1.7',
|
||||
'hwEntitySDCardUsageThreshold' => '1.3.6.1.4.1.2011.5.25.31.1.1.24.1.8',
|
||||
'hwCfcardStateInfo' => '1.3.6.1.4.1.2011.5.25.31.1.1.25',
|
||||
'hwLedConfigInfoPara' => '1.3.6.1.4.1.2011.5.25.31.1.1.26',
|
||||
'hwLedConfigStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.26.1',
|
||||
'hwLedTimeRangeName' => '1.3.6.1.4.1.2011.5.25.31.1.1.26.2',
|
||||
'hwUsbConfigInfoPara' => '1.3.6.1.4.1.2011.5.25.31.1.1.27',
|
||||
'hwUsbConfigStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.27.1',
|
||||
'hwEntityNPStateTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.28',
|
||||
'hwEntityNPStateEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.28.1',
|
||||
'hwEntityForwardPerformanceUsage' => '1.3.6.1.4.1.2011.5.25.31.1.1.28.1.1',
|
||||
'hwUploadDiagnosticsTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.29',
|
||||
'hwUploadDiagnosticsEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.29.1',
|
||||
'hwUploadDiagnosticsIndex' => '1.3.6.1.4.1.2011.5.25.31.1.1.29.1.1',
|
||||
'hwUploadDiagnosticsURL' => '1.3.6.1.4.1.2011.5.25.31.1.1.29.1.2',
|
||||
'hwUploadDiagnosticsTransports' => '1.3.6.1.4.1.2011.5.25.31.1.1.29.1.3',
|
||||
'hwUploadDiagnosticsDSCP' => '1.3.6.1.4.1.2011.5.25.31.1.1.29.1.4',
|
||||
'hwUploadDiagnosticsTestFileSize' => '1.3.6.1.4.1.2011.5.25.31.1.1.29.1.5',
|
||||
'hwUploadDiagnosticsProgress' => '1.3.6.1.4.1.2011.5.25.31.1.1.29.1.6',
|
||||
'hwUploadDiagnosticsSpeed' => '1.3.6.1.4.1.2011.5.25.31.1.1.29.1.7',
|
||||
'hwUploadDiagnosticsStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.29.1.8',
|
||||
'hwUploadDiagnosticsRowStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.29.1.9',
|
||||
'hwDownloadDiagnosticsTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.30',
|
||||
'hwDownloadDiagnosticsEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.30.1',
|
||||
'hwDownloadDiagnosticsIndex' => '1.3.6.1.4.1.2011.5.25.31.1.1.30.1.1',
|
||||
'hwDownloadDiagnosticsURL' => '1.3.6.1.4.1.2011.5.25.31.1.1.30.1.2',
|
||||
'hwDownloadDiagnosticsTransports' => '1.3.6.1.4.1.2011.5.25.31.1.1.30.1.3',
|
||||
'hwDownloadDiagnosticsDSCP' => '1.3.6.1.4.1.2011.5.25.31.1.1.30.1.4',
|
||||
'hwDownloadDiagnosticsProgress' => '1.3.6.1.4.1.2011.5.25.31.1.1.30.1.5',
|
||||
'hwDownloadDiagnosticsSpeed' => '1.3.6.1.4.1.2011.5.25.31.1.1.30.1.6',
|
||||
'hwDownloadDiagnosticsStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.30.1.7',
|
||||
'hwDownloadDiagnosticsRowStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.30.1.8',
|
||||
'hwIfBandRateTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.31',
|
||||
'hwIfBandRateEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.31.1',
|
||||
'hwIfBandRateIndex' => '1.3.6.1.4.1.2011.5.25.31.1.1.31.1.1',
|
||||
'hwIfBandRateName' => '1.3.6.1.4.1.2011.5.25.31.1.1.31.1.2',
|
||||
'hwIfBandRateInput' => '1.3.6.1.4.1.2011.5.25.31.1.1.31.1.3',
|
||||
'hwIfBandRateOutput' => '1.3.6.1.4.1.2011.5.25.31.1.1.31.1.4',
|
||||
'hwDacsStatusTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.32',
|
||||
'hwDacsStatusEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.32.1',
|
||||
'hwEntityDacsIndex' => '1.3.6.1.4.1.2011.5.25.31.1.1.32.1.1',
|
||||
'hwEntityDacsPresent' => '1.3.6.1.4.1.2011.5.25.31.1.1.32.1.2',
|
||||
'hwEntityDacsPresentDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityDacsPresent',
|
||||
'hwEntityDacsStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.32.1.3',
|
||||
'hwEntityDacsStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityDacsStatus',
|
||||
'hwEntityDacsInSource' => '1.3.6.1.4.1.2011.5.25.31.1.1.32.1.4',
|
||||
'hwEntityDacsInVolA' => '1.3.6.1.4.1.2011.5.25.31.1.1.32.1.5',
|
||||
'hwEntityDacsInVolB' => '1.3.6.1.4.1.2011.5.25.31.1.1.32.1.6',
|
||||
'hwEntityDacsOutVol' => '1.3.6.1.4.1.2011.5.25.31.1.1.32.1.7',
|
||||
'hwEntityDacsOutCur' => '1.3.6.1.4.1.2011.5.25.31.1.1.32.1.8',
|
||||
'hwEntityDacsOutStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.32.1.9',
|
||||
'hwEntityDacsOutStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityDacsOutStatus',
|
||||
'hwEntityDacsDesc' => '1.3.6.1.4.1.2011.5.25.31.1.1.32.1.10',
|
||||
'hwBoardDcOutputStateTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.33',
|
||||
'hwBoardDcOutputStateEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.33.1',
|
||||
'hwBoardDcOutputLineIndex' => '1.3.6.1.4.1.2011.5.25.31.1.1.33.1.1',
|
||||
'hwBoardDcOutputState' => '1.3.6.1.4.1.2011.5.25.31.1.1.33.1.2',
|
||||
'hwBoardDcOutputInfoTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.34',
|
||||
'hwBoardDcOutputInfoEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.34.1',
|
||||
'hwBoardDcOutputTypeIndex' => '1.3.6.1.4.1.2011.5.25.31.1.1.34.1.1',
|
||||
'hwBoardDcOutputVoltage' => '1.3.6.1.4.1.2011.5.25.31.1.1.34.1.2',
|
||||
'hwBoardDcOutputCurrent' => '1.3.6.1.4.1.2011.5.25.31.1.1.34.1.3',
|
||||
'hwBoardDcOutputPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.34.1.4',
|
||||
'hwBoardAcOutputStateTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.35',
|
||||
'hwBoardAcOutputStateEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.35.1',
|
||||
'hwBoardAcOutputLineIndex' => '1.3.6.1.4.1.2011.5.25.31.1.1.35.1.1',
|
||||
'hwBoardAcOutputState' => '1.3.6.1.4.1.2011.5.25.31.1.1.35.1.2',
|
||||
'hwAlarmConfigTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.36',
|
||||
'hwAlarmResendInterval' => '1.3.6.1.4.1.2011.5.25.31.1.1.36.1',
|
||||
'hwApInfoTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.37',
|
||||
'hwApInfoEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.37.1',
|
||||
'hwEntityApid' => '1.3.6.1.4.1.2011.5.25.31.1.1.37.1.1',
|
||||
'hwEntityApIndex' => '1.3.6.1.4.1.2011.5.25.31.1.1.37.1.2',
|
||||
'hwEntityApName' => '1.3.6.1.4.1.2011.5.25.31.1.1.37.1.3',
|
||||
'hwEntityApMemUsage' => '1.3.6.1.4.1.2011.5.25.31.1.1.37.1.4',
|
||||
'hwEntityApCpuUsage' => '1.3.6.1.4.1.2011.5.25.31.1.1.37.1.5',
|
||||
'hwIntegratedPowerSystemTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.38',
|
||||
'hwIntegratedPowerSystemEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.38.1',
|
||||
'hwIntegratedPowerSoftwareVersion' => '1.3.6.1.4.1.2011.5.25.31.1.1.38.1.1',
|
||||
'hwIntegratedPowerHardwareVersion' => '1.3.6.1.4.1.2011.5.25.31.1.1.38.1.2',
|
||||
'hwIntegratedPowerTable' => '1.3.6.1.4.1.2011.5.25.31.1.1.39',
|
||||
'hwIntegratedPowerEntry' => '1.3.6.1.4.1.2011.5.25.31.1.1.39.1',
|
||||
'hwIntegratedPowerEnergyWorkmode' => '1.3.6.1.4.1.2011.5.25.31.1.1.39.1.1',
|
||||
'hwIntegratedPowerEnergyWorkmodeDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwIntegratedPowerEnergyWorkmode',
|
||||
'hwIntegratedPowerTotalInputPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.39.1.2',
|
||||
'hwIntegratedPower12VDCOutVoltStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.39.1.3',
|
||||
'hwIntegratedPower12VDCOutVoltStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwIntegratedPower12VDCOutVoltStatus',
|
||||
'hwIntegratedPower24VACOutVolt' => '1.3.6.1.4.1.2011.5.25.31.1.1.39.1.4',
|
||||
'hwIntegratedPower24VACOutCurrent' => '1.3.6.1.4.1.2011.5.25.31.1.1.39.1.5',
|
||||
'hwIntegratedPower53VDCOutVoltStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.39.1.6',
|
||||
'hwIntegratedPower53VDCOutVoltStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwIntegratedPower53VDCOutVoltStatus',
|
||||
'hwIntegratedPowerACInputVoltStatus' => '1.3.6.1.4.1.2011.5.25.31.1.1.39.1.7',
|
||||
'hwIntegratedPowerACInputVoltStatusDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwIntegratedPowerACInputVoltStatus',
|
||||
'hwIntegratedPowerRebootPower' => '1.3.6.1.4.1.2011.5.25.31.1.1.39.1.8',
|
||||
'hwIntegratedPowerRebootPowerDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwIntegratedPowerRebootPower',
|
||||
'hwEntityPhysicalSpecTable' => '1.3.6.1.4.1.2011.5.25.31.1.2',
|
||||
'hwEntityPhysicalSpecRack' => '1.3.6.1.4.1.2011.5.25.31.1.2.1',
|
||||
'hwEntityPhysicalSpecFrame' => '1.3.6.1.4.1.2011.5.25.31.1.2.2',
|
||||
'hwEntityPhysicalSpecSlot' => '1.3.6.1.4.1.2011.5.25.31.1.2.3',
|
||||
'hwEntityPhysicalSpecBoard' => '1.3.6.1.4.1.2011.5.25.31.1.2.4',
|
||||
'hwEntityPhysicalSpecSubSlot' => '1.3.6.1.4.1.2011.5.25.31.1.2.5',
|
||||
'hwEntityPhysicalSpecSubBoard' => '1.3.6.1.4.1.2011.5.25.31.1.2.6',
|
||||
'hwEntityPhysicalSpecPort' => '1.3.6.1.4.1.2011.5.25.31.1.2.7',
|
||||
'hwEntityPhysicalSpecEmu' => '1.3.6.1.4.1.2011.5.25.31.1.2.8',
|
||||
'hwEntityPhysicalSpecPowerframe' => '1.3.6.1.4.1.2011.5.25.31.1.2.9',
|
||||
'hwEntityPhysicalSpecPowermodule' => '1.3.6.1.4.1.2011.5.25.31.1.2.10',
|
||||
'hwEntityPhysicalSpecBattery' => '1.3.6.1.4.1.2011.5.25.31.1.2.11',
|
||||
'hwEntityExtTraps' => '1.3.6.1.4.1.2011.5.25.31.2',
|
||||
'hwEntityExtTrapsPrefix' => '1.3.6.1.4.1.2011.5.25.31.2.0',
|
||||
'hwEntityExtTrapObject' => '1.3.6.1.4.1.2011.5.25.31.2.1',
|
||||
'hwEntityExtTrapBaseSoftwareVersion' => '1.3.6.1.4.1.2011.5.25.31.2.1.1',
|
||||
'hwEntityExtTrapBoardSoftwareVersion' => '1.3.6.1.4.1.2011.5.25.31.2.1.2',
|
||||
'hwPhysicalName' => '1.3.6.1.4.1.2011.5.25.31.2.1.3',
|
||||
'hwEntityExtTrapBoardSlotID' => '1.3.6.1.4.1.2011.5.25.31.2.1.4',
|
||||
'hwEntityExtTrapUnitID' => '1.3.6.1.4.1.2011.5.25.31.2.1.5',
|
||||
'hwEntityExtTrapHigPortID' => '1.3.6.1.4.1.2011.5.25.31.2.1.6',
|
||||
'hwEntityExtTrapChannelCurUsage' => '1.3.6.1.4.1.2011.5.25.31.2.1.7',
|
||||
'hwEntityExtTrapChannelThreshold' => '1.3.6.1.4.1.2011.5.25.31.2.1.8',
|
||||
'hwEntityExtTrapPeerBoardSlotID' => '1.3.6.1.4.1.2011.5.25.31.2.1.9',
|
||||
'hwEntityExtTrapErrorPacketStatistics' => '1.3.6.1.4.1.2011.5.25.31.2.1.10',
|
||||
'hwEntityExtTrapErrorPacketThreshold' => '1.3.6.1.4.1.2011.5.25.31.2.1.11',
|
||||
'hwEntityExtTrapHigStateChangeTimes' => '1.3.6.1.4.1.2011.5.25.31.2.1.12',
|
||||
'hwEntityExtTrapMonitorInterval' => '1.3.6.1.4.1.2011.5.25.31.2.1.13',
|
||||
'hwEntityExtTrapBoardDropRuntPktStatistics' => '1.3.6.1.4.1.2011.5.25.31.2.1.14',
|
||||
'hwEntityExtTrapBoardDropRuntPktTimeInterval' => '1.3.6.1.4.1.2011.5.25.31.2.1.15',
|
||||
'hwEntityExtTrapDiscardNumber' => '1.3.6.1.4.1.2011.5.25.31.2.1.16',
|
||||
'hwEntityExtTrapThreshold' => '1.3.6.1.4.1.2011.5.25.31.2.1.17',
|
||||
'hwEntityExtTrapInterval' => '1.3.6.1.4.1.2011.5.25.31.2.1.18',
|
||||
'hwEntityExtTrap' => '1.3.6.1.4.1.2011.5.25.31.2.2',
|
||||
'hwDevicePowerInfoObjects' => '1.3.6.1.4.1.2011.5.25.31.3',
|
||||
'hwDevicePowerInfoTotalPower' => '1.3.6.1.4.1.2011.5.25.31.3.1',
|
||||
'hwDevicePowerInfoUsedPower' => '1.3.6.1.4.1.2011.5.25.31.3.2',
|
||||
'hwEntityExtConformance' => '1.3.6.1.4.1.2011.5.25.31.4',
|
||||
'hwEntityExtCompliances' => '1.3.6.1.4.1.2011.5.25.31.4.1',
|
||||
'hwEntityExtGroups' => '1.3.6.1.4.1.2011.5.25.31.4.2',
|
||||
'hwPnpObjects' => '1.3.6.1.4.1.2011.5.25.31.5',
|
||||
'hwPnpInfo' => '1.3.6.1.4.1.2011.5.25.31.5.1',
|
||||
'hwHardwareCapaSequenceNo' => '1.3.6.1.4.1.2011.5.25.31.5.1.1',
|
||||
'hwAlarmPnPSequenceNo' => '1.3.6.1.4.1.2011.5.25.31.5.1.2',
|
||||
'hwPnpTraps' => '1.3.6.1.4.1.2011.5.25.31.5.2',
|
||||
'hwPnpOperateTable' => '1.3.6.1.4.1.2011.5.25.31.5.3',
|
||||
'hwPnpOperateEntry' => '1.3.6.1.4.1.2011.5.25.31.5.3.1',
|
||||
'hwFileGeneIndex' => '1.3.6.1.4.1.2011.5.25.31.5.3.1.1',
|
||||
'hwFileGeneOperState' => '1.3.6.1.4.1.2011.5.25.31.5.3.1.2',
|
||||
'hwFileGeneOperStateDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwFileGeneOperState',
|
||||
'hwFileGeneResourceType' => '1.3.6.1.4.1.2011.5.25.31.5.3.1.3',
|
||||
'hwFileGeneResourceTypeDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwFileGeneResourceType',
|
||||
'hwFileGeneResourceID' => '1.3.6.1.4.1.2011.5.25.31.5.3.1.4',
|
||||
'hwFileGeneDestinationFile' => '1.3.6.1.4.1.2011.5.25.31.5.3.1.5',
|
||||
'hwFileGeneRowStatus' => '1.3.6.1.4.1.2011.5.25.31.5.3.1.6',
|
||||
'hwSystemGlobalObjects' => '1.3.6.1.4.1.2011.5.25.31.6',
|
||||
'hwEntitySystemNetID' => '1.3.6.1.4.1.2011.5.25.31.6.1',
|
||||
'hwEntitySoftwareName' => '1.3.6.1.4.1.2011.5.25.31.6.2',
|
||||
'hwEntitySoftwareVersion' => '1.3.6.1.4.1.2011.5.25.31.6.3',
|
||||
'hwEntitySoftwareVendor' => '1.3.6.1.4.1.2011.5.25.31.6.4',
|
||||
'hwEntitySystemModel' => '1.3.6.1.4.1.2011.5.25.31.6.5',
|
||||
'hwEntitySystemTime' => '1.3.6.1.4.1.2011.5.25.31.6.6',
|
||||
'hwEntitySystemMacAddress' => '1.3.6.1.4.1.2011.5.25.31.6.7',
|
||||
'hwEntitySystemReset' => '1.3.6.1.4.1.2011.5.25.31.6.8',
|
||||
'hwEntitySystemResetDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntitySystemReset',
|
||||
'hwEntitySystemHealthInterval' => '1.3.6.1.4.1.2011.5.25.31.6.9',
|
||||
'hwEntitySystemNEId' => '1.3.6.1.4.1.2011.5.25.31.6.10',
|
||||
'hwEntitySystemServiceType' => '1.3.6.1.4.1.2011.5.25.31.6.11',
|
||||
'hwHeartbeatObjects' => '1.3.6.1.4.1.2011.5.25.31.7',
|
||||
'hwHeartbeatConfig' => '1.3.6.1.4.1.2011.5.25.31.7.1',
|
||||
'hwEntityHeartbeatOnOff' => '1.3.6.1.4.1.2011.5.25.31.7.1.1',
|
||||
'hwEntityHeartbeatOnOffDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityHeartbeatOnOff',
|
||||
'hwEntityHeartbeatPeriod' => '1.3.6.1.4.1.2011.5.25.31.7.1.2',
|
||||
'hwHeartbeatTrapPrefix' => '1.3.6.1.4.1.2011.5.25.31.7.2',
|
||||
'hwPreDisposeObjects' => '1.3.6.1.4.1.2011.5.25.31.8',
|
||||
'hwPreDisposeInfo' => '1.3.6.1.4.1.2011.5.25.31.8.1',
|
||||
'hwPreDisposeSequenceNo' => '1.3.6.1.4.1.2011.5.25.31.8.1.1',
|
||||
'hwPreDisposedTraps' => '1.3.6.1.4.1.2011.5.25.31.8.2',
|
||||
'hwPreDisposeConfigTable' => '1.3.6.1.4.1.2011.5.25.31.8.3',
|
||||
'hwPreDisposeConfigEntry' => '1.3.6.1.4.1.2011.5.25.31.8.3.1',
|
||||
'hwDisposeSlot' => '1.3.6.1.4.1.2011.5.25.31.8.3.1.1',
|
||||
'hwDisposeCardId' => '1.3.6.1.4.1.2011.5.25.31.8.3.1.2',
|
||||
'hwDisposeSbom' => '1.3.6.1.4.1.2011.5.25.31.8.3.1.3',
|
||||
'hwDisposeRowStatus' => '1.3.6.1.4.1.2011.5.25.31.8.3.1.4',
|
||||
'hwDisposeOperState' => '1.3.6.1.4.1.2011.5.25.31.8.3.1.5',
|
||||
'hwDisposeOperStateDefinition' => 'HUAWEI-ENTITY-EXTENT-MIB::hwDisposeOperState',
|
||||
'hwPreDisposeEntInfoTable' => '1.3.6.1.4.1.2011.5.25.31.8.4',
|
||||
'hwPreDisposeEntInfoEntry' => '1.3.6.1.4.1.2011.5.25.31.8.4.1',
|
||||
'hwDisposeEntPhysicalIndex' => '1.3.6.1.4.1.2011.5.25.31.8.4.1.1',
|
||||
'hwDisposeEntPhysicalDescr' => '1.3.6.1.4.1.2011.5.25.31.8.4.1.2',
|
||||
'hwDisposeEntPhysicalVendorType' => '1.3.6.1.4.1.2011.5.25.31.8.4.1.3',
|
||||
'hwDisposeEntPhysicalContainedIn' => '1.3.6.1.4.1.2011.5.25.31.8.4.1.4',
|
||||
'hwDisposeEntPhysicalClass' => '1.3.6.1.4.1.2011.5.25.31.8.4.1.5',
|
||||
'hwDisposeEntPhysicalParentRelPos' => '1.3.6.1.4.1.2011.5.25.31.8.4.1.6',
|
||||
'hwDisposeEntPhysicalName' => '1.3.6.1.4.1.2011.5.25.31.8.4.1.7',
|
||||
'hwOSPUnifyManageObjects' => '1.3.6.1.4.1.2011.5.25.31.9',
|
||||
'hwEntityExtOSPTrapsPrefix' => '1.3.6.1.4.1.2011.5.25.31.9.1',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'HUAWEI-ENTITY-EXTENT-MIB'} = {
|
||||
'hwEntityPortType' => {
|
||||
'1' => 'notSupported',
|
||||
'2' => 'copper',
|
||||
'3' => 'fiber100',
|
||||
'4' => 'fiber1000',
|
||||
'5' => 'fiber10000',
|
||||
'6' => 'opticalnotExist',
|
||||
'7' => 'optical',
|
||||
},
|
||||
'hwDisposeOperState' => {
|
||||
'1' => 'opSuccess',
|
||||
'2' => 'opInProgress',
|
||||
'3' => 'opDevNotSupportPredispose',
|
||||
'4' => 'opCardNotSupportPredispose',
|
||||
'5' => 'opAlreadyPredispose',
|
||||
'6' => 'opCardConflict',
|
||||
'7' => 'opDevOperationError',
|
||||
},
|
||||
'hwVirtualCableTestPairCStatus' => {
|
||||
'1' => 'normal',
|
||||
'2' => 'abnormalOpen',
|
||||
'3' => 'abnormalShort',
|
||||
'4' => 'abnormalOpenShort',
|
||||
'5' => 'abnormalCrossTalk',
|
||||
'6' => 'unknown',
|
||||
'7' => 'notSupport',
|
||||
},
|
||||
'hwEntityServiceType' => {
|
||||
'1' => 'sslvpn',
|
||||
'2' => 'firewall',
|
||||
'3' => 'loadBalance',
|
||||
'4' => 'ipsec',
|
||||
'5' => 'netstream',
|
||||
'6' => 'wlan',
|
||||
},
|
||||
'hwVirtualCableTestOperation' => {
|
||||
'1' => 'startTest',
|
||||
'2' => 'resetTestValue',
|
||||
'3' => 'readyStartTest',
|
||||
},
|
||||
'HwAlarmStatus' => sub {
|
||||
my $value = shift;
|
||||
my %conditions = (
|
||||
0 => "notSupported",
|
||||
1 => "underRepair",
|
||||
2 => "critical",
|
||||
3 => "major",
|
||||
4 => "minor",
|
||||
5 => "alarmOutstanding",
|
||||
6 => "warning",
|
||||
7 => "indeterminate"
|
||||
);
|
||||
my @errors = ();
|
||||
my $binary_string = unpack("B*", $value);
|
||||
for my $bit_pos (0..scalar(keys %conditions)-1) {
|
||||
my $condition = $conditions{$bit_pos};
|
||||
my $bit_value = substr($binary_string, -$bit_pos-1, 1);
|
||||
if ($bit_value == 1) {
|
||||
push(@errors, $condition);
|
||||
}
|
||||
}
|
||||
return join(",", @errors);
|
||||
},
|
||||
'hwEntityPwrState' => {
|
||||
'1' => 'supply',
|
||||
'2' => 'notSupply',
|
||||
'3' => 'sleep',
|
||||
'4' => 'unknown',
|
||||
},
|
||||
'hwEntitySystemReset' => {
|
||||
'1' => 'normal',
|
||||
'2' => 'restart',
|
||||
},
|
||||
'HwOperState' => {
|
||||
'1' => 'notSupported',
|
||||
'2' => 'disabled',
|
||||
'3' => 'enabled',
|
||||
'4' => 'offline',
|
||||
'11' => 'up',
|
||||
'12' => 'down',
|
||||
'13' => 'connect',
|
||||
'15' => 'protocolUp',
|
||||
'16' => 'linkUp',
|
||||
'17' => 'linkDown',
|
||||
'18' => 'present',
|
||||
'19' => 'absent',
|
||||
},
|
||||
'hwEntityDacsOutStatus' => {
|
||||
'1' => 'on',
|
||||
'2' => 'off',
|
||||
},
|
||||
'hwEntityPwrReg' => {
|
||||
'1' => 'yes',
|
||||
'2' => 'no',
|
||||
},
|
||||
'hwVirtualCableTestPairAStatus' => {
|
||||
'1' => 'normal',
|
||||
'2' => 'abnormalOpen',
|
||||
'3' => 'abnormalShort',
|
||||
'4' => 'abnormalOpenShort',
|
||||
'5' => 'abnormalCrossTalk',
|
||||
'6' => 'unknown',
|
||||
'7' => 'notSupport',
|
||||
},
|
||||
'hwEntityBoardClass' => {
|
||||
'1' => 'notSupported',
|
||||
'2' => 'mpu',
|
||||
'3' => 'lpu',
|
||||
'4' => 'sfu',
|
||||
'5' => 'icu',
|
||||
'6' => 'ecu',
|
||||
'7' => 'fan',
|
||||
'8' => 'power',
|
||||
'9' => 'lcd',
|
||||
'10' => 'pmu',
|
||||
'11' => 'cmu',
|
||||
},
|
||||
'hwEntityPwrPresent' => {
|
||||
'1' => 'present',
|
||||
'2' => 'absent',
|
||||
},
|
||||
'HWLevelState' => {
|
||||
'1' => 'lowLevel',
|
||||
'2' => 'highLevel',
|
||||
},
|
||||
'hwEntityDeviceStatus' => {
|
||||
'0' => 'notSupported',
|
||||
'1' => 'normal',
|
||||
'2' => 'abnormal',
|
||||
},
|
||||
'hwEntityFanSpdAdjMode' => {
|
||||
'1' => 'auto',
|
||||
'2' => 'manual',
|
||||
'3' => 'unknown',
|
||||
'4' => 'silent',
|
||||
'11' => 'denoise',
|
||||
},
|
||||
'hwVirtualCableTestPairBStatus' => {
|
||||
'1' => 'normal',
|
||||
'2' => 'abnormalOpen',
|
||||
'3' => 'abnormalShort',
|
||||
'4' => 'abnormalOpenShort',
|
||||
'5' => 'abnormalCrossTalk',
|
||||
'6' => 'unknown',
|
||||
'7' => 'notSupport',
|
||||
},
|
||||
'hwEntityStartMode' => {
|
||||
'1' => 'notSupported',
|
||||
'2' => 'cold',
|
||||
'3' => 'warm',
|
||||
'4' => 'unknown',
|
||||
},
|
||||
'hwEntityOpticalSupportDDM' => {
|
||||
'0' => 'support',
|
||||
'1' => 'notSupport',
|
||||
},
|
||||
'hwEntityFanPresent' => {
|
||||
'1' => 'present',
|
||||
'2' => 'absent',
|
||||
},
|
||||
'hwIntegratedPowerACInputVoltStatus' => {
|
||||
'0' => 'normal',
|
||||
'1' => 'abnormal',
|
||||
},
|
||||
'hwEntityOpticalFiberType' => {
|
||||
'0' => 'unknown',
|
||||
'1' => 'sc',
|
||||
'2' => 'style1CopperConnector',
|
||||
'3' => 'style2CopperConnector',
|
||||
'4' => 'bncTnc',
|
||||
'5' => 'coaxialHeaders',
|
||||
'6' => 'fiberJack',
|
||||
'7' => 'lc',
|
||||
'8' => 'mtRj',
|
||||
'9' => 'mu',
|
||||
'10' => 'sg',
|
||||
'11' => 'opticalPigtail',
|
||||
'12' => 'mpo',
|
||||
'20' => 'hssdcII',
|
||||
'21' => 'copperPigtail',
|
||||
},
|
||||
'hwEntityFanState' => {
|
||||
'1' => 'normal',
|
||||
'2' => 'abnormal',
|
||||
},
|
||||
'hwBatteryState' => {
|
||||
'1' => 'charge',
|
||||
'2' => 'discharge',
|
||||
'3' => 'full',
|
||||
'4' => 'abnormal',
|
||||
},
|
||||
'hwEntityOpticalTunableType' => {
|
||||
'1' => 'notSupported',
|
||||
'2' => 'notTunable',
|
||||
'3' => 'tunable',
|
||||
'4' => 'supportTunableType',
|
||||
},
|
||||
'hwEntityPicStatus' => {
|
||||
'0' => 'notSupported',
|
||||
'1' => 'registered',
|
||||
'2' => 'online',
|
||||
'3' => 'unregistered',
|
||||
'4' => 'failed',
|
||||
},
|
||||
'hwEntityDacsPresent' => {
|
||||
'1' => 'present',
|
||||
'2' => 'absent',
|
||||
},
|
||||
'hwEntityOpticalType' => {
|
||||
'0' => 'unknown',
|
||||
'1' => 'sc',
|
||||
'2' => 'gbic',
|
||||
'3' => 'sfp',
|
||||
'4' => 'esfp',
|
||||
'5' => 'rj45',
|
||||
'6' => 'xfp',
|
||||
'7' => 'xenpak',
|
||||
'8' => 'transponder',
|
||||
'9' => 'cfp',
|
||||
'10' => 'smb',
|
||||
'11' => 'sfpplus',
|
||||
'12' => 'cxp',
|
||||
'13' => 'qsfp',
|
||||
'14' => 'qsfpplus',
|
||||
'15' => 'cfp2',
|
||||
'16' => 'dwdmsfp',
|
||||
'17' => 'msa100glh',
|
||||
'18' => 'gps',
|
||||
'19' => 'csfp',
|
||||
'20' => 'cfp4',
|
||||
'21' => 'qsfp28',
|
||||
'22' => 'sfpsfpplus',
|
||||
'23' => 'gponsfp',
|
||||
'24' => 'cfp8',
|
||||
'25' => 'sfp28',
|
||||
'26' => 'qsfpdd',
|
||||
'27' => 'cfp2dco',
|
||||
},
|
||||
'hwEntityFanReg' => {
|
||||
'1' => 'yes',
|
||||
'2' => 'no',
|
||||
},
|
||||
'hwEntityOpticalAuthenticationStatus' => {
|
||||
'0' => 'unknown',
|
||||
'1' => 'authenticated',
|
||||
'2' => 'unauthenticated',
|
||||
},
|
||||
'hwFileGeneOperState' => {
|
||||
'1' => 'opInProgress',
|
||||
'2' => 'opSuccess',
|
||||
'3' => 'opGetFileError',
|
||||
'4' => 'opInvalidDestName',
|
||||
'5' => 'opNoFlashSpace',
|
||||
'6' => 'opWriteFileError',
|
||||
'7' => 'opDestoryError',
|
||||
},
|
||||
'hwEntityOpticalWaveBand' => {
|
||||
'0' => 'unknown',
|
||||
'1' => 'clBand',
|
||||
'2' => 'cBand',
|
||||
'3' => 'lBand',
|
||||
'4' => 'c32Band',
|
||||
'5' => 'ramancBand',
|
||||
'6' => 'ramanlBand',
|
||||
'7' => 'cwdmBand',
|
||||
'8' => 'smcBand',
|
||||
'9' => 'c96bBand',
|
||||
'10' => 'c192bBand',
|
||||
},
|
||||
'hwEntityHeartbeatOnOff' => {
|
||||
'1' => 'on',
|
||||
'2' => 'off',
|
||||
},
|
||||
'hwIntegratedPower12VDCOutVoltStatus' => {
|
||||
'0' => 'normal',
|
||||
'1' => 'abnormal',
|
||||
},
|
||||
'hwVirtualCableTestPairDStatus' => {
|
||||
'1' => 'normal',
|
||||
'2' => 'abnormalOpen',
|
||||
'3' => 'abnormalShort',
|
||||
'4' => 'abnormalOpenShort',
|
||||
'5' => 'abnormalCrossTalk',
|
||||
'6' => 'unknown',
|
||||
'7' => 'notSupport',
|
||||
},
|
||||
'hwEntityPwrMode' => {
|
||||
'1' => 'unknown',
|
||||
'2' => 'dc',
|
||||
'3' => 'ac',
|
||||
'4' => 'hvdc',
|
||||
},
|
||||
'hwVirtualCableTestPairStatus' => {
|
||||
'1' => 'normal',
|
||||
'2' => 'abnormalOpen',
|
||||
'3' => 'abnormalShort',
|
||||
'4' => 'abnormalOpenShort',
|
||||
'5' => 'abnormalCrossTalk',
|
||||
'6' => 'unknown',
|
||||
'7' => 'notSupport',
|
||||
},
|
||||
'hwIntegratedPowerRebootPower' => {
|
||||
'1' => 'reset',
|
||||
},
|
||||
'HwStandbyStatus' => {
|
||||
'1' => 'notSupported',
|
||||
'2' => 'hotStandby',
|
||||
'3' => 'coldStandby',
|
||||
'4' => 'providingService',
|
||||
},
|
||||
'hwEntityOpticalDirectionType' => {
|
||||
'1' => 'notSupported',
|
||||
'2' => 'twoFiberBidirection',
|
||||
'3' => 'oneFiberBidirection',
|
||||
'4' => 'twoFiberTwoPortBidirection',
|
||||
},
|
||||
'HwAdminState' => {
|
||||
'1' => 'notSupported',
|
||||
'2' => 'locked',
|
||||
'3' => 'shuttingDown',
|
||||
'4' => 'unlocked',
|
||||
'11' => 'up',
|
||||
'12' => 'down',
|
||||
'13' => 'loopback',
|
||||
},
|
||||
'hwEntitySupportFlexCard' => {
|
||||
'1' => 'notSupported',
|
||||
'2' => 'flexible',
|
||||
'3' => 'unflexible',
|
||||
'4' => 'dummy',
|
||||
},
|
||||
'hwIntegratedPower53VDCOutVoltStatus' => {
|
||||
'0' => 'normal',
|
||||
'1' => 'abnormal',
|
||||
},
|
||||
'hwFileGeneResourceType' => {
|
||||
'1' => 'pnpcard',
|
||||
'2' => 'pnpsubcard',
|
||||
'3' => 'pnphardcapability',
|
||||
'4' => 'pnpPreDisposeCapability',
|
||||
'5' => 'pnpframe',
|
||||
'6' => 'pnpdevtype',
|
||||
'7' => 'pnpalarm',
|
||||
},
|
||||
'hwEntityVolStatus' => {
|
||||
'0' => 'abnormal',
|
||||
'1' => 'normal',
|
||||
'2' => 'major',
|
||||
'3' => 'fatal',
|
||||
},
|
||||
'hwEntityDacsStatus' => {
|
||||
'1' => 'normal',
|
||||
'2' => 'abnormal',
|
||||
},
|
||||
'hwEntityDuplex' => {
|
||||
'1' => 'notSupported',
|
||||
'2' => 'full',
|
||||
'3' => 'half',
|
||||
},
|
||||
'hwIntegratedPowerEnergyWorkmode' => {
|
||||
'0' => 'hybridPower500',
|
||||
'1' => 'mainsPower500',
|
||||
},
|
||||
'hwEntityTempStatus' => {
|
||||
'1' => 'normal',
|
||||
'2' => 'minor',
|
||||
'3' => 'major',
|
||||
'4' => 'fatal',
|
||||
},
|
||||
'hwEntityFaultLight' => {
|
||||
'1' => 'notSupported',
|
||||
'2' => 'normal',
|
||||
'3' => 'underRepair',
|
||||
},
|
||||
'hwEntityOpticalPlug' => {
|
||||
'0' => 'notSupported',
|
||||
'1' => 'true',
|
||||
'2' => 'false',
|
||||
},
|
||||
'hwEntityOpticalMode' => {
|
||||
'1' => 'notSupported',
|
||||
'2' => 'singleMode',
|
||||
'3' => 'multiMode5',
|
||||
'4' => 'multiMode6',
|
||||
'5' => 'noValue',
|
||||
'6' => 'gpsMode',
|
||||
'7' => 'copperMode',
|
||||
'8' => 'singleAndmultiMode',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,557 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::HUAWEIL2MAMMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'HUAWEI-L2MAM-MIB'} = {
|
||||
url => '',
|
||||
name => 'HUAWEI-L2MAM-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'HUAWEI-L2MAM-MIB'} =
|
||||
'1.3.6.1.4.1.2011.5.25.42.2';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'HUAWEI-L2MAM-MIB'} = {
|
||||
'hwL2MAM' => '1.3.6.1.4.1.2011.5.25.42.2',
|
||||
'hwL2MAMObjects' => '1.3.6.1.4.1.2011.5.25.42.2.1',
|
||||
'hwL2MaxMacLimit' => '1.3.6.1.4.1.2011.5.25.42.2.1.1',
|
||||
'hwdbCfgFdbTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.2',
|
||||
'hwdbCfgFdbEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.2.1',
|
||||
'hwCfgFdbMac' => '1.3.6.1.4.1.2011.5.25.42.2.1.2.1.1',
|
||||
'hwCfgFdbVlanId' => '1.3.6.1.4.1.2011.5.25.42.2.1.2.1.2',
|
||||
'hwCfgFdbVsiName' => '1.3.6.1.4.1.2011.5.25.42.2.1.2.1.3',
|
||||
'hwCfgFdbPort' => '1.3.6.1.4.1.2011.5.25.42.2.1.2.1.4',
|
||||
'hwCfgFdbType' => '1.3.6.1.4.1.2011.5.25.42.2.1.2.1.5',
|
||||
'hwCfgFdbTypeDefinition' => 'HUAWEI-L2MAM-MIB::hwCfgFdbType',
|
||||
'hwCfgFdbRowstatus' => '1.3.6.1.4.1.2011.5.25.42.2.1.2.1.6',
|
||||
'hwCfgFdbAtmPort' => '1.3.6.1.4.1.2011.5.25.42.2.1.2.1.7',
|
||||
'hwCfgFdbVpi' => '1.3.6.1.4.1.2011.5.25.42.2.1.2.1.8',
|
||||
'hwCfgFdbVci' => '1.3.6.1.4.1.2011.5.25.42.2.1.2.1.9',
|
||||
'hwCfgFdbCeDefault' => '1.3.6.1.4.1.2011.5.25.42.2.1.2.1.10',
|
||||
'hwCfgFdbCeDefaultDefinition' => 'HUAWEI-L2MAM-MIB::hwCfgFdbCeDefault',
|
||||
'hwdbDynFdbTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.3',
|
||||
'hwdbDynFdbEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.3.1',
|
||||
'hwDynFdbMac' => '1.3.6.1.4.1.2011.5.25.42.2.1.3.1.1',
|
||||
'hwDynFdbVlanId' => '1.3.6.1.4.1.2011.5.25.42.2.1.3.1.2',
|
||||
'hwDynFdbVsiName' => '1.3.6.1.4.1.2011.5.25.42.2.1.3.1.3',
|
||||
'hwDynFdbPort' => '1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4',
|
||||
'hwDynFdbAtmPort' => '1.3.6.1.4.1.2011.5.25.42.2.1.3.1.5',
|
||||
'hwDynFdbVpi' => '1.3.6.1.4.1.2011.5.25.42.2.1.3.1.6',
|
||||
'hwDynFdbVci' => '1.3.6.1.4.1.2011.5.25.42.2.1.3.1.7',
|
||||
'hwDynFdbRowstatus' => '1.3.6.1.4.1.2011.5.25.42.2.1.3.1.8',
|
||||
'hwDynSecurityFdbToStaticEnable' => '1.3.6.1.4.1.2011.5.25.42.2.1.3.1.9',
|
||||
'hwMacLimitTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.4',
|
||||
'hwMacLimitEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.4.1',
|
||||
'hwMacLimitPort' => '1.3.6.1.4.1.2011.5.25.42.2.1.4.1.1',
|
||||
'hwMacLimitVlanId' => '1.3.6.1.4.1.2011.5.25.42.2.1.4.1.2',
|
||||
'hwMacLimitVsiName' => '1.3.6.1.4.1.2011.5.25.42.2.1.4.1.3',
|
||||
'hwMacLimitMaxMac' => '1.3.6.1.4.1.2011.5.25.42.2.1.4.1.4',
|
||||
'hwMacLimitMaxRate' => '1.3.6.1.4.1.2011.5.25.42.2.1.4.1.5',
|
||||
'hwMacLimitAction' => '1.3.6.1.4.1.2011.5.25.42.2.1.4.1.6',
|
||||
'hwMacLimitActionDefinition' => 'HUAWEI-L2MAM-MIB::hwMacLimitAction',
|
||||
'hwMacLimitAlarm' => '1.3.6.1.4.1.2011.5.25.42.2.1.4.1.7',
|
||||
'hwMacLimitAlarmDefinition' => 'HUAWEI-L2MAM-MIB::hwMacLimitAlarm',
|
||||
'hwMacLimitRowstatus' => '1.3.6.1.4.1.2011.5.25.42.2.1.4.1.8',
|
||||
'hwMacAddressLearn' => '1.3.6.1.4.1.2011.5.25.42.2.1.4.1.9',
|
||||
'hwMacAddressLearnDefinition' => 'HUAWEI-L2MAM-MIB::hwMacAddressLearn',
|
||||
'hwMacDynAddressLearnNum' => '1.3.6.1.4.1.2011.5.25.42.2.1.4.1.10',
|
||||
'hwMacSecureAddressLearnNum' => '1.3.6.1.4.1.2011.5.25.42.2.1.4.1.11',
|
||||
'hwMacLimitBdId' => '1.3.6.1.4.1.2011.5.25.42.2.1.4.1.12',
|
||||
'hwMacLimitEVPName' => '1.3.6.1.4.1.2011.5.25.42.2.1.4.1.13',
|
||||
'hwMacUsageTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.5',
|
||||
'hwMacUsageEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.5.1',
|
||||
'hwMacEntityUsage' => '1.3.6.1.4.1.2011.5.25.42.2.1.5.1.1',
|
||||
'hwMacEntityUsageThreshold' => '1.3.6.1.4.1.2011.5.25.42.2.1.5.1.2',
|
||||
'hwdbCfg3tupleFdbTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.6',
|
||||
'hwdbCfg3tupleFdbEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.6.1',
|
||||
'hwdbCfg3tupleFdbMac' => '1.3.6.1.4.1.2011.5.25.42.2.1.6.1.1',
|
||||
'hwdbCfg3tupleFdbVlanId' => '1.3.6.1.4.1.2011.5.25.42.2.1.6.1.2',
|
||||
'hwdbCfg3tupleFdbInPort' => '1.3.6.1.4.1.2011.5.25.42.2.1.6.1.3',
|
||||
'hwdbCfg3tupleFdbOutPort' => '1.3.6.1.4.1.2011.5.25.42.2.1.6.1.4',
|
||||
'hwdbCfg3tupleFdbRowStatus' => '1.3.6.1.4.1.2011.5.25.42.2.1.6.1.5',
|
||||
'hwL2MacTraps' => '1.3.6.1.4.1.2011.5.25.42.2.1.7',
|
||||
'hwUntargetMacNum' => '1.3.6.1.4.1.2011.5.25.42.2.1.8',
|
||||
'hwMacAgingTime' => '1.3.6.1.4.1.2011.5.25.42.2.1.9',
|
||||
'hwMacRestrict' => '1.3.6.1.4.1.2011.5.25.42.2.1.10',
|
||||
'hwPortSecurityTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.11',
|
||||
'hwPortSecurityEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.11.1',
|
||||
'hwPortSecurityPort' => '1.3.6.1.4.1.2011.5.25.42.2.1.11.1.1',
|
||||
'hwPortSecurityEnabled' => '1.3.6.1.4.1.2011.5.25.42.2.1.11.1.2',
|
||||
'hwPortSecurityProtectAction' => '1.3.6.1.4.1.2011.5.25.42.2.1.11.1.3',
|
||||
'hwPortSecurityProtectActionDefinition' => 'HUAWEI-L2MAM-MIB::hwPortSecurityProtectAction',
|
||||
'hwPortSecurityAllDynToStaticEnable' => '1.3.6.1.4.1.2011.5.25.42.2.1.11.1.4',
|
||||
'hwPortSecurityAllDynToStickyEnable' => '1.3.6.1.4.1.2011.5.25.42.2.1.11.1.5',
|
||||
'hwPortSecurityMaxMacNum' => '1.3.6.1.4.1.2011.5.25.42.2.1.11.1.6',
|
||||
'hwMacLimitGlobalRuleTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.12',
|
||||
'hwMacLimitGlobalRuleEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.12.1',
|
||||
'hwMacLimitGlobalRuleName' => '1.3.6.1.4.1.2011.5.25.42.2.1.12.1.1',
|
||||
'hwMacLimitRuleMaxMac' => '1.3.6.1.4.1.2011.5.25.42.2.1.12.1.11',
|
||||
'hwMacLimitRuleMaxRate' => '1.3.6.1.4.1.2011.5.25.42.2.1.12.1.12',
|
||||
'hwMacLimitRuleAction' => '1.3.6.1.4.1.2011.5.25.42.2.1.12.1.13',
|
||||
'hwMacLimitRuleActionDefinition' => 'HUAWEI-L2MAM-MIB::hwMacLimitRuleAction',
|
||||
'hwMacLimitRuleAlarm' => '1.3.6.1.4.1.2011.5.25.42.2.1.12.1.14',
|
||||
'hwMacLimitRuleAlarmDefinition' => 'HUAWEI-L2MAM-MIB::hwMacLimitRuleAlarm',
|
||||
'hwMacLimitRuleRowstatus' => '1.3.6.1.4.1.2011.5.25.42.2.1.12.1.51',
|
||||
'hwMacRuleDynAddressLearnNum' => '1.3.6.1.4.1.2011.5.25.42.2.1.12.1.52',
|
||||
'hwMacLimitApplyRuleTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.13',
|
||||
'hwMacLimitApplyRuleEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.13.1',
|
||||
'hwMacLimitApplyPort' => '1.3.6.1.4.1.2011.5.25.42.2.1.13.1.1',
|
||||
'hwMacLimitApplyVlanId' => '1.3.6.1.4.1.2011.5.25.42.2.1.13.1.2',
|
||||
'hwMacLimitApplyRuleName' => '1.3.6.1.4.1.2011.5.25.42.2.1.13.1.11',
|
||||
'hwMacLimitApplyRowstatus' => '1.3.6.1.4.1.2011.5.25.42.2.1.13.1.51',
|
||||
'hwMacGlobalStatistics' => '1.3.6.1.4.1.2011.5.25.42.2.1.14',
|
||||
'hwMacIfStatisticsTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.15',
|
||||
'hwMacIfStatisticsEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.15.1',
|
||||
'hwMacIfStatisticsIfIndex' => '1.3.6.1.4.1.2011.5.25.42.2.1.15.1.1',
|
||||
'hwMacIfStatistics' => '1.3.6.1.4.1.2011.5.25.42.2.1.15.1.2',
|
||||
'hwMacSlotStatisticsTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.16',
|
||||
'hwMacSlotStatisticsEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.16.1',
|
||||
'hwMacSlotStatisticsSlotId' => '1.3.6.1.4.1.2011.5.25.42.2.1.16.1.1',
|
||||
'hwMacSlotStatistics' => '1.3.6.1.4.1.2011.5.25.42.2.1.16.1.2',
|
||||
'hwMacSlotStatisticsSpecify' => '1.3.6.1.4.1.2011.5.25.42.2.1.16.1.3',
|
||||
'hwMacSlotUsage' => '1.3.6.1.4.1.2011.5.25.42.2.1.16.1.4',
|
||||
'hwMacSlotUsageThreshold' => '1.3.6.1.4.1.2011.5.25.42.2.1.16.1.5',
|
||||
'hwMacVlanStatisticsTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.17',
|
||||
'hwMacVlanStatisticsEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.17.1',
|
||||
'hwMacVlanStatisticsVlanId' => '1.3.6.1.4.1.2011.5.25.42.2.1.17.1.1',
|
||||
'hwMacVlanStatistics' => '1.3.6.1.4.1.2011.5.25.42.2.1.17.1.2',
|
||||
'hwMacVsiStatisticsTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.18',
|
||||
'hwMacVsiStatisticsEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.18.1',
|
||||
'hwMacVsiStatisticsVsiName' => '1.3.6.1.4.1.2011.5.25.42.2.1.18.1.1',
|
||||
'hwMacVsiStatistics' => '1.3.6.1.4.1.2011.5.25.42.2.1.18.1.2',
|
||||
'hwPwMacLimitTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.19',
|
||||
'hwPwMacLimitEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.19.1',
|
||||
'hwPwMacLimitVsiName' => '1.3.6.1.4.1.2011.5.25.42.2.1.19.1.1',
|
||||
'hwPwMacLimitPwName' => '1.3.6.1.4.1.2011.5.25.42.2.1.19.1.2',
|
||||
'hwPwMacLimitMaxMac' => '1.3.6.1.4.1.2011.5.25.42.2.1.19.1.3',
|
||||
'hwPwMacLimitMaxRate' => '1.3.6.1.4.1.2011.5.25.42.2.1.19.1.4',
|
||||
'hwPwMacLimitAction' => '1.3.6.1.4.1.2011.5.25.42.2.1.19.1.5',
|
||||
'hwPwMacLimitActionDefinition' => 'HUAWEI-L2MAM-MIB::hwPwMacLimitAction',
|
||||
'hwPwMacLimitAlarm' => '1.3.6.1.4.1.2011.5.25.42.2.1.19.1.6',
|
||||
'hwPwMacLimitRowstatus' => '1.3.6.1.4.1.2011.5.25.42.2.1.19.1.7',
|
||||
'hwPwMacAddressLearn' => '1.3.6.1.4.1.2011.5.25.42.2.1.19.1.8',
|
||||
'hwPwMacDynAddressLearnNum' => '1.3.6.1.4.1.2011.5.25.42.2.1.19.1.9',
|
||||
'hwMacSpoofingDefendTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.20',
|
||||
'hwMacSpoofingDefendEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.20.1',
|
||||
'hwMacSpoofingDefendPort' => '1.3.6.1.4.1.2011.5.25.42.2.1.20.1.1',
|
||||
'hwMacSpoofingDefendEnabled' => '1.3.6.1.4.1.2011.5.25.42.2.1.20.1.2',
|
||||
'hwDiscardIllegalMacEnable' => '1.3.6.1.4.1.2011.5.25.42.2.1.21',
|
||||
'hwDiscardIllegalMacAlarm' => '1.3.6.1.4.1.2011.5.25.42.2.1.22',
|
||||
'hwMacSpoofingDefend' => '1.3.6.1.4.1.2011.5.25.42.2.1.23',
|
||||
'hwL2MacFlappingTrapObjects' => '1.3.6.1.4.1.2011.5.25.42.2.1.24',
|
||||
'hwMacflappingMac' => '1.3.6.1.4.1.2011.5.25.42.2.1.24.1',
|
||||
'hwMacFlappingVlan' => '1.3.6.1.4.1.2011.5.25.42.2.1.24.2',
|
||||
'hwSlotMacLimitTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.25',
|
||||
'hwSlotMacLimitEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.25.1',
|
||||
'hwSlotMacLimitId' => '1.3.6.1.4.1.2011.5.25.42.2.1.25.1.1',
|
||||
'hwSlotMacLimitMaxMac' => '1.3.6.1.4.1.2011.5.25.42.2.1.25.1.2',
|
||||
'hwSlotMacLimitMaxRate' => '1.3.6.1.4.1.2011.5.25.42.2.1.25.1.3',
|
||||
'hwSlotMacLimitAction' => '1.3.6.1.4.1.2011.5.25.42.2.1.25.1.4',
|
||||
'hwSlotMacLimitActionDefinition' => 'HUAWEI-L2MAM-MIB::hwSlotMacLimitAction',
|
||||
'hwSlotMacLimitAlarm' => '1.3.6.1.4.1.2011.5.25.42.2.1.25.1.5',
|
||||
'hwSlotMacLimitAlarmDefinition' => 'HUAWEI-L2MAM-MIB::hwSlotMacLimitAlarm',
|
||||
'hwSlotMacLimitRowstatus' => '1.3.6.1.4.1.2011.5.25.42.2.1.25.1.6',
|
||||
'hwL2ProtocolTunnelTrapObjects' => '1.3.6.1.4.1.2011.5.25.42.2.1.26',
|
||||
'hwL2ProtocolTunnelTrapPortName' => '1.3.6.1.4.1.2011.5.25.42.2.1.26.1',
|
||||
'hwL2ProtocolTunnelTrapProtocolName' => '1.3.6.1.4.1.2011.5.25.42.2.1.26.2',
|
||||
'hwL2ProtocolTunnelTrapDropThreshold' => '1.3.6.1.4.1.2011.5.25.42.2.1.26.3',
|
||||
'hwL2ProtclTnlStdTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.27',
|
||||
'hwL2ProtclTnlStdEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.27.1',
|
||||
'hwL2ProtclTnlStdProtclName' => '1.3.6.1.4.1.2011.5.25.42.2.1.27.1.1',
|
||||
'hwL2ProtclTnlStdProtclMacAddr' => '1.3.6.1.4.1.2011.5.25.42.2.1.27.1.2',
|
||||
'hwL2ProtclTnlStdEncapType' => '1.3.6.1.4.1.2011.5.25.42.2.1.27.1.3',
|
||||
'hwL2ProtclTnlStdEncapTypeDefinition' => 'HUAWEI-L2MAM-MIB::hwL2ProtclTnlStdEncapType',
|
||||
'hwL2ProtclTnlStdProtclType' => '1.3.6.1.4.1.2011.5.25.42.2.1.27.1.4',
|
||||
'hwL2ProtclTnlStdGroupMacAddr' => '1.3.6.1.4.1.2011.5.25.42.2.1.27.1.5',
|
||||
'hwL2ProtclTnlStdGroupDefault' => '1.3.6.1.4.1.2011.5.25.42.2.1.27.1.6',
|
||||
'hwL2ProtclTnlStdPriority' => '1.3.6.1.4.1.2011.5.25.42.2.1.27.1.7',
|
||||
'hwL2ProtclTnlCusTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.28',
|
||||
'hwL2ProtclTnlCusEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.28.1',
|
||||
'hwL2ProtclTnlCusProtclName' => '1.3.6.1.4.1.2011.5.25.42.2.1.28.1.1',
|
||||
'hwL2ProtclTnlCusProtclMacAddr' => '1.3.6.1.4.1.2011.5.25.42.2.1.28.1.2',
|
||||
'hwL2ProtclTnlCusEncapType' => '1.3.6.1.4.1.2011.5.25.42.2.1.28.1.3',
|
||||
'hwL2ProtclTnlCusEncapTypeDefinition' => 'HUAWEI-L2MAM-MIB::hwL2ProtclTnlCusEncapType',
|
||||
'hwL2ProtclTnlCusProtclType' => '1.3.6.1.4.1.2011.5.25.42.2.1.28.1.4',
|
||||
'hwL2ProtclTnlCusGroupMacAddr' => '1.3.6.1.4.1.2011.5.25.42.2.1.28.1.5',
|
||||
'hwL2ProtclTnlCusGroupDefault' => '1.3.6.1.4.1.2011.5.25.42.2.1.28.1.6',
|
||||
'hwL2ProtclTnlCusPriority' => '1.3.6.1.4.1.2011.5.25.42.2.1.28.1.7',
|
||||
'hwL2ProtclTnlCusRowStatus' => '1.3.6.1.4.1.2011.5.25.42.2.1.28.1.8',
|
||||
'hwL2ProtclTnlEnableTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.29',
|
||||
'hwL2ProtclTnlEnableEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.29.1',
|
||||
'hwL2ProtclTnlEnableIfIndex' => '1.3.6.1.4.1.2011.5.25.42.2.1.29.1.1',
|
||||
'hwL2ProtclTnlEnableProtclName' => '1.3.6.1.4.1.2011.5.25.42.2.1.29.1.2',
|
||||
'hwL2ProtclTnlEnableTransMode' => '1.3.6.1.4.1.2011.5.25.42.2.1.29.1.3',
|
||||
'hwL2ProtclTnlEnableTransModeDefinition' => 'HUAWEI-L2MAM-MIB::hwL2ProtclTnlEnableTransMode',
|
||||
'hwL2ProtclTnlEnableTagListLow' => '1.3.6.1.4.1.2011.5.25.42.2.1.29.1.4',
|
||||
'hwL2ProtclTnlEnableTagListHigh' => '1.3.6.1.4.1.2011.5.25.42.2.1.29.1.5',
|
||||
'hwL2ProtclTnlEnableDropthresholdRate' => '1.3.6.1.4.1.2011.5.25.42.2.1.29.1.6',
|
||||
'hwL2ProtclTnlEnableRowStatus' => '1.3.6.1.4.1.2011.5.25.42.2.1.29.1.7',
|
||||
'hwL2ProtclTnlStatisticsTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.30',
|
||||
'hwL2ProtclTnlStatisticsEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.30.1',
|
||||
'hwL2ProtclTnlStatisticsIfIndex' => '1.3.6.1.4.1.2011.5.25.42.2.1.30.1.1',
|
||||
'hwL2ProtclTnlStatisticsProtclName' => '1.3.6.1.4.1.2011.5.25.42.2.1.30.1.2',
|
||||
'hwL2ProtclTnlStatisticsDropthrhldRate' => '1.3.6.1.4.1.2011.5.25.42.2.1.30.1.3',
|
||||
'hwL2ProtclTnlStatisticsInputPkts' => '1.3.6.1.4.1.2011.5.25.42.2.1.30.1.4',
|
||||
'hwL2ProtclTnlStatisticsOutputPkts' => '1.3.6.1.4.1.2011.5.25.42.2.1.30.1.5',
|
||||
'hwL2ProtclTnlStatisticsDropPkts' => '1.3.6.1.4.1.2011.5.25.42.2.1.30.1.6',
|
||||
'hwBridgeMacAgingTime' => '1.3.6.1.4.1.2011.5.25.42.2.1.31',
|
||||
'hwCfgMacAddrQueryTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.32',
|
||||
'hwCfgMacAddrQueryEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1',
|
||||
'hwCfgMacAddrQueryVlanId' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.1',
|
||||
'hwCfgMacAddrQueryVsiName' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.2',
|
||||
'hwCfgMacAddrQuerySiName' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.3',
|
||||
'hwCfgMacAddrQueryBridgeId' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.4',
|
||||
'hwCfgMacAddrQueryMacAddr' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.5',
|
||||
'hwCfgMacAddrQueryConditionMode' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.6',
|
||||
'hwCfgMacAddrQueryConditionModeDefinition' => 'HUAWEI-L2MAM-MIB::hwCfgMacAddrQueryConditionMode',
|
||||
'hwCfgMacAddrQueryConditionStringA' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.7',
|
||||
'hwCfgMacAddrQueryConditionStringB' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.8',
|
||||
'hwCfgMacAddrQueryConditionDigitA' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.9',
|
||||
'hwCfgMacAddrQueryConditionDigitB' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.10',
|
||||
'hwCfgMacAddrQueryConditionDigitC' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.11',
|
||||
'hwCfgMacAddrQueryType' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.12',
|
||||
'hwCfgMacAddrQueryIfIndex' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.13',
|
||||
'hwCfgMacAddrQueryPeVlanId' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.14',
|
||||
'hwCfgMacAddrQueryCeVlanId' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.15',
|
||||
'hwCfgMacAddrQueryCedefaultFlag' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.16',
|
||||
'hwCfgMacAddrQueryCedefaultFlagDefinition' => 'HUAWEI-L2MAM-MIB::hwCfgMacAddrQueryCedefaultFlag',
|
||||
'hwCfgMacAddrQueryAtmIfIndex' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.17',
|
||||
'hwCfgMacAddrQueryVpi' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.18',
|
||||
'hwCfgMacAddrQueryVci' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.19',
|
||||
'hwCfgMacAddrQueryMacTunnel' => '1.3.6.1.4.1.2011.5.25.42.2.1.32.1.20',
|
||||
'hwDynMacAddrQueryTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.33',
|
||||
'hwDynMacAddrQueryEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1',
|
||||
'hwDynMacAddrQueryVlanId' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.1',
|
||||
'hwDynMacAddrQueryVsiName' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.2',
|
||||
'hwDynMacAddrQuerySiName' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.3',
|
||||
'hwDynMacAddrQueryBridgeId' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.4',
|
||||
'hwDynMacAddrQueryMacAddr' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.5',
|
||||
'hwDynMacAddrQueryConditionMode' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.6',
|
||||
'hwDynMacAddrQueryConditionModeDefinition' => 'HUAWEI-L2MAM-MIB::hwDynMacAddrQueryConditionMode',
|
||||
'hwDynMacAddrQueryConditionStringA' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.7',
|
||||
'hwDynMacAddrQueryConditionStringB' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.8',
|
||||
'hwDynMacAddrQueryConditionDigitA' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.9',
|
||||
'hwDynMacAddrQueryConditionDigitB' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.10',
|
||||
'hwDynMacAddrQueryConditionDigitC' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.11',
|
||||
'hwDynMacAddrQueryType' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.12',
|
||||
'hwDynMacAddrQueryIfIndex' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.13',
|
||||
'hwDynMacAddrQueryPeVlanId' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.14',
|
||||
'hwDynMacAddrQueryCeVlanId' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.15',
|
||||
'hwDynMacAddrQueryAtmIfIndex' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.16',
|
||||
'hwDynMacAddrQueryVpi' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.17',
|
||||
'hwDynMacAddrQueryVci' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.18',
|
||||
'hwDynMacAddrQueryPeerIp' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.19',
|
||||
'hwDynMacAddrQueryPwId' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.20',
|
||||
'hwDynMacAddrQueryMacTunnel' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.21',
|
||||
'hwDynMacAddrQueryAgingTime' => '1.3.6.1.4.1.2011.5.25.42.2.1.33.1.22',
|
||||
'hwMacInfoQueryTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.34',
|
||||
'hwMacInfoQueryEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.34.1',
|
||||
'hwMacInfoQueryConditionMode' => '1.3.6.1.4.1.2011.5.25.42.2.1.34.1.1',
|
||||
'hwMacInfoQueryConditionModeDefinition' => 'HUAWEI-L2MAM-MIB::hwMacInfoQueryConditionMode',
|
||||
'hwMacInfoQueryConditionStringA' => '1.3.6.1.4.1.2011.5.25.42.2.1.34.1.2',
|
||||
'hwMacInfoQueryConditionStringB' => '1.3.6.1.4.1.2011.5.25.42.2.1.34.1.3',
|
||||
'hwMacInfoQueryConditionStringC' => '1.3.6.1.4.1.2011.5.25.42.2.1.34.1.4',
|
||||
'hwMacInfoQueryConditionDigitA' => '1.3.6.1.4.1.2011.5.25.42.2.1.34.1.5',
|
||||
'hwMacInfoQueryConditionDigitB' => '1.3.6.1.4.1.2011.5.25.42.2.1.34.1.6',
|
||||
'hwMacInfoQueryConditionDigitC' => '1.3.6.1.4.1.2011.5.25.42.2.1.34.1.7',
|
||||
'hwMacInfoQueryTotalNumber' => '1.3.6.1.4.1.2011.5.25.42.2.1.34.1.8',
|
||||
'hwMacInfoQueryTotalLocalNumber' => '1.3.6.1.4.1.2011.5.25.42.2.1.34.1.9',
|
||||
'hwMacInfoQueryTotalRemoteNumber' => '1.3.6.1.4.1.2011.5.25.42.2.1.34.1.10',
|
||||
'hwMacInfoQueryCapacity' => '1.3.6.1.4.1.2011.5.25.42.2.1.34.1.11',
|
||||
'hwVplsOverGreTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.35',
|
||||
'hwVplsOverGreEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.35.1',
|
||||
'hwVplsOverGrePwId' => '1.3.6.1.4.1.2011.5.25.42.2.1.35.1.1',
|
||||
'hwRemoteIp' => '1.3.6.1.4.1.2011.5.25.42.2.1.35.1.2',
|
||||
'hwVplsOverGreVsiName' => '1.3.6.1.4.1.2011.5.25.42.2.1.35.1.3',
|
||||
'hwVllByPassOverGreTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.36',
|
||||
'hwVllByPassOverGreEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.36.1',
|
||||
'hwVLLACPortIndex' => '1.3.6.1.4.1.2011.5.25.42.2.1.36.1.1',
|
||||
'hwVLLACPortName' => '1.3.6.1.4.1.2011.5.25.42.2.1.36.1.2',
|
||||
'hwUnucFlowAlarmTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.37',
|
||||
'hwUnucFlowAlarmEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.37.1',
|
||||
'hwUNUCPortIndex' => '1.3.6.1.4.1.2011.5.25.42.2.1.37.1.1',
|
||||
'hwUNUCPortName' => '1.3.6.1.4.1.2011.5.25.42.2.1.37.1.2',
|
||||
'hwUNUCPortAlarmThreshold' => '1.3.6.1.4.1.2011.5.25.42.2.1.37.1.3',
|
||||
'hwUNUCPortRealFlow' => '1.3.6.1.4.1.2011.5.25.42.2.1.37.1.4',
|
||||
'hwMacHopAlarmTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.38',
|
||||
'hwMacHopAlarmEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.38.1',
|
||||
'hwMacHopVlan' => '1.3.6.1.4.1.2011.5.25.42.2.1.38.1.1',
|
||||
'hwMacHopVsiName' => '1.3.6.1.4.1.2011.5.25.42.2.1.38.1.2',
|
||||
'hwMacHopBdID' => '1.3.6.1.4.1.2011.5.25.42.2.1.38.1.3',
|
||||
'hwMacHopPortName1' => '1.3.6.1.4.1.2011.5.25.42.2.1.38.1.4',
|
||||
'hwMacHopPortName2' => '1.3.6.1.4.1.2011.5.25.42.2.1.38.1.5',
|
||||
'hwMacHopPortName3' => '1.3.6.1.4.1.2011.5.25.42.2.1.38.1.6',
|
||||
'hwMacHopPortName4' => '1.3.6.1.4.1.2011.5.25.42.2.1.38.1.7',
|
||||
'hwMacHopPWInfo' => '1.3.6.1.4.1.2011.5.25.42.2.1.38.1.8',
|
||||
'hwMacHopDetectMac' => '1.3.6.1.4.1.2011.5.25.42.2.1.38.1.9',
|
||||
'hwMacHopTrustPort' => '1.3.6.1.4.1.2011.5.25.42.2.1.38.1.10',
|
||||
'hwMacHopTrustPeer' => '1.3.6.1.4.1.2011.5.25.42.2.1.38.1.11',
|
||||
'hwPwMacSpoofingAttackMacAddr' => '1.3.6.1.4.1.2011.5.25.42.2.1.39',
|
||||
'hwBdMacLimitBdId' => '1.3.6.1.4.1.2011.5.25.42.2.1.40',
|
||||
'hwBdMacLimitMaxMac' => '1.3.6.1.4.1.2011.5.25.42.2.1.41',
|
||||
'hwPwOverLdpOverGreTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.42',
|
||||
'hwPwOverLdpOverGreEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.42.1',
|
||||
'hwVplsOverLdpOverGrePwId' => '1.3.6.1.4.1.2011.5.25.42.2.1.42.1.1',
|
||||
'hwPeerRemoteIp' => '1.3.6.1.4.1.2011.5.25.42.2.1.42.1.2',
|
||||
'hwVplsOverLdpOverGreVsiName' => '1.3.6.1.4.1.2011.5.25.42.2.1.42.1.3',
|
||||
'hwEvpnOverLdpOverGreEvpnName' => '1.3.6.1.4.1.2011.5.25.42.2.1.42.1.4',
|
||||
'hwPwSourceTunnelCheckTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.43',
|
||||
'hwPwSourceTunnelCheckEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.43.1',
|
||||
'hwPwLabel' => '1.3.6.1.4.1.2011.5.25.42.2.1.43.1.1',
|
||||
'hwTeLabel' => '1.3.6.1.4.1.2011.5.25.42.2.1.43.1.2',
|
||||
'hwPortName' => '1.3.6.1.4.1.2011.5.25.42.2.1.43.1.3',
|
||||
'hwBoardServiceMisMatchAlarmTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.44',
|
||||
'hwBoardServiceMisMatchAlarmEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.44.1',
|
||||
'hwBoardServiceMisMatchServiceName' => '1.3.6.1.4.1.2011.5.25.42.2.1.44.1.1',
|
||||
'hwBoardServiceMisMatchPrecautions' => '1.3.6.1.4.1.2011.5.25.42.2.1.44.1.2',
|
||||
'hwEVPNNotSupportTunnelTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.45',
|
||||
'hwEVPNNotSupportTunnelEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.45.1',
|
||||
'hwEVPNPeerRemoteIp' => '1.3.6.1.4.1.2011.5.25.42.2.1.45.1.1',
|
||||
'hwNotSupportTunnelEvpnName' => '1.3.6.1.4.1.2011.5.25.42.2.1.45.1.2',
|
||||
'hwVPLSNotSupportTunnelTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.46',
|
||||
'hwVPLSNotSupportTunnelEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.46.1',
|
||||
'hwNotSupportTunnelPwId' => '1.3.6.1.4.1.2011.5.25.42.2.1.46.1.1',
|
||||
'hwPWPeerRemoteIp' => '1.3.6.1.4.1.2011.5.25.42.2.1.46.1.2',
|
||||
'hwNotSupportTunnelVSIName' => '1.3.6.1.4.1.2011.5.25.42.2.1.46.1.3',
|
||||
'hwNotSupportTunnelType' => '1.3.6.1.4.1.2011.5.25.42.2.1.47',
|
||||
'hwNotSupportTunnelTypeDefinition' => 'HUAWEI-L2MAM-MIB::hwNotSupportTunnelType',
|
||||
'hwPVSuppressionStatisticTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.48',
|
||||
'hwPVSuppressionStatisticEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1',
|
||||
'hwPVStatisticIfIndex' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.1',
|
||||
'hwPVStatisticVlan' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.2',
|
||||
'hwPVStatisticTime' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.3',
|
||||
'hwPVUcInPassPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.4',
|
||||
'hwPVUcInPassByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.5',
|
||||
'hwPVUcInDropPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.6',
|
||||
'hwPVUcInDropByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.7',
|
||||
'hwPVUcOutPassPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.8',
|
||||
'hwPVUcOutPassByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.9',
|
||||
'hwPVUcOutDropPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.10',
|
||||
'hwPVUcOutDropByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.11',
|
||||
'hwPVMulInPassPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.12',
|
||||
'hwPVMulInPassByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.13',
|
||||
'hwPVMulInDropPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.14',
|
||||
'hwPVMulInDropByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.15',
|
||||
'hwPVMulOutPassPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.16',
|
||||
'hwPVMulOutPassByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.17',
|
||||
'hwPVMulOutDropPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.18',
|
||||
'hwPVMulOutDropByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.19',
|
||||
'hwPVBrInPassPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.20',
|
||||
'hwPVBrInPassByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.21',
|
||||
'hwPVBrInDropPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.22',
|
||||
'hwPVBrInDropByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.23',
|
||||
'hwPVBrOutPassPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.24',
|
||||
'hwPVBrOutPassByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.25',
|
||||
'hwPVBrOutDropPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.26',
|
||||
'hwPVBrOutDropByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.48.1.27',
|
||||
'hwPortSuppressionStatisticTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.49',
|
||||
'hwPortSuppressionStatisticEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1',
|
||||
'hwPortStatisticIfIndex' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.1',
|
||||
'hwPortStatisticTime' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.2',
|
||||
'hwPortUcInPassPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.3',
|
||||
'hwPortUcInPassByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.4',
|
||||
'hwPortUcInDropPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.5',
|
||||
'hwPortUcInDropByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.6',
|
||||
'hwPortUcOutPassPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.7',
|
||||
'hwPortUcOutPassByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.8',
|
||||
'hwPortUcOutDropPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.9',
|
||||
'hwPortUcOutDropByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.10',
|
||||
'hwPortMulInPassPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.11',
|
||||
'hwPortMulInPassByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.12',
|
||||
'hwPortMulInDropPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.13',
|
||||
'hwPortMulInDropByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.14',
|
||||
'hwPortMulOutPassPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.15',
|
||||
'hwPortMulOutPassByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.16',
|
||||
'hwPortMulOutDropPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.17',
|
||||
'hwPortMulOutDropByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.18',
|
||||
'hwPortBrInPassPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.19',
|
||||
'hwPortBrInPassByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.20',
|
||||
'hwPortBrInDropPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.21',
|
||||
'hwPortBrInDropByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.22',
|
||||
'hwPortBrOutPassPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.23',
|
||||
'hwPortBrOutPassByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.24',
|
||||
'hwPortBrOutDropPack' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.25',
|
||||
'hwPortBrOutDropByte' => '1.3.6.1.4.1.2011.5.25.42.2.1.49.1.26',
|
||||
'hwMacAccountStatisticTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.50',
|
||||
'hwMacAccountStatisticEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.50.1',
|
||||
'hwMacAccountStatisticIfindex' => '1.3.6.1.4.1.2011.5.25.42.2.1.50.1.1',
|
||||
'hwMacAccountStatisticMacAddr' => '1.3.6.1.4.1.2011.5.25.42.2.1.50.1.2',
|
||||
'hwMacAccountStatisticIfName' => '1.3.6.1.4.1.2011.5.25.42.2.1.50.1.3',
|
||||
'hwMacAccountStatisticIfInBytes' => '1.3.6.1.4.1.2011.5.25.42.2.1.50.1.4',
|
||||
'hwMacAccountStatisticIfInPkts' => '1.3.6.1.4.1.2011.5.25.42.2.1.50.1.5',
|
||||
'hwMacAccountStatisticIfOutBytes' => '1.3.6.1.4.1.2011.5.25.42.2.1.50.1.6',
|
||||
'hwMacAccountStatisticIfOutPkts' => '1.3.6.1.4.1.2011.5.25.42.2.1.50.1.7',
|
||||
'hwNodeSrteLoadBanlanceTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.51',
|
||||
'hwNodeSrteLoadBanlanceEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.51.1',
|
||||
'hwNodeSrteTunnelName' => '1.3.6.1.4.1.2011.5.25.42.2.1.51.1.1',
|
||||
'hwNodeSrteServiceName' => '1.3.6.1.4.1.2011.5.25.42.2.1.51.1.2',
|
||||
'hwVllVpnQosNotSupportTunnelTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.52',
|
||||
'hwVllVpnQosNotSupportTunnelEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.52.1',
|
||||
'hwVLLACIfName' => '1.3.6.1.4.1.2011.5.25.42.2.1.52.1.1',
|
||||
'hwVLLPeerRemoteIp' => '1.3.6.1.4.1.2011.5.25.42.2.1.52.1.2',
|
||||
'hwNotSupportTunnelTypeName' => '1.3.6.1.4.1.2011.5.25.42.2.1.52.1.3',
|
||||
'hwL2DomainMacLimitAlarmTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.53',
|
||||
'hwL2DomainMacLimitAlarmEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.53.1',
|
||||
'hwMacLimitAlarmVlan' => '1.3.6.1.4.1.2011.5.25.42.2.1.53.1.1',
|
||||
'hwMacLimitAlarmVsi' => '1.3.6.1.4.1.2011.5.25.42.2.1.53.1.2',
|
||||
'hwMacLimitAlarmBdID' => '1.3.6.1.4.1.2011.5.25.42.2.1.53.1.3',
|
||||
'hwMacLimitAlarmEpnName' => '1.3.6.1.4.1.2011.5.25.42.2.1.53.1.4',
|
||||
'hwMacLimitAlarmDynNum' => '1.3.6.1.4.1.2011.5.25.42.2.1.53.1.5',
|
||||
'hwMacLimitAlarmMaxMac' => '1.3.6.1.4.1.2011.5.25.42.2.1.53.1.6',
|
||||
'hwMacLimitAlarmUpthreshold' => '1.3.6.1.4.1.2011.5.25.42.2.1.53.1.7',
|
||||
'hwMacLimitAlarmDownthreshold' => '1.3.6.1.4.1.2011.5.25.42.2.1.53.1.8',
|
||||
'hwVxlanTnlMacLimitSourceIp' => '1.3.6.1.4.1.2011.5.25.42.2.1.54',
|
||||
'hwVxlanTnlMacLimitPeerIp' => '1.3.6.1.4.1.2011.5.25.42.2.1.55',
|
||||
'hwVxlanTnlMacLimitMaxMac' => '1.3.6.1.4.1.2011.5.25.42.2.1.56',
|
||||
'hwTunnelNotSupportInterfaceTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.57',
|
||||
'hwTunnelNotSupportInterfaceEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.57.1',
|
||||
'hwTunnelName' => '1.3.6.1.4.1.2011.5.25.42.2.1.57.1.1',
|
||||
'hwNotSupIfName' => '1.3.6.1.4.1.2011.5.25.42.2.1.57.1.2',
|
||||
'hwDescription' => '1.3.6.1.4.1.2011.5.25.42.2.1.57.1.3',
|
||||
'hwServiceNotSupportDscpSrteTable' => '1.3.6.1.4.1.2011.5.25.42.2.1.58',
|
||||
'hwServiceNotSupportDscpSrteEntry' => '1.3.6.1.4.1.2011.5.25.42.2.1.58.1',
|
||||
'hwDscpSrteServiceName' => '1.3.6.1.4.1.2011.5.25.42.2.1.58.1.1',
|
||||
'hwL2MAMConformance' => '1.3.6.1.4.1.2011.5.25.42.2.2',
|
||||
'hwL2MAMGroups' => '1.3.6.1.4.1.2011.5.25.42.2.2.1',
|
||||
'hwL2MAMCompliances' => '1.3.6.1.4.1.2011.5.25.42.2.2.2',
|
||||
'hwL2MACTrapGroups' => '1.3.6.1.4.1.2011.5.25.42.2.2.3',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'HUAWEI-L2MAM-MIB'} = {
|
||||
'hwL2ProtclTnlEnableTransMode' => {
|
||||
'1' => 'tagged',
|
||||
'2' => 'untagged',
|
||||
},
|
||||
'hwMacLimitAction' => {
|
||||
'1' => 'discard',
|
||||
'2' => 'forward',
|
||||
},
|
||||
'hwCfgFdbType' => {
|
||||
'2' => 'static',
|
||||
'3' => 'blackhole',
|
||||
},
|
||||
'hwNotSupportTunnelType' => {
|
||||
'1' => 'bgpovergre',
|
||||
'2' => 'bgpoverldpovergre',
|
||||
'3' => 'ldpovergre',
|
||||
'4' => 'bgp',
|
||||
'5' => 'vpnqosovergre',
|
||||
},
|
||||
'hwSlotMacLimitAlarm' => {
|
||||
'1' => 'disable',
|
||||
'2' => 'enable',
|
||||
},
|
||||
'hwL2ProtclTnlCusEncapType' => {
|
||||
'1' => 'ethernetii',
|
||||
'2' => 'snap',
|
||||
'3' => 'llc',
|
||||
'4' => 'others',
|
||||
},
|
||||
'hwDynMacAddrQueryConditionMode' => {
|
||||
'1' => 'showall',
|
||||
'2' => 'showbymac',
|
||||
'3' => 'showbymacvlan',
|
||||
'4' => 'showbytype',
|
||||
'5' => 'showbytypevlan',
|
||||
'6' => 'showbytypeport',
|
||||
'7' => 'showbytypeportvlan',
|
||||
'8' => 'showbyvlan',
|
||||
'9' => 'showbyport',
|
||||
'10' => 'showbyportvlan',
|
||||
'11' => 'showbymacvsi',
|
||||
'12' => 'showbytypevsi',
|
||||
'13' => 'showbytypeportvsi',
|
||||
'14' => 'showbyvsi',
|
||||
'15' => 'showbyportvsi',
|
||||
'16' => 'showbyvsipw',
|
||||
'17' => 'showbytypeslot',
|
||||
'18' => 'showbytypeslotsourceslot',
|
||||
'19' => 'showbytypeslotvlan',
|
||||
'20' => 'showbytypeslotport',
|
||||
'21' => 'showbytypeslotportvlan',
|
||||
'22' => 'showbytypeslotvsi',
|
||||
'23' => 'showbytypeslotportvsi',
|
||||
'24' => 'showbytypeslotvsipw',
|
||||
},
|
||||
'hwSlotMacLimitAction' => {
|
||||
'1' => 'discard',
|
||||
'2' => 'forward',
|
||||
},
|
||||
'hwCfgMacAddrQueryConditionMode' => {
|
||||
'1' => 'showall',
|
||||
'2' => 'showbymac',
|
||||
'3' => 'showbymacvlan',
|
||||
'4' => 'showbytype',
|
||||
'5' => 'showbytypevlan',
|
||||
'6' => 'showbytypeport',
|
||||
'7' => 'showbytypeportvlan',
|
||||
'8' => 'showbyvlan',
|
||||
'9' => 'showbyport',
|
||||
'10' => 'showbyportvlan',
|
||||
'11' => 'showbymacvsi',
|
||||
'12' => 'showbytypevsi',
|
||||
'13' => 'showbytypeportvsi',
|
||||
'14' => 'showbyvsi',
|
||||
'15' => 'showbyportvsi',
|
||||
},
|
||||
'hwMacLimitAlarm' => {
|
||||
'1' => 'disable',
|
||||
'2' => 'enable',
|
||||
},
|
||||
'hwCfgFdbCeDefault' => {
|
||||
'0' => 'noCeDefault',
|
||||
'1' => 'ceDefault',
|
||||
},
|
||||
'hwMacAddressLearn' => {
|
||||
'1' => 'disable',
|
||||
'2' => 'enable',
|
||||
},
|
||||
'hwPwMacLimitAction' => {
|
||||
'1' => 'discard',
|
||||
'2' => 'forward',
|
||||
},
|
||||
'hwMacLimitRuleAction' => {
|
||||
'1' => 'discard',
|
||||
'2' => 'forward',
|
||||
},
|
||||
'hwPortSecurityProtectAction' => {
|
||||
'1' => 'restrict',
|
||||
'2' => 'protect',
|
||||
'3' => 'shutdown',
|
||||
'4' => 'noaction',
|
||||
},
|
||||
'hwCfgMacAddrQueryCedefaultFlag' => {
|
||||
'0' => 'nocedefault',
|
||||
'1' => 'cedefault',
|
||||
},
|
||||
'hwL2ProtclTnlStdEncapType' => {
|
||||
'1' => 'ethernetii',
|
||||
'2' => 'snap',
|
||||
'3' => 'llc',
|
||||
'4' => 'others',
|
||||
},
|
||||
'hwMacLimitRuleAlarm' => {
|
||||
'1' => 'disable',
|
||||
'2' => 'enable',
|
||||
},
|
||||
'hwMacInfoQueryConditionMode' => {
|
||||
'1' => 'showtotalnumberbyall',
|
||||
'2' => 'showtotalnumberbytype',
|
||||
'3' => 'showtotalnumberbytypevlan',
|
||||
'4' => 'showtotalnumberbytypeport',
|
||||
'5' => 'showtotalnumberbytypeportvlan',
|
||||
'6' => 'showtotalnumberbyvlan',
|
||||
'7' => 'showtotalnumberbyport',
|
||||
'8' => 'showtotalnumberbyportvlan',
|
||||
'9' => 'showtotalnumberbytypevsi',
|
||||
'10' => 'showtotalnumberbytypeportvsi',
|
||||
'11' => 'showtotalnumberbyvsi',
|
||||
'12' => 'showtotalnumberbyportvsi',
|
||||
'13' => 'showtotalnumberbyvsipw',
|
||||
'14' => 'showtotalnumberbytypeslot',
|
||||
'15' => 'showtotalnumberbytypeslotvlan',
|
||||
'16' => 'showtotalnumberbytypeslotport',
|
||||
'17' => 'showtotalnumberbytypeslotportvlan',
|
||||
'18' => 'showtotalnumberbytypeslotvsi',
|
||||
'19' => 'showtotalnumberbytypeslotportvsi',
|
||||
'20' => 'showtotalnumberbytypeslotvsipw',
|
||||
'21' => 'showcapacity',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,653 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::HUAWEIL2VLANMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'HUAWEI-L2VLAN-MIB'} = {
|
||||
url => '',
|
||||
name => 'HUAWEI-L2VLAN-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'HUAWEI-L2VLAN-MIB'} =
|
||||
'1.3.6.1.4.1.2011.5.25.42.3';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'HUAWEI-L2VLAN-MIB'} = {
|
||||
'hwL2Mgmt' => '1.3.6.1.4.1.2011.5.25.42',
|
||||
'hwL2Vlan' => '1.3.6.1.4.1.2011.5.25.42.3',
|
||||
'hwL2VlanMngObjects' => '1.3.6.1.4.1.2011.5.25.42.3.1',
|
||||
'hwL2VlanBase' => '1.3.6.1.4.1.2011.5.25.42.3.1.1',
|
||||
'hwL2VlanMIBTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1',
|
||||
'hwL2VlanMIBEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1',
|
||||
'hwL2VlanIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.1',
|
||||
'hwL2VlanDescr' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.2',
|
||||
'hwL2VlanPortList' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.3',
|
||||
'hwL2VlanType' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.4',
|
||||
'hwL2VlanTypeDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanType',
|
||||
'hwL2VlanUnknownUnicastProcessing' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.5',
|
||||
'hwL2VlanUnknownUnicastProcessingDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanUnknownUnicastProcessing',
|
||||
'hwL2VlanIfIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.6',
|
||||
'hwL2VlanMacLearn' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.7',
|
||||
'hwL2VlanMulticast' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.8',
|
||||
'hwL2VlanAdminStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.9',
|
||||
'hwL2VlanStatisStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.10',
|
||||
'hwL2VlanCreateStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.11',
|
||||
'hwL2VlanCreateStatusDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanCreateStatus',
|
||||
'hwL2VlanRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.12',
|
||||
'hwL2VlanBcast' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.13',
|
||||
'hwL2VlanUnknownMulticastProcessing' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.14',
|
||||
'hwL2VlanUnknownMulticastProcessingDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanUnknownMulticastProcessing',
|
||||
'hwL2VlanProperty' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.15',
|
||||
'hwL2VlanPropertyDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanProperty',
|
||||
'hwL2VlanAgingTime' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.16',
|
||||
'hwL2VlanName' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.17',
|
||||
'hwL2VlanSmartMacLearn' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.18',
|
||||
'hwL2VlanServiceName' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.19',
|
||||
'hwL2VlanManagementVlan' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.20',
|
||||
'hwL2VlanDynamicVlan' => '1.3.6.1.4.1.2011.5.25.42.3.1.1.1.1.21',
|
||||
'hwL2VlanApply' => '1.3.6.1.4.1.2011.5.25.42.3.1.2',
|
||||
'hwL2VlanStackingTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.1',
|
||||
'hwL2VlanStackingEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.1.1',
|
||||
'hwL2VlanStackingPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.1.1.1',
|
||||
'hwL2VlanStackingInsideVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.1.1.2',
|
||||
'hwL2VlanStackingOutsideVlanListLow' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.1.1.3',
|
||||
'hwL2VlanStackingOutsideVlanListHigh' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.1.1.4',
|
||||
'hwL2VlanStackingRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.1.1.5',
|
||||
'hwL2VlanMappingTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.2',
|
||||
'hwL2VlanMappingEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.2.1',
|
||||
'hwL2VlanMappingPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.2.1.1',
|
||||
'hwL2VlanMappingInsideVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.2.1.2',
|
||||
'hwL2VlanMappingOutsideVlanListLow' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.2.1.3',
|
||||
'hwL2VlanMappingOutsideVlanListHigh' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.2.1.4',
|
||||
'hwL2VlanMappingRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.2.1.5',
|
||||
'hwSuperVlanTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.3',
|
||||
'hwSuperVlanEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.3.1',
|
||||
'hwSuperVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.3.1.1',
|
||||
'hwSubVlanListLow' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.3.1.2',
|
||||
'hwSubVlanListHigh' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.3.1.3',
|
||||
'hwL2InterfIsolateTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.4',
|
||||
'hwL2InterfIsolateEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.4.1',
|
||||
'hwL2InterfIsolateVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.4.1.1',
|
||||
'hwL2InterfIsolateInterflistLow' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.4.1.2',
|
||||
'hwL2InterfIsolateInterflistHigh' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.4.1.3',
|
||||
'hwL2IsolatemappingTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.5',
|
||||
'hwL2IsolatemappingEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.5.1',
|
||||
'hwL2IsolatemappingPortNum' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.5.1.1',
|
||||
'hwL2IsolateInterflistLow' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.5.1.2',
|
||||
'hwL2IsolateInterflistHigh' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.5.1.3',
|
||||
'hwL2VlanStackingExtTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.6',
|
||||
'hwL2VlanStackingExtEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.6.1',
|
||||
'hwL2VlanStackingExtPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.6.1.1',
|
||||
'hwL2VlanStackingExtVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.6.1.2',
|
||||
'hwL2VlanStackingExtAction' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.6.1.3',
|
||||
'hwL2VlanStackingExtActionDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanStackingExtAction',
|
||||
'hwL2VlanStackingExtDirection' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.6.1.4',
|
||||
'hwL2VlanStackingExtDirectionDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanStackingExtDirection',
|
||||
'hwL2VlanStackingExtVlanListLow' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.6.1.5',
|
||||
'hwL2VlanStackingExtVlanListHigh' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.6.1.6',
|
||||
'hwL2VlanStackingExtRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.6.1.7',
|
||||
'hwL2VlanStackingExtPriorityMode' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.6.1.8',
|
||||
'hwL2VlanStackingExtPriorityModeDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanStackingExtPriorityMode',
|
||||
'hwL2VlanStackingExtVlan8021p' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.6.1.9',
|
||||
'hwL2VlanQinQTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.7',
|
||||
'hwL2VlanQinQEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.7.1',
|
||||
'hwL2VlanQinQIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.7.1.1',
|
||||
'hwL2VlanQinQDirection' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.7.1.2',
|
||||
'hwL2VlanQinQDirectionDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanQinQDirection',
|
||||
'hwL2VlanQinQOutSideVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.7.1.3',
|
||||
'hwL2VlanSysQinQRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.7.1.4',
|
||||
'hwL2VlanInterfaceQinQTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.8',
|
||||
'hwL2VlanInterfaceQinQEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.8.1',
|
||||
'hwL2VlanQinQInterfaceIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.8.1.1',
|
||||
'hwL2VlanQinQCVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.8.1.2',
|
||||
'hwL2VlanQinQSVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.8.1.3',
|
||||
'hwL2VlanQinQAction' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.8.1.4',
|
||||
'hwL2VlanQinQActionDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanQinQAction',
|
||||
'hwL2VlanQinQNewCVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.8.1.5',
|
||||
'hwL2VlanInterfaceQinQRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.8.1.6',
|
||||
'hwL2DVlanMappingTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.9',
|
||||
'hwL2DVlanMappingEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.9.1',
|
||||
'hwL2DVlanMappingInterfaceIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.9.1.1',
|
||||
'hwL2DVlanMappingExternalVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.9.1.2',
|
||||
'hwL2DVlanMappingInternalVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.9.1.3',
|
||||
'hwL2DVlanMappingDirection' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.9.1.4',
|
||||
'hwL2DVlanMappingDirectionDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2DVlanMappingDirection',
|
||||
'hwL2DVlanMappingMapExternalVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.9.1.5',
|
||||
'hwL2DVlanMappingMapInternalVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.9.1.6',
|
||||
'hwL2DVlanMappingAction' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.9.1.7',
|
||||
'hwL2DVlanMappingActionDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2DVlanMappingAction',
|
||||
'hwL2DVlanMappingRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.9.1.8',
|
||||
'hwL2VlanMappingExtTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.10',
|
||||
'hwL2VlanMappingExtEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.10.1',
|
||||
'hwL2VlanMappingExtPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.10.1.1',
|
||||
'hwL2VlanMappingExtDirection' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.10.1.2',
|
||||
'hwL2VlanMappingExtDirectionDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanMappingExtDirection',
|
||||
'hwL2VlanMappingExtVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.10.1.3',
|
||||
'hwL2VlanMappingExtVlanListLow' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.10.1.4',
|
||||
'hwL2VlanMappingExtVlanListHigh' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.10.1.5',
|
||||
'hwL2VlanMappingExtRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.10.1.6',
|
||||
'hwL2VlanMappingExtPriorityMode' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.10.1.7',
|
||||
'hwL2VlanMappingExtPriorityModeDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanMappingExtPriorityMode',
|
||||
'hwL2VlanMappingExtVlan8021p' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.10.1.8',
|
||||
'hwL2VlanStackingAdvTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.11',
|
||||
'hwL2VlanStackingAdvEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.11.1',
|
||||
'hwL2VlanStackingAdvPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.11.1.1',
|
||||
'hwL2VlanStackingAdvOutside8021p' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.11.1.2',
|
||||
'hwL2VlanStackingAdvStackVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.11.1.3',
|
||||
'hwL2VlanStackingAdvStack8021p' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.11.1.4',
|
||||
'hwL2VlanStackingAdvMapVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.11.1.5',
|
||||
'hwL2VlanStackingAdvOutsideVlanListLow' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.11.1.6',
|
||||
'hwL2VlanStackingAdvOutsideVlanListHigh' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.11.1.7',
|
||||
'hwL2VlanStackingAdvRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.11.1.8',
|
||||
'hwL2VlanMappingAdvTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.12',
|
||||
'hwL2VlanMappingAdvEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.12.1',
|
||||
'hwL2VlanMappingAdvPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.12.1.1',
|
||||
'hwL2VlanMappingAdvOutsideVlan8021p' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.12.1.2',
|
||||
'hwL2VlanMappingAdvMapVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.12.1.3',
|
||||
'hwL2VlanMappingAdvMapVlan8021p' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.12.1.4',
|
||||
'hwL2VlanMappingAdvOutsideVlanListLow' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.12.1.5',
|
||||
'hwL2VlanMappingAdvOutsideVlanListHigh' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.12.1.6',
|
||||
'hwL2VlanMappingAdvRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.12.1.7',
|
||||
'hwL2VlanSwitchTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.13',
|
||||
'hwL2VlanSwitchEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.13.1',
|
||||
'hwL2VlanSwitchIfIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.13.1.1',
|
||||
'hwL2VlanSwitchOuterVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.13.1.2',
|
||||
'hwL2VlanSwitchInnerVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.13.1.3',
|
||||
'hwL2VlanSwitchMode' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.13.1.4',
|
||||
'hwL2VlanSwitchModeDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanSwitchMode',
|
||||
'hwL2VlanSwitchOuterSwitchVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.13.1.5',
|
||||
'hwL2VlanSwitchInnerSwitchVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.13.1.6',
|
||||
'hwL2VlanSwitch8021pRemark' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.13.1.7',
|
||||
'hwL2VlanSwitchOutIfIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.13.1.8',
|
||||
'hwL2VlanSwitchMtu' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.13.1.9',
|
||||
'hwL2VlanSwitchMtuDiscardPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.13.1.10',
|
||||
'hwL2VlanSwitchMtuDiscardBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.13.1.11',
|
||||
'hwL2VlanSwitchMtuResetFlag' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.13.1.12',
|
||||
'hwL2VlanSwitchMtuEnableFlag' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.13.1.13',
|
||||
'hwL2VlanSwitchRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.13.1.14',
|
||||
'hwL2VlanQinqVlanTransEnaTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.14',
|
||||
'hwL2VlanQinqVlanTransEnaEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.14.1',
|
||||
'hwL2VlanQinqVlanTransEnaPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.14.1.1',
|
||||
'hwL2VlanQinqVlanTransEna' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.14.1.2',
|
||||
'hwL2VlanQinqVlanTransEnaRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.14.1.3',
|
||||
'hwL2VlanQinqVlanTransMissDropTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.15',
|
||||
'hwL2VlanQinqVlanTransMissDropEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.15.1',
|
||||
'hwL2VlanQinqVlanTransMissDropPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.15.1.1',
|
||||
'hwL2VlanQinqVlanTransMissDrop' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.15.1.2',
|
||||
'hwL2VlanQinqVlanTransMissDropDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanQinqVlanTransMissDrop',
|
||||
'hwL2VlanQinqVlanTransMissDropRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.15.1.3',
|
||||
'hwL2VlanViewMappingTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.16',
|
||||
'hwL2VlanViewMappingEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.16.1',
|
||||
'hwL2VlanViewMappingVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.16.1.1',
|
||||
'hwL2VlanViewMappingDirection' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.16.1.2',
|
||||
'hwL2VlanViewMappingDirectionDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanViewMappingDirection',
|
||||
'hwL2VlanViewMappingMapVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.16.1.3',
|
||||
'hwL2VlanViewMappingPriorityMode' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.16.1.4',
|
||||
'hwL2VlanViewMappingPriorityModeDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanViewMappingPriorityMode',
|
||||
'hwL2VlanViewMappingVlan8021p' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.16.1.5',
|
||||
'hwL2VlanViewMappingRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.16.1.6',
|
||||
'hwL2VlanStackingMaskTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.17',
|
||||
'hwL2VlanStackingMaskEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.17.1',
|
||||
'hwL2VlanStackingMaskPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.17.1.1',
|
||||
'hwL2VlanStackingMaskStackVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.17.1.2',
|
||||
'hwL2VlanStackingMaskStack8021p' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.17.1.3',
|
||||
'hwL2VlanStackingMaskAction' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.17.1.4',
|
||||
'hwL2VlanStackingMaskActionDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanStackingMaskAction',
|
||||
'hwL2VlanStackingMaskDirection' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.17.1.5',
|
||||
'hwL2VlanStackingMaskDirectionDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanStackingMaskDirection',
|
||||
'hwL2VlanStackingMaskVlanListLow' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.17.1.6',
|
||||
'hwL2VlanStackingMaskVlanListHigh' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.17.1.7',
|
||||
'hwL2VlanStackingMaskRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.17.1.8',
|
||||
'hwL2VlanIpSubnetVlanTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.18',
|
||||
'hwL2VlanIpSubnetVlanEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.18.1',
|
||||
'hwL2VlanIpSubnetVlanVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.18.1.1',
|
||||
'hwL2VlanIpSubnetVlanIpSubnetIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.18.1.2',
|
||||
'hwL2VlanIpSubnetVlanIpAddress' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.18.1.3',
|
||||
'hwL2VlanIpSubnetVlanIpSubnetMask' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.18.1.4',
|
||||
'hwL2VlanIpSubnetVlanPriority' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.18.1.5',
|
||||
'hwL2VlanIpSubnetVlanRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.18.1.6',
|
||||
'hwL2VlanMacVlanTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.19',
|
||||
'hwL2VlanMacVlanEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.19.1',
|
||||
'hwL2VlanMacVlanVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.19.1.1',
|
||||
'hwL2VlanMacVlanMac' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.19.1.2',
|
||||
'hwL2VlanMacVlanVlanPriority' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.19.1.3',
|
||||
'hwL2VlanMacVlanMacRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.19.1.4',
|
||||
'hwL2VlanProtocolVlanTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.20',
|
||||
'hwL2VlanProtocolVlanEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.20.1',
|
||||
'hwL2VlanProtocolVlanVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.20.1.1',
|
||||
'hwL2VlanProtocolVlanProtocolIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.20.1.2',
|
||||
'hwL2VlanProtocolVlanProtocolType' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.20.1.3',
|
||||
'hwL2VlanProtocolVlanEncapType' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.20.1.4',
|
||||
'hwL2VlanProtocolVlanEncapTypeDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanProtocolVlanEncapType',
|
||||
'hwL2VlanProtocolVlanRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.20.1.5',
|
||||
'hwL2VlanPolicyVlanTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.21',
|
||||
'hwL2VlanPolicyVlanEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.21.1',
|
||||
'hwL2VlanPolicyVlanMac' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.21.1.1',
|
||||
'hwL2VlanPolicyVlanIp' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.21.1.2',
|
||||
'hwL2VlanPolicyVlanPort' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.21.1.3',
|
||||
'hwL2VlanPolicyVlanVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.21.1.4',
|
||||
'hwL2VlanPolicyVlanVlanPriority' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.21.1.5',
|
||||
'hwL2VlanPolicyVlanRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.21.1.6',
|
||||
'hwL2VlanVoiceVlanEnabledVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.22',
|
||||
'hwL2VlanVoiceVlanAgingTime' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.23',
|
||||
'hwL2VlanVoiceVlanSecurityMode' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.24',
|
||||
'hwL2VlanVoiceVlanSecurityModeDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanVoiceVlanSecurityMode',
|
||||
'hwL2VlanVoiceVlanPortTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.25',
|
||||
'hwL2VlanVoiceVlanPortEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.25.1',
|
||||
'hwL2VlanVoiceVlanPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.25.1.1',
|
||||
'hwL2VlanVoiceVlanPortEnable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.25.1.2',
|
||||
'hwL2VlanVoiceVlanPortMode' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.25.1.3',
|
||||
'hwL2VlanVoiceVlanPortModeDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanVoiceVlanPortMode',
|
||||
'hwL2VlanVoiceVlanPortLegacy' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.25.1.4',
|
||||
'hwL2VlanVoiceVlanPortSecurityMode' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.25.1.5',
|
||||
'hwL2VlanVoiceVlanPortSecurityModeDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanVoiceVlanPortSecurityMode',
|
||||
'hwL2VlanVoiceVlanPortModifyPriorityMode' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.25.1.6',
|
||||
'hwL2VlanVoiceVlanPortModifyPriorityModeDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanVoiceVlanPortModifyPriorityMode',
|
||||
'hwL2VlanVoiceVlanOuiTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.26',
|
||||
'hwL2VlanVoiceVlanOuiEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.26.1',
|
||||
'hwL2VlanVoiceVlanOuiAddress' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.26.1.1',
|
||||
'hwL2VlanVoiceVlanOuiMask' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.26.1.2',
|
||||
'hwL2VlanVoiceVlanOuiDescription' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.26.1.3',
|
||||
'hwL2VlanVoiceVlanOuiRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.26.1.4',
|
||||
'hwL2VlanMappingMultiTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.27',
|
||||
'hwL2VlanMappingMultiEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.27.1',
|
||||
'hwL2VlanMappingMultiPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.27.1.1',
|
||||
'hwL2VlanMappingMultiDirection' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.27.1.2',
|
||||
'hwL2VlanMappingMultiDirectionDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanMappingMultiDirection',
|
||||
'hwL2VlanMappingMultiVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.27.1.3',
|
||||
'hwL2VlanMappingMultiVlan8021p' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.27.1.4',
|
||||
'hwL2VlanMappingMultiVlanListLow' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.27.1.5',
|
||||
'hwL2VlanMappingMultiVlanListHigh' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.27.1.6',
|
||||
'hwL2VlanMappingMultiRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.27.1.7',
|
||||
'hwL2VlanMacVlanNewTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.28',
|
||||
'hwL2VlanMacVlanNewEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.28.1',
|
||||
'hwL2VlanMacVlanNewMac' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.28.1.1',
|
||||
'hwL2VlanMacVlanNewVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.28.1.2',
|
||||
'hwL2VlanMacVlanNewVlanPriority' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.28.1.3',
|
||||
'hwL2VlanMacVlanNewMacRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.28.1.4',
|
||||
'hwL2VlanProtocolVlanNewTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.29',
|
||||
'hwL2VlanProtocolVlanNewEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.29.1',
|
||||
'hwL2VlanProtocolVlanNewVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.29.1.1',
|
||||
'hwL2VlanProtocolVlanNewProtocolIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.29.1.2',
|
||||
'hwL2VlanProtocolVlanNewProtocolType' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.29.1.3',
|
||||
'hwL2VlanProtocolVlanNewProtocolTypeDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanProtocolVlanNewProtocolType',
|
||||
'hwL2VlanProtocolVlanNewProtocolTypeValue' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.29.1.4',
|
||||
'hwL2VlanProtocolVlanNewRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.29.1.5',
|
||||
'hwL2VlanPolicyVlanNewTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.30',
|
||||
'hwL2VlanPolicyVlanNewEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.30.1',
|
||||
'hwL2VlanPolicyVlanNewMac' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.30.1.1',
|
||||
'hwL2VlanPolicyVlanNewIp' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.30.1.2',
|
||||
'hwL2VlanPolicyVlanNewPort' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.30.1.3',
|
||||
'hwL2VlanPolicyVlanNewVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.30.1.4',
|
||||
'hwL2VlanPolicyVlanNewVlanPriority' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.30.1.5',
|
||||
'hwL2VlanPolicyVlanNewRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.30.1.6',
|
||||
'hwL2VlanProtocolVlanPortNewTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.31',
|
||||
'hwL2VlanProtocolVlanPortNewEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.31.1',
|
||||
'hwL2VlanProtocolVlanPortNewIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.31.1.1',
|
||||
'hwL2VlanProtocolVlanPortNewVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.31.1.2',
|
||||
'hwL2VlanProtocolVlanPortNewProtocolIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.31.1.3',
|
||||
'hwL2VlanProtocolVlanPortNewPriority' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.31.1.4',
|
||||
'hwL2VlanProtocolVlanPortNewRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.31.1.5',
|
||||
'hwL2VlanMultiVoiceVlanPortTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.32',
|
||||
'hwL2VlanMultiVoiceVlanPortEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.32.1',
|
||||
'hwL2VlanMultiVoiceVlanIfIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.32.1.1',
|
||||
'hwL2VlanMultiVoiceVlanPortVLanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.32.1.2',
|
||||
'hwL2VlanMultiVoiceVlanPortUntagEnable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.32.1.3',
|
||||
'hwL2VlanMultiVoiceVlanPortUntagEnableDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanMultiVoiceVlanPortUntagEnable',
|
||||
'hwL2VlanMultiVoiceVlanPortRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.32.1.51',
|
||||
'hwL2VlanSwitchExtTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.33',
|
||||
'hwL2VlanSwitchExtEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.33.1',
|
||||
'hwL2VlanSwitchExtName' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.33.1.1',
|
||||
'hwL2VlanSwitchExtSrcIfIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.33.1.2',
|
||||
'hwL2VlanSwitchExtOuterVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.33.1.3',
|
||||
'hwL2VlanSwitchExtVlanListLow' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.33.1.4',
|
||||
'hwL2VlanSwitchExtVlanListHigh' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.33.1.5',
|
||||
'hwL2VlanSwitchExtDstIfIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.33.1.6',
|
||||
'hwL2VlanSwitchExtVlanXlateAction' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.33.1.7',
|
||||
'hwL2VlanSwitchExtVlanXlateActionDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanSwitchExtVlanXlateAction',
|
||||
'hwL2VlanSwitchExtDstVlan' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.33.1.8',
|
||||
'hwL2VlanSwitchExtDstInnerVlan' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.33.1.9',
|
||||
'hwL2VlanSwitchExtRemark' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.33.1.10',
|
||||
'hwL2VlanSwitchExtRemarkReverse' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.33.1.11',
|
||||
'hwL2VlanSwitchExtLinkStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.33.1.12',
|
||||
'hwL2VlanSwitchExtLinkStatusDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanSwitchExtLinkStatus',
|
||||
'hwL2VlanSwitchExtRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.33.1.51',
|
||||
'hwL2VlanPrecedence' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.34',
|
||||
'hwL2VlanPrecedenceDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanPrecedence',
|
||||
'hwL2VlanXlateTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.35',
|
||||
'hwL2VlanXlateEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.35.1',
|
||||
'hwL2VlanXlateInterfaceIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.35.1.1',
|
||||
'hwL2VlanXlateVlanIdBegin' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.35.1.2',
|
||||
'hwL2VlanXlateVlanIdEnd' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.35.1.3',
|
||||
'hwL2VlanXlateOuterVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.35.1.4',
|
||||
'hwL2VlanXlateVlan8021p' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.35.1.5',
|
||||
'hwL2VlanXlateDirection' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.35.1.6',
|
||||
'hwL2VlanXlateDirectionDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanXlateDirection',
|
||||
'hwL2VlanXlateAction' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.35.1.7',
|
||||
'hwL2VlanXlateActionDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2VlanXlateAction',
|
||||
'hwL2VlanXlateToVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.35.1.8',
|
||||
'hwL2VlanXlateToinnerVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.35.1.9',
|
||||
'hwL2VlanXlateremark' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.35.1.10',
|
||||
'hwL2VlanXlateRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.35.1.51',
|
||||
'hwL2QinQVlanTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.36',
|
||||
'hwL2QinQVlanEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.36.1',
|
||||
'hwL2QinQVlanIfIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.36.1.1',
|
||||
'hwL2QinQVlanIdBegin' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.36.1.2',
|
||||
'hwL2QinQVlanIdEnd' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.36.1.3',
|
||||
'hwL2QinQVlanInnerVlanIdBegin' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.36.1.4',
|
||||
'hwL2QinQVlanInnerVlanIdEnd' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.36.1.5',
|
||||
'hwL2QinQVlan8021pBegin' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.36.1.6',
|
||||
'hwL2QinQVlan8021pEnd' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.36.1.7',
|
||||
'hwL2QinQVlanEtherType' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.36.1.8',
|
||||
'hwL2QinQVlanMode' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.36.1.9',
|
||||
'hwL2QinQVlanModeDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2QinQVlanMode',
|
||||
'hwL2QinQVlanChangedVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.36.1.10',
|
||||
'hwL2QinQVlanChangedInnerVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.36.1.11',
|
||||
'hwL2QinQVlanRemark' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.36.1.12',
|
||||
'hwL2QinQVlanMapStackVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.36.1.13',
|
||||
'hwL2QinQVlanRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.36.1.14',
|
||||
'hwL2UntagAddDTagTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.37',
|
||||
'hwL2UntagAddDTagEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.37.1',
|
||||
'hwL2UntagAddDTagPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.37.1.1',
|
||||
'hwL2UntagAddDTagOuterVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.37.1.2',
|
||||
'hwL2UntagAddDTagInnerVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.37.1.3',
|
||||
'hwL2UntagAddDTagRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.37.1.4',
|
||||
'hwL2VlanVoiceVlan8021p' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.38',
|
||||
'hwL2VlanVoiceVlanDscp' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.39',
|
||||
'hwL2QinQIsolateTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.40',
|
||||
'hwL2QinQIsolateEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.40.1',
|
||||
'hwL2QinQIsolatePortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.40.1.1',
|
||||
'hwL2QinQIsolateVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.40.1.2',
|
||||
'hwL2QinQIsolatePeVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.40.1.3',
|
||||
'hwL2QinQIsolateCeVlanListLow' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.40.1.4',
|
||||
'hwL2QinQIsolateCeVlanListHigh' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.40.1.5',
|
||||
'hwL2QinQTagType' => '1.3.6.1.4.1.2011.5.25.42.3.1.2.40.1.6',
|
||||
'hwL2QinQTagTypeDefinition' => 'HUAWEI-L2VLAN-MIB::hwL2QinQTagType',
|
||||
'hwL2VlanStatistics' => '1.3.6.1.4.1.2011.5.25.42.3.1.3',
|
||||
'hwL2IfStatVlanCfgTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.1',
|
||||
'hwL2IfStatVlanCfgEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.1.1',
|
||||
'hwL2IfStatVlanCfgPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.1.1.1',
|
||||
'hwL2IfStatVlanCfgVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.1.1.2',
|
||||
'hwL2IfStatVlanCfgEnableFlag' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.1.1.11',
|
||||
'hwL2IfStatVlanCfgRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.1.1.12',
|
||||
'hwL2IfStat8021pCfgTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.2',
|
||||
'hwL2IfStat8021pCfgEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.2.1',
|
||||
'hwL2IfStat8021pCfgPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.2.1.1',
|
||||
'hwL2IfStat8021pCfg8021p' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.2.1.2',
|
||||
'hwL2IfStat8021pCfgEnableFlag' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.2.1.11',
|
||||
'hwL2IfStat8021pCfgRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.2.1.12',
|
||||
'hwL2IfStat8021pAndVlanCfgTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.3',
|
||||
'hwL2IfStat8021pAndVlanCfgEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.3.1',
|
||||
'hwL2IfStat8021pAndVlanCfgPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.3.1.1',
|
||||
'hwL2IfStat8021pAndVlanCfgVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.3.1.2',
|
||||
'hwL2IfStat8021pAndVlanCfg8021p' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.3.1.3',
|
||||
'hwL2IfStat8021pAndVlanCfgEnableFlag' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.3.1.11',
|
||||
'hwL2IfStat8021pAndVlanCfgRowStatus' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.3.1.12',
|
||||
'hwL2VlanStatTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4',
|
||||
'hwL2VlanStatEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1',
|
||||
'hwL2VlanStatVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.1',
|
||||
'hwL2VlanStatInTotalPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.2',
|
||||
'hwL2VlanStatInTotalBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.3',
|
||||
'hwL2VlanStatOutTotalPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.4',
|
||||
'hwL2VlanStatOutTotalBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.5',
|
||||
'hwL2VlanStatUnknownUcastDiscardPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.6',
|
||||
'hwL2VlanStatUnknownMcastDiscardPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.7',
|
||||
'hwL2VlanStatBcastDiscardPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.8',
|
||||
'hwL2VlanStatInUcastPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.9',
|
||||
'hwL2VlanStatInUcastBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.10',
|
||||
'hwL2VlanStatOutUcastPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.11',
|
||||
'hwL2VlanStatOutUcastBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.12',
|
||||
'hwL2VlanStatInMcastPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.13',
|
||||
'hwL2VlanStatInMcastBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.14',
|
||||
'hwL2VlanStatOutMcastPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.15',
|
||||
'hwL2VlanStatOutMcastBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.16',
|
||||
'hwL2VlanStatInBcastPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.17',
|
||||
'hwL2VlanStatInBcastBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.18',
|
||||
'hwL2VlanStatOutBcastPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.19',
|
||||
'hwL2VlanStatOutBcastBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.20',
|
||||
'hwL2VlanStatResetFlag' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.4.1.21',
|
||||
'hwL2IfStatVlanTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5',
|
||||
'hwL2IfStatVlanEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1',
|
||||
'hwL2IfStatVlanPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.1',
|
||||
'hwL2IfStatVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.2',
|
||||
'hwL2IfStatVlanInTotalPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.3',
|
||||
'hwL2IfStatVlanInTotalBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.4',
|
||||
'hwL2IfStatVlanOutTotalPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.5',
|
||||
'hwL2IfStatVlanOutTotalBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.6',
|
||||
'hwL2IfStatVlanInPktsRate' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.7',
|
||||
'hwL2IfStatVlanInBytesRate' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.8',
|
||||
'hwL2IfStatVlanOutPktsRate' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.9',
|
||||
'hwL2IfStatVlanOutBytesRate' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.10',
|
||||
'hwL2IfStatVlanInUcastPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.11',
|
||||
'hwL2IfStatVlanInUcastBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.12',
|
||||
'hwL2IfStatVlanOutUcastPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.13',
|
||||
'hwL2IfStatVlanOutUcastBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.14',
|
||||
'hwL2IfStatVlanInMcastPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.15',
|
||||
'hwL2IfStatVlanInMcastBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.16',
|
||||
'hwL2IfStatVlanOutMcastPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.17',
|
||||
'hwL2IfStatVlanOutMcastBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.18',
|
||||
'hwL2IfStatVlanInBcastPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.19',
|
||||
'hwL2IfStatVlanInBcastBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.20',
|
||||
'hwL2IfStatVlanOutBcastPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.21',
|
||||
'hwL2IfStatVlanOutBcastBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.22',
|
||||
'hwL2IfStatVlanResetFlag' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.5.1.23',
|
||||
'hwL2IfStat8021pTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.6',
|
||||
'hwL2IfStat8021pEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.6.1',
|
||||
'hwL2IfStat8021pPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.6.1.1',
|
||||
'hwL2IfStat8021p' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.6.1.2',
|
||||
'hwL2IfStat8021pInTotalPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.6.1.3',
|
||||
'hwL2IfStat8021pInTotalBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.6.1.4',
|
||||
'hwL2IfStat8021pOutTotalPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.6.1.5',
|
||||
'hwL2IfStat8021pOutTotalBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.6.1.6',
|
||||
'hwL2IfStat8021pInPktsRate' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.6.1.7',
|
||||
'hwL2IfStat8021pInBytsRate' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.6.1.8',
|
||||
'hwL2IfStat8021pOutPktsRate' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.6.1.9',
|
||||
'hwL2IfStat8021pOutBytesRate' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.6.1.10',
|
||||
'hwL2IfStat8021pResetFlag' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.6.1.11',
|
||||
'hwL2IfStat8021pAndVlanTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.7',
|
||||
'hwL2IfStat8021pAndVlanEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.7.1',
|
||||
'hwL2IfStat8021pAndVlanPortIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.7.1.1',
|
||||
'hwL2IfStat8021pAndVlanVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.7.1.2',
|
||||
'hwL2IfStat8021pAndVlan8021p' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.7.1.3',
|
||||
'hwL2IfStat8021pAndVlanInTotalPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.7.1.4',
|
||||
'hwL2IfStat8021pAndVlanInTotalBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.7.1.5',
|
||||
'hwL2IfStat8021pAndVlanInPktsRate' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.7.1.6',
|
||||
'hwL2IfStat8021pAndVlanInBytsRate' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.7.1.7',
|
||||
'hwL2IfStat8021pAndVlanResetFlag' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.7.1.8',
|
||||
'hwL2VlanSwitchPSTable' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.8',
|
||||
'hwL2VlanSwitchPSEntry' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.8.1',
|
||||
'hwL2VlanSwitchPSIfIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.8.1.1',
|
||||
'hwL2VlanSwitchPSSVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.8.1.2',
|
||||
'hwL2VlanSwitchPSCVlanId' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.8.1.3',
|
||||
'hwL2VlanSwitchPSInputPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.8.1.4',
|
||||
'hwL2VlanSwitchPSInputBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.8.1.5',
|
||||
'hwL2VlanSwitchPSOutputPkts' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.8.1.6',
|
||||
'hwL2VlanSwitchPSOutputBytes' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.8.1.7',
|
||||
'hwL2VlanSwitchPSResetFlag' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.8.1.8',
|
||||
'hwL2VlanSwitchPSEnableFlag' => '1.3.6.1.4.1.2011.5.25.42.3.1.3.8.1.9',
|
||||
'hwL2VlanTraps' => '1.3.6.1.4.1.2011.5.25.42.3.1.4',
|
||||
'hwL2VlanTrapObjects' => '1.3.6.1.4.1.2011.5.25.42.3.1.5',
|
||||
'hwVcmpDeviceMac' => '1.3.6.1.4.1.2011.5.25.42.3.1.5.1',
|
||||
'hwPrincipalVlanID' => '1.3.6.1.4.1.2011.5.25.42.3.1.5.2',
|
||||
'hwMuxVlanUpperThreshold' => '1.3.6.1.4.1.2011.5.25.42.3.1.5.3',
|
||||
'hwMuxVlanLowerThreshold' => '1.3.6.1.4.1.2011.5.25.42.3.1.5.4',
|
||||
'hwVlantransIfIndex' => '1.3.6.1.4.1.2011.5.25.42.3.1.5.5',
|
||||
'hwVlantransUpperThreshold' => '1.3.6.1.4.1.2011.5.25.42.3.1.5.6',
|
||||
'hwVlantransLowerThreshold' => '1.3.6.1.4.1.2011.5.25.42.3.1.5.7',
|
||||
'hwL2vlanConformance' => '1.3.6.1.4.1.2011.5.25.42.3.2',
|
||||
'hwL2vlanGroups' => '1.3.6.1.4.1.2011.5.25.42.3.2.1',
|
||||
'hwL2vlanCompliances' => '1.3.6.1.4.1.2011.5.25.42.3.2.2',
|
||||
'hwL2VlanTrapsGroups' => '1.3.6.1.4.1.2011.5.25.42.3.2.3',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'HUAWEI-L2VLAN-MIB'} = {
|
||||
'hwL2DVlanMappingAction' => {
|
||||
'1' => 'swap',
|
||||
'2' => 'popExternalVlan',
|
||||
'3' => 'drop',
|
||||
},
|
||||
'hwL2VlanStackingMaskAction' => {
|
||||
'1' => 'pop',
|
||||
'2' => 'push',
|
||||
},
|
||||
'hwL2VlanStackingExtDirection' => {
|
||||
'1' => 'inside',
|
||||
'2' => 'outside',
|
||||
},
|
||||
'hwL2VlanMappingExtPriorityMode' => {
|
||||
'1' => 'priorityInherit',
|
||||
'2' => 'remark8021p',
|
||||
},
|
||||
'hwL2VlanMappingMultiDirection' => {
|
||||
'1' => 'inbound',
|
||||
'2' => 'outbound',
|
||||
'3' => 'both',
|
||||
},
|
||||
'hwL2VlanCreateStatus' => {
|
||||
'1' => 'other',
|
||||
'2' => 'static',
|
||||
'3' => 'dynamic',
|
||||
},
|
||||
'hwL2VlanViewMappingDirection' => {
|
||||
'1' => 'inbound',
|
||||
'2' => 'outbound',
|
||||
'3' => 'both',
|
||||
},
|
||||
'hwL2VlanStackingExtPriorityMode' => {
|
||||
'1' => 'priorityInherit',
|
||||
'2' => 'remark8021p',
|
||||
},
|
||||
'hwL2VlanStackingExtAction' => {
|
||||
'1' => 'pop',
|
||||
'2' => 'push',
|
||||
},
|
||||
'hwL2VlanXlateAction' => {
|
||||
'1' => 'map',
|
||||
'2' => 'stack',
|
||||
'3' => 'pop',
|
||||
},
|
||||
'hwL2VlanQinQDirection' => {
|
||||
'1' => 'inbound',
|
||||
'2' => 'outbound',
|
||||
},
|
||||
'hwL2VlanSwitchExtLinkStatus' => {
|
||||
'1' => 'up',
|
||||
'2' => 'down',
|
||||
},
|
||||
'hwL2VlanProtocolVlanNewProtocolType' => {
|
||||
'1' => 'at',
|
||||
'2' => 'ipv4',
|
||||
'3' => 'ipv6',
|
||||
'4' => 'ipxEthernetii',
|
||||
'5' => 'ipxLlc',
|
||||
'6' => 'ipxRaw',
|
||||
'7' => 'ipxSnap',
|
||||
'8' => 'modeEthernetii',
|
||||
'9' => 'modeLlc',
|
||||
'10' => 'modeSnap',
|
||||
},
|
||||
'hwL2QinQVlanMode' => {
|
||||
'1' => 'stacking',
|
||||
'2' => 'mapping',
|
||||
'3' => 'cosstacking',
|
||||
'4' => 'cosmapping',
|
||||
'5' => 'mapping2to1',
|
||||
'6' => 'mapping2to2',
|
||||
},
|
||||
'hwL2VlanStackingMaskDirection' => {
|
||||
'1' => 'inside',
|
||||
'2' => 'outside',
|
||||
'3' => 'both',
|
||||
},
|
||||
'hwL2VlanMultiVoiceVlanPortUntagEnable' => {
|
||||
'1' => 'enabled',
|
||||
'2' => 'disabled',
|
||||
},
|
||||
'hwL2VlanType' => {
|
||||
'1' => 'superVlan',
|
||||
'2' => 'commonVlan',
|
||||
'3' => 'subVlan',
|
||||
'4' => 'muxVlan',
|
||||
'5' => 'muxSubVlan',
|
||||
'6' => 'protocolTransVlan',
|
||||
},
|
||||
'hwL2VlanViewMappingPriorityMode' => {
|
||||
'1' => 'priorityInherit',
|
||||
'2' => 'remark8021p',
|
||||
},
|
||||
'hwL2VlanXlateDirection' => {
|
||||
'1' => 'inbound',
|
||||
'2' => 'outbound',
|
||||
'3' => 'both',
|
||||
},
|
||||
'hwL2VlanSwitchMode' => {
|
||||
'1' => 'zeroToOne',
|
||||
'2' => 'zeroToTwo',
|
||||
'3' => 'oneToZero',
|
||||
'4' => 'oneToOne',
|
||||
'5' => 'oneToTwo',
|
||||
'6' => 'twoToZero',
|
||||
'7' => 'twoToOne',
|
||||
'8' => 'twoToTwo',
|
||||
},
|
||||
'hwL2VlanVoiceVlanPortModifyPriorityMode' => {
|
||||
'1' => 'modifyPriByVlan',
|
||||
'2' => 'modifyPriByOui',
|
||||
},
|
||||
'hwL2VlanPrecedence' => {
|
||||
'1' => 'macvlan',
|
||||
'2' => 'ipsubnetvlan',
|
||||
},
|
||||
'hwL2VlanProperty' => {
|
||||
'1' => 'default',
|
||||
'2' => 'backboneVlan',
|
||||
'3' => 'mutilcastVlan',
|
||||
'4' => 'userVlan',
|
||||
},
|
||||
'hwL2VlanVoiceVlanPortMode' => {
|
||||
'1' => 'auto',
|
||||
'2' => 'manual',
|
||||
},
|
||||
'hwL2DVlanMappingDirection' => {
|
||||
'1' => 'inbound',
|
||||
'2' => 'outbound',
|
||||
},
|
||||
'hwL2VlanQinQAction' => {
|
||||
'1' => 'push',
|
||||
'2' => 'nop',
|
||||
},
|
||||
'hwL2VlanQinqVlanTransMissDrop' => {
|
||||
'1' => 'noDrop',
|
||||
'2' => 'drop',
|
||||
},
|
||||
'hwL2VlanVoiceVlanSecurityMode' => {
|
||||
'1' => 'security',
|
||||
'2' => 'normal',
|
||||
},
|
||||
'hwL2VlanProtocolVlanEncapType' => {
|
||||
'1' => 'etherii',
|
||||
'2' => 'snap',
|
||||
'3' => 'llc',
|
||||
},
|
||||
'hwL2VlanUnknownUnicastProcessing' => {
|
||||
'1' => 'broadcast',
|
||||
'2' => 'discard',
|
||||
},
|
||||
'hwL2VlanVoiceVlanPortSecurityMode' => {
|
||||
'1' => 'security',
|
||||
'2' => 'normal',
|
||||
},
|
||||
'hwL2VlanSwitchExtVlanXlateAction' => {
|
||||
'1' => 'unchange',
|
||||
'2' => 'switch',
|
||||
'3' => 'push',
|
||||
},
|
||||
'hwL2QinQTagType' => {
|
||||
'1' => 'dot1q',
|
||||
'2' => 'qinq',
|
||||
},
|
||||
'hwL2VlanMappingExtDirection' => {
|
||||
'1' => 'inbound',
|
||||
'2' => 'outbound',
|
||||
},
|
||||
'hwL2VlanUnknownMulticastProcessing' => {
|
||||
'1' => 'broadcast',
|
||||
'2' => 'discard',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,690 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::HUAWEIWLANAPMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'HUAWEI-WLAN-AP-MIB'} = {
|
||||
url => '',
|
||||
name => 'HUAWEI-WLAN-AP-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'HUAWEI-WLAN-AP-MIB'} =
|
||||
'1.3.6.1.4.1.2011.6.139.13';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'HUAWEI-WLAN-AP-MIB'} = {
|
||||
'hwWlanAp' => '1.3.6.1.4.1.2011.6.139.13',
|
||||
'hwWlanApTrapInfo' => '1.3.6.1.4.1.2011.6.139.13.1',
|
||||
'hwWlanApTrap' => '1.3.6.1.4.1.2011.6.139.13.1.1',
|
||||
'hwWlanApTrapObjects' => '1.3.6.1.4.1.2011.6.139.13.1.2',
|
||||
'hwWlanApActualType' => '1.3.6.1.4.1.2011.6.139.13.1.2.1',
|
||||
'hwWlanApCpuOccupancyRate' => '1.3.6.1.4.1.2011.6.139.13.1.2.2',
|
||||
'hwWlanApMemoryOccupancyRate' => '1.3.6.1.4.1.2011.6.139.13.1.2.3',
|
||||
'hwWlanApPermitStaNum' => '1.3.6.1.4.1.2011.6.139.13.1.2.4',
|
||||
'hwWlanStaAuthFailCause' => '1.3.6.1.4.1.2011.6.139.13.1.2.5',
|
||||
'hwWlanAcSystemSwitchType' => '1.3.6.1.4.1.2011.6.139.13.1.2.6',
|
||||
'hwWlanApOpticalRxPower' => '1.3.6.1.4.1.2011.6.139.13.1.2.7',
|
||||
'hwWlanApOpticalTemperature' => '1.3.6.1.4.1.2011.6.139.13.1.2.8',
|
||||
'hwWlanApCfgCountryCode' => '1.3.6.1.4.1.2011.6.139.13.1.2.9',
|
||||
'hwWlanApArpAttackSrcMac' => '1.3.6.1.4.1.2011.6.139.13.1.2.10',
|
||||
'hwWlanApArpAttackDstMac' => '1.3.6.1.4.1.2011.6.139.13.1.2.11',
|
||||
'hwWlanApArpAttackSrcIP' => '1.3.6.1.4.1.2011.6.139.13.1.2.12',
|
||||
'hwWlanApArpCfgRateThreshold' => '1.3.6.1.4.1.2011.6.139.13.1.2.13',
|
||||
'hwWlanApArpActualRate' => '1.3.6.1.4.1.2011.6.139.13.1.2.14',
|
||||
'hwWlanApNotifyRadioId' => '1.3.6.1.4.1.2011.6.139.13.1.2.15',
|
||||
'hwWlanApNotifyOrRestoreTemperature' => '1.3.6.1.4.1.2011.6.139.13.1.2.16',
|
||||
'hwWlanOccurTime' => '1.3.6.1.4.1.2011.6.139.13.1.2.17',
|
||||
'hwWlanApBootNotifyName' => '1.3.6.1.4.1.2011.6.139.13.1.2.18',
|
||||
'hwWlanApFaultTimes' => '1.3.6.1.4.1.2011.6.139.13.1.2.19',
|
||||
'hwWlanApUnAuthorizedApRecordNumber' => '1.3.6.1.4.1.2011.6.139.13.1.2.20',
|
||||
'hwWlanCrcErrActual' => '1.3.6.1.4.1.2011.6.139.13.1.2.21',
|
||||
'hwWlanCrcThreshold' => '1.3.6.1.4.1.2011.6.139.13.1.2.22',
|
||||
'hwWlanApNotifyWlanId' => '1.3.6.1.4.1.2011.6.139.13.1.2.23',
|
||||
'hwWlanApLicenseInfo' => '1.3.6.1.4.1.2011.6.139.13.1.2.24',
|
||||
'hwWlanCrcPortType' => '1.3.6.1.4.1.2011.6.139.13.1.2.25',
|
||||
'hwWlanCrcPortID' => '1.3.6.1.4.1.2011.6.139.13.1.2.26',
|
||||
'hwWlanApArpAttackDropNum' => '1.3.6.1.4.1.2011.6.139.13.1.2.27',
|
||||
'hwWlanApFaultID' => '1.3.6.1.4.1.2011.6.139.13.1.2.28',
|
||||
'hwWlanApIfIndex' => '1.3.6.1.4.1.2011.6.139.13.1.2.29',
|
||||
'hwWlanApFaultInfo' => '1.3.6.1.4.1.2011.6.139.13.1.2.30',
|
||||
'hwWlanApSoftWareVersion' => '1.3.6.1.4.1.2011.6.139.13.1.2.31',
|
||||
'hwRadioUploadRemoteCaptureResult' => '1.3.6.1.4.1.2011.6.139.13.1.2.32',
|
||||
'hwWlanApRadioID' => '1.3.6.1.4.1.2011.6.139.13.1.2.33',
|
||||
'hwWlanApCpuOverloadDescInfo' => '1.3.6.1.4.1.2011.6.139.13.1.2.34',
|
||||
'hwWlanApOpticalTxPower' => '1.3.6.1.4.1.2011.6.139.13.1.2.35',
|
||||
'hwWlanSlotNum' => '1.3.6.1.4.1.2011.6.139.13.1.2.36',
|
||||
'hwApPoePdPriority' => '1.3.6.1.4.1.2011.6.139.13.1.2.37',
|
||||
'hwApPoePdPriorityDefinition' => 'HUAWEI-WLAN-AP-MIB::hwApPoePdPriority',
|
||||
'hwApPoePortPriority' => '1.3.6.1.4.1.2011.6.139.13.1.2.38',
|
||||
'hwApPoePortPriorityDefinition' => 'HUAWEI-WLAN-AP-MIB::hwApPoePortPriority',
|
||||
'hwApPoeCurConsumPower' => '1.3.6.1.4.1.2011.6.139.13.1.2.39',
|
||||
'hwApPoeConsumPowerThreshold' => '1.3.6.1.4.1.2011.6.139.13.1.2.40',
|
||||
'hwApFanIndex' => '1.3.6.1.4.1.2011.6.139.13.1.2.41',
|
||||
'hwApEntityPhysicalName' => '1.3.6.1.4.1.2011.6.139.13.1.2.42',
|
||||
'hwApStorageIndex' => '1.3.6.1.4.1.2011.6.139.13.1.2.43',
|
||||
'hwApStorageName' => '1.3.6.1.4.1.2011.6.139.13.1.2.44',
|
||||
'hwWlanApOpticalFaultID' => '1.3.6.1.4.1.2011.6.139.13.1.2.45',
|
||||
'hwWlanApWlanID' => '1.3.6.1.4.1.2011.6.139.13.1.2.46',
|
||||
'hwWlanBLEMacAddr' => '1.3.6.1.4.1.2011.6.139.13.1.2.47',
|
||||
'hwWlanApUdp' => '1.3.6.1.4.1.2011.6.139.13.1.2.48',
|
||||
'hwSubFirmwareName' => '1.3.6.1.4.1.2011.6.139.13.1.2.49',
|
||||
'hwSubFirmware' => '1.3.6.1.4.1.2011.6.139.13.1.2.50',
|
||||
'hwRealVersion' => '1.3.6.1.4.1.2011.6.139.13.1.2.51',
|
||||
'hwExpectVersion' => '1.3.6.1.4.1.2011.6.139.13.1.2.52',
|
||||
'hwWlanApIotCardId' => '1.3.6.1.4.1.2011.6.139.13.1.2.53',
|
||||
'hwPowerOffReason' => '1.3.6.1.4.1.2011.6.139.13.1.2.54',
|
||||
'hwApSpecificChangeConfig' => '1.3.6.1.4.1.2011.6.139.13.1.2.55',
|
||||
'hwApSpecificChangeReason' => '1.3.6.1.4.1.2011.6.139.13.1.2.56',
|
||||
'hwApInconsisitConfig' => '1.3.6.1.4.1.2011.6.139.13.1.2.57',
|
||||
'hwApConfigInconsisitReason' => '1.3.6.1.4.1.2011.6.139.13.1.2.58',
|
||||
'hwApPowerWorkMode' => '1.3.6.1.4.1.2011.6.139.13.1.2.59',
|
||||
'hwApExpectPowerWorkMode' => '1.3.6.1.4.1.2011.6.139.13.1.2.60',
|
||||
'hwWlanIllegalMac' => '1.3.6.1.4.1.2011.6.139.13.1.2.61',
|
||||
'hwApVlanId' => '1.3.6.1.4.1.2011.6.139.13.1.2.62',
|
||||
'hwWlanApIfName' => '1.3.6.1.4.1.2011.6.139.13.1.2.63',
|
||||
'hwWlanApConfigType' => '1.3.6.1.4.1.2011.6.139.13.1.2.64',
|
||||
'hwAPDiskThresholdWarning' => '1.3.6.1.4.1.2011.6.139.13.1.2.65',
|
||||
'hwAPDiskThresholdCurrent' => '1.3.6.1.4.1.2011.6.139.13.1.2.66',
|
||||
'hwAPConflictIPAddress' => '1.3.6.1.4.1.2011.6.139.13.1.2.67',
|
||||
'hwAPMaxNum' => '1.3.6.1.4.1.2011.6.139.13.1.2.68',
|
||||
'hwWlanApIotCardType' => '1.3.6.1.4.1.2011.6.139.13.1.2.69',
|
||||
'hwApPowerId' => '1.3.6.1.4.1.2011.6.139.13.1.2.70',
|
||||
'hwApPowerFaultId' => '1.3.6.1.4.1.2011.6.139.13.1.2.71',
|
||||
'hwApPowerFaultReason' => '1.3.6.1.4.1.2011.6.139.13.1.2.72',
|
||||
'hwWlanApTemperatureType' => '1.3.6.1.4.1.2011.6.139.13.1.2.73',
|
||||
'hwWlanApTypeObjects' => '1.3.6.1.4.1.2011.6.139.13.2',
|
||||
'hwWlanApTypeTable' => '1.3.6.1.4.1.2011.6.139.13.2.1',
|
||||
'hwWlanApTypeEntry' => '1.3.6.1.4.1.2011.6.139.13.2.1.1',
|
||||
'hwWlanApType' => '1.3.6.1.4.1.2011.6.139.13.2.1.1.1',
|
||||
'hwWlanApTypeDesc' => '1.3.6.1.4.1.2011.6.139.13.2.1.1.2',
|
||||
'hwWlanApTypeWiredPortNum' => '1.3.6.1.4.1.2011.6.139.13.2.1.1.3',
|
||||
'hwWlanApTypeRadioNum' => '1.3.6.1.4.1.2011.6.139.13.2.1.1.4',
|
||||
'hwWlanApTypeMaxStaNum' => '1.3.6.1.4.1.2011.6.139.13.2.1.1.5',
|
||||
'hwWlanApTypeReset' => '1.3.6.1.4.1.2011.6.139.13.2.1.1.6',
|
||||
'hwWlanApTypeExternalAntenna' => '1.3.6.1.4.1.2011.6.139.13.2.1.1.7',
|
||||
'hwWlanApTypeExternalAntennaDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApTypeExternalAntenna',
|
||||
'hwWlanApTypeID' => '1.3.6.1.4.1.2011.6.139.13.2.1.1.8',
|
||||
'hwWlanApTypeOperate' => '1.3.6.1.4.1.2011.6.139.13.2.1.1.9',
|
||||
'hwWlanApTypeOperateDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApTypeOperate',
|
||||
'hwWlanApTypeConfigurationMethod' => '1.3.6.1.4.1.2011.6.139.13.2.1.1.10',
|
||||
'hwWlanApTypeAutoCreateMethod' => '1.3.6.1.4.1.2011.6.139.13.2.1.1.11',
|
||||
'hwWlanApTypeAutoCreateMethodDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApTypeAutoCreateMethod',
|
||||
'hwWlanApTypeRadioTable' => '1.3.6.1.4.1.2011.6.139.13.2.2',
|
||||
'hwWlanApTypeRadioEntry' => '1.3.6.1.4.1.2011.6.139.13.2.2.1',
|
||||
'hwWlanApTypeRadioIndex' => '1.3.6.1.4.1.2011.6.139.13.2.2.1.1',
|
||||
'hwWlanApTypeRadioType' => '1.3.6.1.4.1.2011.6.139.13.2.2.1.2',
|
||||
'hwWlanApTypeRadioTypeDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApTypeRadioType',
|
||||
'hwWlanRadioMaxSpatialStreamsNum' => '1.3.6.1.4.1.2011.6.139.13.2.2.1.3',
|
||||
'hwWlanApTypeRadioAntennaGain' => '1.3.6.1.4.1.2011.6.139.13.2.2.1.4',
|
||||
'hwWlanApTypeRadioMaxVAPNum' => '1.3.6.1.4.1.2011.6.139.13.2.2.1.5',
|
||||
'hwWlanApTypeWiredPortTable' => '1.3.6.1.4.1.2011.6.139.13.2.3',
|
||||
'hwWlanApTypeWiredPortEntry' => '1.3.6.1.4.1.2011.6.139.13.2.3.1',
|
||||
'hwWlanApTypeWiredPortIndex' => '1.3.6.1.4.1.2011.6.139.13.2.3.1.1',
|
||||
'hwWlanApTypeWiredPortType' => '1.3.6.1.4.1.2011.6.139.13.2.3.1.2',
|
||||
'hwWlanApTypeWiredPortTypeDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApTypeWiredPortType',
|
||||
'hwWlanApTypeWiredPortName' => '1.3.6.1.4.1.2011.6.139.13.2.3.1.3',
|
||||
'hwWlanApTypeUndefinedTable' => '1.3.6.1.4.1.2011.6.139.13.2.4',
|
||||
'hwWlanApTypeUndefinedEntry' => '1.3.6.1.4.1.2011.6.139.13.2.4.1',
|
||||
'hwWlanApTypeUndefined' => '1.3.6.1.4.1.2011.6.139.13.2.4.1.1',
|
||||
'hwWlanApTypeIDUndefined' => '1.3.6.1.4.1.2011.6.139.13.2.4.1.2',
|
||||
'hwWlanApTypeUndefinedReportApMac' => '1.3.6.1.4.1.2011.6.139.13.2.4.1.3',
|
||||
'hwWlanApTypeUndefinedReportTime' => '1.3.6.1.4.1.2011.6.139.13.2.4.1.4',
|
||||
'hwWlanApTypeUndefinedOperate' => '1.3.6.1.4.1.2011.6.139.13.2.4.1.5',
|
||||
'hwWlanApTypeUndefinedOperateDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApTypeUndefinedOperate',
|
||||
'hwWlanApTypeAttributesAbnormalCheckTable' => '1.3.6.1.4.1.2011.6.139.13.2.5',
|
||||
'hwWlanApTypeAttributesAbnormalCheckEntry' => '1.3.6.1.4.1.2011.6.139.13.2.5.1',
|
||||
'hwWlanApTypeAttributesAbnormalCheck' => '1.3.6.1.4.1.2011.6.139.13.2.5.1.1',
|
||||
'hwWlanApTypeIDAttributesAbnormalCheck' => '1.3.6.1.4.1.2011.6.139.13.2.5.1.2',
|
||||
'hwWlanApTypeAttributesAbnormalCheckResult' => '1.3.6.1.4.1.2011.6.139.13.2.5.1.3',
|
||||
'hwWlanApTypeAttributesAbnormalCheckResultDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApTypeAttributesAbnormalCheckResult',
|
||||
'hwWlanApTypeAttributesAbnormalCheckReason' => '1.3.6.1.4.1.2011.6.139.13.2.5.1.4',
|
||||
'hwWlanApTypeAttributesAbnormalCheckReasonDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApTypeAttributesAbnormalCheckReason',
|
||||
'hwWlanApObjects' => '1.3.6.1.4.1.2011.6.139.13.3',
|
||||
'hwWlanApPing' => '1.3.6.1.4.1.2011.6.139.13.3.1',
|
||||
'hwWlanApPingApMac' => '1.3.6.1.4.1.2011.6.139.13.3.1.1',
|
||||
'hwWlanApPingAddress' => '1.3.6.1.4.1.2011.6.139.13.3.1.2',
|
||||
'hwWlanApPingCount' => '1.3.6.1.4.1.2011.6.139.13.3.1.3',
|
||||
'hwWlanApPingPacketSize' => '1.3.6.1.4.1.2011.6.139.13.3.1.4',
|
||||
'hwWlanApPingWaitTime' => '1.3.6.1.4.1.2011.6.139.13.3.1.5',
|
||||
'hwWlanApPingTimeOut' => '1.3.6.1.4.1.2011.6.139.13.3.1.6',
|
||||
'hwWlanApPingResultSuccessCount' => '1.3.6.1.4.1.2011.6.139.13.3.1.7',
|
||||
'hwWlanApPingResultFailureCount' => '1.3.6.1.4.1.2011.6.139.13.3.1.8',
|
||||
'hwWlanApPingResultAveResponseTime' => '1.3.6.1.4.1.2011.6.139.13.3.1.9',
|
||||
'hwWlanApPingResultMinResponseTime' => '1.3.6.1.4.1.2011.6.139.13.3.1.10',
|
||||
'hwWlanApPingResultMaxResponseTime' => '1.3.6.1.4.1.2011.6.139.13.3.1.11',
|
||||
'hwWlanApPingResultFlag' => '1.3.6.1.4.1.2011.6.139.13.3.1.12',
|
||||
'hwWlanApPingResultFlagDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApPingResultFlag',
|
||||
'hwWlanUnauthedApRecordTable' => '1.3.6.1.4.1.2011.6.139.13.3.2',
|
||||
'hwWlanUnauthedApRecordEntry' => '1.3.6.1.4.1.2011.6.139.13.3.2.1',
|
||||
'hwWlanUnauthedApRecordIndex' => '1.3.6.1.4.1.2011.6.139.13.3.2.1.1',
|
||||
'hwWlanUnauthedApType' => '1.3.6.1.4.1.2011.6.139.13.3.2.1.2',
|
||||
'hwWlanUnauthedApMacAddress' => '1.3.6.1.4.1.2011.6.139.13.3.2.1.3',
|
||||
'hwWlanUnauthedApSn' => '1.3.6.1.4.1.2011.6.139.13.3.2.1.4',
|
||||
'hwWlanUnauthedApIpAddress' => '1.3.6.1.4.1.2011.6.139.13.3.2.1.5',
|
||||
'hwWlanUnauthedApRecordTime' => '1.3.6.1.4.1.2011.6.139.13.3.2.1.6',
|
||||
'hwWlanUnauthedAPIPv6Address' => '1.3.6.1.4.1.2011.6.139.13.3.2.1.7',
|
||||
'hwWlanApTable' => '1.3.6.1.4.1.2011.6.139.13.3.3',
|
||||
'hwWlanApEntry' => '1.3.6.1.4.1.2011.6.139.13.3.3.1',
|
||||
'hwWlanApMac' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.1',
|
||||
'hwWlanApSn' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.2',
|
||||
'hwWlanApTypeInfo' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.3',
|
||||
'hwWlanApName' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.4',
|
||||
'hwWlanApGroup' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.5',
|
||||
'hwWlanApRunState' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.6',
|
||||
'hwWlanApRunStateDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApRunState',
|
||||
'hwWlanApSoftwareVersion' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.7',
|
||||
'hwWlanApHardwareVersion' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.8',
|
||||
'hwWlanApCpuType' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.9',
|
||||
'hwWlanApCpufrequency' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.10',
|
||||
'hwWlanApMemoryType' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.11',
|
||||
'hwWlanApDomain' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.12',
|
||||
'hwWlanApIpAddress' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.13',
|
||||
'hwWlanApIpNetMask' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.14',
|
||||
'hwWlanApGatewayIp' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.15',
|
||||
'hwWlanApMemorySize' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.16',
|
||||
'hwWlanApFlashSize' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.17',
|
||||
'hwWlanApRunTime' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.18',
|
||||
'hwWlanApAdminOper' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.19',
|
||||
'hwWlanApAdminOperDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApAdminOper',
|
||||
'hwWlanApDNS' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.20',
|
||||
'hwWlanApOnlineTime' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.21',
|
||||
'hwWlanApSysSoftwareDesc' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.22',
|
||||
'hwWlanApSysHardtwareDesc' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.23',
|
||||
'hwWlanApSysManufacture' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.24',
|
||||
'hwWlanApSysSoftwareName' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.25',
|
||||
'hwWlanApSysSoftwareVendor' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.26',
|
||||
'hwWlanApBomCode' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.27',
|
||||
'hwWlanApIpv6Address' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.28',
|
||||
'hwWlanApIpv6NetMask' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.29',
|
||||
'hwWlanApGatewayIpv6' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.30',
|
||||
'hwWlanApIpv6DNS' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.31',
|
||||
'hwWlanApProtectAcIPv6Addr' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.32',
|
||||
'hwWlanApBootCountTotal' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.33',
|
||||
'hwWlanApBootCountPowerOff' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.34',
|
||||
'hwWlanApBootCountClear' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.35',
|
||||
'hwWlanApElectronicLabel' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.36',
|
||||
'hwWlanApWiredPortNum' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.37',
|
||||
'hwWlanApWiredPortMtu' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.38',
|
||||
'hwWlanApWiredPortMac' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.39',
|
||||
'hwWlanApMemoryUseRate' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.40',
|
||||
'hwWlanApCpuUseRate' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.41',
|
||||
'hwWlanApFlashFreeSize' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.42',
|
||||
'hwWlanApTemperature' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.43',
|
||||
'hwWlanApOnlineUserNum' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.44',
|
||||
'hwWlanApDualBandAssoc5gStaNum' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.45',
|
||||
'hwWlanApDualBandStaNum' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.46',
|
||||
'hwWlanApStaOnlineFailRatio' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.47',
|
||||
'hwWlanApStaOfflineRatio' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.48',
|
||||
'hwWlanApStickyClientRatio' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.49',
|
||||
'hwWlanApUpEthPortSpeed' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.50',
|
||||
'hwWlanApUpEthPortSpeedDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApUpEthPortSpeed',
|
||||
'hwWlanApUpEthPortSpeedMode' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.51',
|
||||
'hwWlanApUpEthPortSpeedModeDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApUpEthPortSpeedMode',
|
||||
'hwWlanApUpEthPortDuplex' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.52',
|
||||
'hwWlanApUpEthPortDuplexDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApUpEthPortDuplex',
|
||||
'hwWlanApUpEthPortDuplexMode' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.53',
|
||||
'hwWlanApUpEthPortDuplexModeDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApUpEthPortDuplexMode',
|
||||
'hwWlanApUpPortSpeed' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.54',
|
||||
'hwWlanAPUpPortPER' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.55',
|
||||
'hwWlanEthportUpRate' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.56',
|
||||
'hwWlanEthportDownRate' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.57',
|
||||
'hwWlanApAirportUpTraffic' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.58',
|
||||
'hwWlanApAirportDwTraffic' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.59',
|
||||
'hwWlanApEthportDwTraffic' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.60',
|
||||
'hwWlanApEthportUpTraffic' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.61',
|
||||
'hwWlanApUpPortRecvPackets' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.62',
|
||||
'hwWlanApUpPortSendPackets' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.63',
|
||||
'hwWlanApRowstatus' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.64',
|
||||
'hwWlanApUpPortRecvBytes' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.65',
|
||||
'hwWlanApUpPortSendBytes' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.66',
|
||||
'hwWlanApId' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.67',
|
||||
'hwWlanCentralApId' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.68',
|
||||
'hwWlanCentralApMac' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.69',
|
||||
'hwWlanCentralApName' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.70',
|
||||
'hwWlanApSDCardSize' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.71',
|
||||
'hwWlanAPLongitude' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.72',
|
||||
'hwWlanAPLatitude' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.73',
|
||||
'hwWlanApTotalOnlineTime' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.74',
|
||||
'hwWlanApDiscoverTime' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.75',
|
||||
'hwWlanAPPoeWorkmode' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.76',
|
||||
'hwWlanAPPoeWorkmodeDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanAPPoeWorkmode',
|
||||
'hwWlanAPPoeExpectedWorkmode' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.77',
|
||||
'hwWlanAPPoeExpectedWorkmodeDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanAPPoeExpectedWorkmode',
|
||||
'hwWlanAPStaOnlineFailStatistics' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.78',
|
||||
'hwWlanAPStaOfflineStatistics' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.79',
|
||||
'hwWlanAPPowerSupplyState' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.80',
|
||||
'hwWlanAPPowerSupplyStateDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanAPPowerSupplyState',
|
||||
'hwWlanApDataLinkState' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.81',
|
||||
'hwWlanApDataLinkStateDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApDataLinkState',
|
||||
'hwWlanApEnvironmentTemperature' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.82',
|
||||
'hwWlanApCpuTemperature' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.83',
|
||||
'hwWlanApNpTemperature' => '1.3.6.1.4.1.2011.6.139.13.3.3.1.84',
|
||||
'hwWlanApWiredPortTable' => '1.3.6.1.4.1.2011.6.139.13.3.4',
|
||||
'hwWlanApWiredPortEntry' => '1.3.6.1.4.1.2011.6.139.13.3.4.1',
|
||||
'hwWlanApWiredPortIndex' => '1.3.6.1.4.1.2011.6.139.13.3.4.1.1',
|
||||
'hwWlanApWiredPortType' => '1.3.6.1.4.1.2011.6.139.13.3.4.1.2',
|
||||
'hwWlanApWiredPortTypeDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApWiredPortType',
|
||||
'hwWlanApWiredPortDesc' => '1.3.6.1.4.1.2011.6.139.13.3.4.1.3',
|
||||
'hwWlanApWiredPortState' => '1.3.6.1.4.1.2011.6.139.13.3.4.1.4',
|
||||
'hwWlanApWiredPortStateDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApWiredPortState',
|
||||
'hwWlanApWiredPortSpeed' => '1.3.6.1.4.1.2011.6.139.13.3.4.1.5',
|
||||
'hwWlanApMultiWiredPortDuplex' => '1.3.6.1.4.1.2011.6.139.13.3.4.1.6',
|
||||
'hwWlanApMultiWiredPortDuplexDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApMultiWiredPortDuplex',
|
||||
'hwWlanApMultiWiredPortNegotiation' => '1.3.6.1.4.1.2011.6.139.13.3.4.1.7',
|
||||
'hwWlanApMultiWiredPortNegotiationDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApMultiWiredPortNegotiation',
|
||||
'hwWlanApMultiWiredPortMode' => '1.3.6.1.4.1.2011.6.139.13.3.4.1.8',
|
||||
'hwWlanApMultiWiredPortModeDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApMultiWiredPortMode',
|
||||
'hwWlanApWiredPortApId' => '1.3.6.1.4.1.2011.6.139.13.3.4.1.9',
|
||||
'hwWlanApWiredPortApName' => '1.3.6.1.4.1.2011.6.139.13.3.4.1.10',
|
||||
'hwWlanApWiredPortTrunkID' => '1.3.6.1.4.1.2011.6.139.13.3.4.1.11',
|
||||
'hwWlanApWiredPortTrunkActiveFlag' => '1.3.6.1.4.1.2011.6.139.13.3.4.1.12',
|
||||
'hwWlanApWiredPortTrunkActiveFlagDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApWiredPortTrunkActiveFlag',
|
||||
'hwWlanApWiredPortDot1xAuthState' => '1.3.6.1.4.1.2011.6.139.13.3.4.1.13',
|
||||
'hwWlanApWiredPortDot1xAuthStateDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanApWiredPortDot1xAuthState',
|
||||
'hwWlanApWiredPortStatTable' => '1.3.6.1.4.1.2011.6.139.13.3.5',
|
||||
'hwWlanApWiredPortStatEntry' => '1.3.6.1.4.1.2011.6.139.13.3.5.1',
|
||||
'hwWlanApWiredPortStatClear' => '1.3.6.1.4.1.2011.6.139.13.3.5.1.1',
|
||||
'hwWlanApWiredPortUpDwnTimes' => '1.3.6.1.4.1.2011.6.139.13.3.5.1.2',
|
||||
'hwWlanApWiredPortInPkts' => '1.3.6.1.4.1.2011.6.139.13.3.5.1.3',
|
||||
'hwWlanApWiredPortInUnicastPkts' => '1.3.6.1.4.1.2011.6.139.13.3.5.1.4',
|
||||
'hwWlanApWiredPortInNonUnicastPkts' => '1.3.6.1.4.1.2011.6.139.13.3.5.1.5',
|
||||
'hwWlanApWiredPortInBytes' => '1.3.6.1.4.1.2011.6.139.13.3.5.1.6',
|
||||
'hwWlanApWiredPortInErrorPkts' => '1.3.6.1.4.1.2011.6.139.13.3.5.1.7',
|
||||
'hwWlanApWiredPortInDiscardPkts' => '1.3.6.1.4.1.2011.6.139.13.3.5.1.8',
|
||||
'hwWlanApWiredPortOutPkts' => '1.3.6.1.4.1.2011.6.139.13.3.5.1.9',
|
||||
'hwWlanApWiredPortOutUnicastPkts' => '1.3.6.1.4.1.2011.6.139.13.3.5.1.10',
|
||||
'hwWlanApWiredPortOutNonUnicastPkts' => '1.3.6.1.4.1.2011.6.139.13.3.5.1.11',
|
||||
'hwWlanApWiredPortOutBytes' => '1.3.6.1.4.1.2011.6.139.13.3.5.1.12',
|
||||
'hwWlanApWiredPortOutErrorsPkts' => '1.3.6.1.4.1.2011.6.139.13.3.5.1.13',
|
||||
'hwWlanApWiredPortOutDiscardPkts' => '1.3.6.1.4.1.2011.6.139.13.3.5.1.14',
|
||||
'hwWlanApWiredPortLldpTable' => '1.3.6.1.4.1.2011.6.139.13.3.6',
|
||||
'hwWlanApWiredPortLldpEntry' => '1.3.6.1.4.1.2011.6.139.13.3.6.1',
|
||||
'hwWlanApWiredPortLldpRemLocalPortNum' => '1.3.6.1.4.1.2011.6.139.13.3.6.1.1',
|
||||
'hwWlanApWiredPortLldpRemIndex' => '1.3.6.1.4.1.2011.6.139.13.3.6.1.2',
|
||||
'hwWlanApWiredPortLldpRemChassisIdSubtype' => '1.3.6.1.4.1.2011.6.139.13.3.6.1.3',
|
||||
'hwWlanApWiredPortLldpRemChassisId' => '1.3.6.1.4.1.2011.6.139.13.3.6.1.4',
|
||||
'hwWlanApWiredPortLldpRemPortIdSubtype' => '1.3.6.1.4.1.2011.6.139.13.3.6.1.5',
|
||||
'hwWlanApWiredPortLldpRemPortId' => '1.3.6.1.4.1.2011.6.139.13.3.6.1.6',
|
||||
'hwWlanApWiredPortLldpRemPortDesc' => '1.3.6.1.4.1.2011.6.139.13.3.6.1.7',
|
||||
'hwWlanApWiredPortLldpRemSysName' => '1.3.6.1.4.1.2011.6.139.13.3.6.1.8',
|
||||
'hwWlanApWiredPortLldpRemSysDesc' => '1.3.6.1.4.1.2011.6.139.13.3.6.1.9',
|
||||
'hwWlanApWiredPortLldpRemSysCapSupported' => '1.3.6.1.4.1.2011.6.139.13.3.6.1.10',
|
||||
'hwWlanApWiredPortLldpRemSysCapEnabled' => '1.3.6.1.4.1.2011.6.139.13.3.6.1.11',
|
||||
'hwWlanApWiredPortLldpRemLocalApId' => '1.3.6.1.4.1.2011.6.139.13.3.6.1.12',
|
||||
'hwWlanApWiredPortLldpRemManAddrTable' => '1.3.6.1.4.1.2011.6.139.13.3.7',
|
||||
'hwWlanApWiredPortLldpRemManAddrEntry' => '1.3.6.1.4.1.2011.6.139.13.3.7.1',
|
||||
'hwWlanApWiredPortLldpRemManAddrSubtype' => '1.3.6.1.4.1.2011.6.139.13.3.7.1.1',
|
||||
'hwWlanApWiredPortLldpRemManAddr' => '1.3.6.1.4.1.2011.6.139.13.3.7.1.2',
|
||||
'hwWlanApWiredPortLldpRemManAddrIfSubtype' => '1.3.6.1.4.1.2011.6.139.13.3.7.1.3',
|
||||
'hwWlanApWiredPortLldpRemManAddrIfId' => '1.3.6.1.4.1.2011.6.139.13.3.7.1.4',
|
||||
'hwWlanApWiredPortLldpRemManAddrOID' => '1.3.6.1.4.1.2011.6.139.13.3.7.1.5',
|
||||
'hwWlanApOnlineFailTable' => '1.3.6.1.4.1.2011.6.139.13.3.8',
|
||||
'hwWlanApOnlineFailEntry' => '1.3.6.1.4.1.2011.6.139.13.3.8.1',
|
||||
'hwWlanApOnlineFailMac' => '1.3.6.1.4.1.2011.6.139.13.3.8.1.1',
|
||||
'hwWlanApOnlineFailTime' => '1.3.6.1.4.1.2011.6.139.13.3.8.1.2',
|
||||
'hwWlanApOnlineFailReason' => '1.3.6.1.4.1.2011.6.139.13.3.8.1.3',
|
||||
'hwWlanApOnlineFailRowStatus' => '1.3.6.1.4.1.2011.6.139.13.3.8.1.4',
|
||||
'hwWlanApOnlineFailInfo' => '1.3.6.1.4.1.2011.6.139.13.3.8.1.5',
|
||||
'hwWlanApOfflineTable' => '1.3.6.1.4.1.2011.6.139.13.3.9',
|
||||
'hwWlanApOfflineEntry' => '1.3.6.1.4.1.2011.6.139.13.3.9.1',
|
||||
'hwWlanApOfflineMac' => '1.3.6.1.4.1.2011.6.139.13.3.9.1.1',
|
||||
'hwWlanApOfflineTime' => '1.3.6.1.4.1.2011.6.139.13.3.9.1.2',
|
||||
'hwWlanApOfflineReason' => '1.3.6.1.4.1.2011.6.139.13.3.9.1.3',
|
||||
'hwWlanApOfflineRowStatus' => '1.3.6.1.4.1.2011.6.139.13.3.9.1.4',
|
||||
'hwWlanApOfflineInfo' => '1.3.6.1.4.1.2011.6.139.13.3.9.1.5',
|
||||
'hwWlanIDIndexedApTable' => '1.3.6.1.4.1.2011.6.139.13.3.10',
|
||||
'hwWlanIDIndexedApEntry' => '1.3.6.1.4.1.2011.6.139.13.3.10.1',
|
||||
'hwWlanIDIndexedApId' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.1',
|
||||
'hwWlanIDIndexedApMac' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.2',
|
||||
'hwWlanIDIndexedApSn' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.3',
|
||||
'hwWlanIDIndexedApTypeInfo' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.4',
|
||||
'hwWlanIDIndexedApName' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.5',
|
||||
'hwWlanIDIndexedApGroup' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.6',
|
||||
'hwWlanIDIndexedApRunState' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.7',
|
||||
'hwWlanIDIndexedApRunStateDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanIDIndexedApRunState',
|
||||
'hwWlanIDIndexedApSoftwareVersion' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.8',
|
||||
'hwWlanIDIndexedApHardwareVersion' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.9',
|
||||
'hwWlanIDIndexedApCpuType' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.10',
|
||||
'hwWlanIDIndexedApCpufrequency' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.11',
|
||||
'hwWlanIDIndexedApMemoryType' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.12',
|
||||
'hwWlanIDIndexedApDomain' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.13',
|
||||
'hwWlanIDIndexedApIpAddress' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.14',
|
||||
'hwWlanIDIndexedApIpNetMask' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.15',
|
||||
'hwWlanIDIndexedApGatewayIp' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.16',
|
||||
'hwWlanIDIndexedApMemorySize' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.17',
|
||||
'hwWlanIDIndexedApFlashSize' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.18',
|
||||
'hwWlanIDIndexedApRunTime' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.19',
|
||||
'hwWlanIDIndexedApAdminOper' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.20',
|
||||
'hwWlanIDIndexedApAdminOperDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanIDIndexedApAdminOper',
|
||||
'hwWlanIDIndexedApDNS' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.21',
|
||||
'hwWlanIDIndexedApOnlineTime' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.22',
|
||||
'hwWlanIDIndexedApSysSoftwareDesc' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.23',
|
||||
'hwWlanIDIndexedApSysHardtwareDesc' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.24',
|
||||
'hwWlanIDIndexedApSysManufacture' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.25',
|
||||
'hwWlanIDIndexedApSysSoftwareName' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.26',
|
||||
'hwWlanIDIndexedApSysSoftwareVendor' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.27',
|
||||
'hwWlanIDIndexedApBomCode' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.28',
|
||||
'hwWlanIDIndexedApIpv6Address' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.29',
|
||||
'hwWlanIDIndexedApIpv6NetMask' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.30',
|
||||
'hwWlanIDIndexedApGatewayIpv6' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.31',
|
||||
'hwWlanIDIndexedApIpv6DNS' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.32',
|
||||
'hwWlanIDIndexedApProtectAcIPv6Addr' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.33',
|
||||
'hwWlanIDIndexedApBootCountTotal' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.34',
|
||||
'hwWlanIDIndexedApBootCountPowerOff' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.35',
|
||||
'hwWlanIDIndexedApBootCountClear' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.36',
|
||||
'hwWlanIDIndexedApElectronicLabel' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.37',
|
||||
'hwWlanIDIndexedApWiredPortNum' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.38',
|
||||
'hwWlanIDIndexedApWiredPortMtu' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.39',
|
||||
'hwWlanIDIndexedApWiredPortMac' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.40',
|
||||
'hwWlanIDIndexedApMemoryUseRate' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.41',
|
||||
'hwWlanIDIndexedApCpuUseRate' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.42',
|
||||
'hwWlanIDIndexedApFlashFreeSize' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.43',
|
||||
'hwWlanIDIndexedApTemperature' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.44',
|
||||
'hwWlanIDIndexedApOnlineUserNum' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.45',
|
||||
'hwWlanIDIndexedApDualBandAssoc5gStaNum' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.46',
|
||||
'hwWlanIDIndexedApDualBandStaNum' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.47',
|
||||
'hwWlanIDIndexedApStaOnlineFailRatio' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.48',
|
||||
'hwWlanIDIndexedApStaOfflineRatio' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.49',
|
||||
'hwWlanIDIndexedApStickyClientRatio' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.50',
|
||||
'hwWlanIDIndexedApUpEthPortSpeed' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.51',
|
||||
'hwWlanIDIndexedApUpEthPortSpeedDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanIDIndexedApUpEthPortSpeed',
|
||||
'hwWlanIDIndexedApUpEthPortSpeedMode' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.52',
|
||||
'hwWlanIDIndexedApUpEthPortSpeedModeDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanIDIndexedApUpEthPortSpeedMode',
|
||||
'hwWlanIDIndexedApUpEthPortDuplex' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.53',
|
||||
'hwWlanIDIndexedApUpEthPortDuplexDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanIDIndexedApUpEthPortDuplex',
|
||||
'hwWlanIDIndexedApUpEthPortDuplexMode' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.54',
|
||||
'hwWlanIDIndexedApUpEthPortDuplexModeDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanIDIndexedApUpEthPortDuplexMode',
|
||||
'hwWlanIDIndexedApUpPortSpeed' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.55',
|
||||
'hwWlanIDIndexedAPUpPortPER' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.56',
|
||||
'hwWlanIDIndexedEthportUpRate' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.57',
|
||||
'hwWlanIDIndexedEthportDownRate' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.58',
|
||||
'hwWlanIDIndexedApAirportUpTraffic' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.59',
|
||||
'hwWlanIDIndexedApAirportDwTraffic' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.60',
|
||||
'hwWlanIDIndexedApEthportDwTraffic' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.61',
|
||||
'hwWlanIDIndexedApEthportUpTraffic' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.62',
|
||||
'hwWlanIDIndexedApUpPortRecvPackets' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.63',
|
||||
'hwWlanIDIndexedApUpPortSendPackets' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.64',
|
||||
'hwWlanIDIndexedApUpPortRecvBytes' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.65',
|
||||
'hwWlanIDIndexedApUpPortSendBytes' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.66',
|
||||
'hwWlanIDIndexedCentralApId' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.67',
|
||||
'hwWlanIDIndexedCentralApMac' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.68',
|
||||
'hwWlanIDIndexedCentralApName' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.69',
|
||||
'hwWlanIDIndexedApRowstatus' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.70',
|
||||
'hwWlanIDIndexedApSDCardSize' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.71',
|
||||
'hwWlanIDIndexedAPLongitude' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.72',
|
||||
'hwWlanIDIndexedAPLatitude' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.73',
|
||||
'hwWlanIDIndexedAPUUIDString' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.74',
|
||||
'hwWlanIDIndexedAPUUIDHex' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.75',
|
||||
'hwWlanIDIndexedApChannelLoadMode' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.76',
|
||||
'hwWlanIDIndexedApChannelLoadModeDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanIDIndexedApChannelLoadMode',
|
||||
'hwWlanIDIndexedAPPoeWorkmode' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.77',
|
||||
'hwWlanIDIndexedAPPoeWorkmodeDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanIDIndexedAPPoeWorkmode',
|
||||
'hwWlanIDIndexedAPPoeExpectedWorkmode' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.78',
|
||||
'hwWlanIDIndexedAPPoeExpectedWorkmodeDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanIDIndexedAPPoeExpectedWorkmode',
|
||||
'hwWlanIDIndexedApTotalOnlineTime' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.79',
|
||||
'hwWlanIDIndexedApDiscoverTime' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.80',
|
||||
'hwWlanIDIndexedApSiteCode' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.81',
|
||||
'hwWlanIDIndexedApDomainName' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.82',
|
||||
'hwWlanIDIndexedApBranchGroup' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.83',
|
||||
'hwWlanIDIndexedApNatIpAddress' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.84',
|
||||
'hwWlanIDIndexedApStaOnlineFailStatistics' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.85',
|
||||
'hwWlanIDIndexedApStaOfflineStatistics' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.86',
|
||||
'hwWlanIDIndexedAPPowerSupplyState' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.87',
|
||||
'hwWlanIDIndexedAPPowerSupplyStateDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanIDIndexedAPPowerSupplyState',
|
||||
'hwWlanIDIndexedApMajorString' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.88',
|
||||
'hwWlanIDIndexedApMajorHex' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.89',
|
||||
'hwWlanIDIndexedApMajorDecimal' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.90',
|
||||
'hwWlanIDIndexedApMinorString' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.91',
|
||||
'hwWlanIDIndexedApMinorHex' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.92',
|
||||
'hwWlanIDIndexedApMinorDecimal' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.93',
|
||||
'hwWlanIDIndexedApReferenceRSSI' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.94',
|
||||
'hwWlanIDIndexedApEnvironmentTemperature' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.95',
|
||||
'hwWlanIDIndexedApCpuTemperature' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.96',
|
||||
'hwWlanIDIndexedApNpTemperature' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.97',
|
||||
'hwWlanIDIndexedApZoneName' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.98',
|
||||
'hwWlanIDIndexedApDataLinkState' => '1.3.6.1.4.1.2011.6.139.13.3.10.1.99',
|
||||
'hwWlanIDIndexedApDataLinkStateDefinition' => 'HUAWEI-WLAN-AP-MIB::hwWlanIDIndexedApDataLinkState',
|
||||
'hwWlanApOnlineFailReasonTable' => '1.3.6.1.4.1.2011.6.139.13.3.11',
|
||||
'hwWlanApOnlineFailReasonEntry' => '1.3.6.1.4.1.2011.6.139.13.3.11.1',
|
||||
'hwWlanApOnlineFailReasonIndex' => '1.3.6.1.4.1.2011.6.139.13.3.11.1.1',
|
||||
'hwWlanApOnlineFailReasonDesc' => '1.3.6.1.4.1.2011.6.139.13.3.11.1.2',
|
||||
'hwWlanApOnlineFailReasonCount' => '1.3.6.1.4.1.2011.6.139.13.3.11.1.3',
|
||||
'hwWlanApOfflineReasonTable' => '1.3.6.1.4.1.2011.6.139.13.3.12',
|
||||
'hwWlanApOfflineReasonEntry' => '1.3.6.1.4.1.2011.6.139.13.3.12.1',
|
||||
'hwWlanApOfflineReasonIndex' => '1.3.6.1.4.1.2011.6.139.13.3.12.1.1',
|
||||
'hwWlanApOfflineReasonDesc' => '1.3.6.1.4.1.2011.6.139.13.3.12.1.2',
|
||||
'hwWlanApOfflineReasonCount' => '1.3.6.1.4.1.2011.6.139.13.3.12.1.3',
|
||||
'hwWlanAPConformance' => '1.3.6.1.4.1.2011.6.139.13.4',
|
||||
'hwWlanAPCompliances' => '1.3.6.1.4.1.2011.6.139.13.4.1',
|
||||
'hwWlanAPObjectGroups' => '1.3.6.1.4.1.2011.6.139.13.4.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'HUAWEI-WLAN-AP-MIB'} = {
|
||||
'hwWlanIDIndexedApDataLinkState' => {
|
||||
'1' => 'down',
|
||||
'2' => 'run',
|
||||
'3' => 'noneed',
|
||||
},
|
||||
'hwWlanApTypeOperate' => {
|
||||
'1' => 'add',
|
||||
'2' => 'delete',
|
||||
},
|
||||
'hwWlanIDIndexedApUpEthPortSpeedMode' => {
|
||||
'1' => 'auto',
|
||||
'2' => 'forced',
|
||||
},
|
||||
'hwWlanApUpEthPortSpeedMode' => {
|
||||
'1' => 'auto',
|
||||
'2' => 'forced',
|
||||
},
|
||||
'hwWlanIDIndexedApChannelLoadMode' => {
|
||||
'1' => 'indoor',
|
||||
'2' => 'outdoor',
|
||||
'3' => 'outToindoor',
|
||||
},
|
||||
'hwWlanIDIndexedAPPoeExpectedWorkmode' => {
|
||||
'1' => 'af',
|
||||
'2' => 'at',
|
||||
'3' => 'bt',
|
||||
'4' => 'invalid',
|
||||
},
|
||||
'hwWlanApRunState' => {
|
||||
'1' => 'idle',
|
||||
'2' => 'autofind',
|
||||
'3' => 'typeNotMatch',
|
||||
'4' => 'fault',
|
||||
'5' => 'config',
|
||||
'6' => 'configFailed',
|
||||
'7' => 'download',
|
||||
'8' => 'normal',
|
||||
'9' => 'committing',
|
||||
'10' => 'commitFailed',
|
||||
'11' => 'standby',
|
||||
'12' => 'verMismatch',
|
||||
'13' => 'nameConflicted',
|
||||
'14' => 'invalid',
|
||||
'15' => 'countryCodeMismatch',
|
||||
},
|
||||
'hwWlanApMultiWiredPortNegotiation' => {
|
||||
'1' => 'auto',
|
||||
'2' => 'forced',
|
||||
},
|
||||
'hwWlanApTypeWiredPortType' => {
|
||||
'1' => 'fe',
|
||||
'2' => 'ge',
|
||||
'3' => 'gpon',
|
||||
'4' => 'epon',
|
||||
'5' => 'adsl2plus',
|
||||
'6' => 'ethTrunk',
|
||||
'7' => 'multige',
|
||||
'8' => 'xge',
|
||||
},
|
||||
'hwWlanAPPowerSupplyState' => {
|
||||
'1' => 'full',
|
||||
'2' => 'disabled',
|
||||
'3' => 'limited',
|
||||
'4' => 'invalid',
|
||||
},
|
||||
'hwWlanApUpEthPortDuplexMode' => {
|
||||
'1' => 'auto',
|
||||
'2' => 'forced',
|
||||
},
|
||||
'hwWlanIDIndexedAPPoeWorkmode' => {
|
||||
'1' => 'af',
|
||||
'2' => 'at',
|
||||
'3' => 'bt',
|
||||
'4' => 'invalid',
|
||||
},
|
||||
'hwWlanApTypeAttributesAbnormalCheckResult' => {
|
||||
'1' => 'risk',
|
||||
'2' => 'fail',
|
||||
},
|
||||
'hwWlanApWiredPortType' => {
|
||||
'1' => 'fe',
|
||||
'2' => 'ge',
|
||||
'3' => 'gpon',
|
||||
'4' => 'epon',
|
||||
'5' => 'adsl2plus',
|
||||
'6' => 'trunk',
|
||||
'7' => 'multige',
|
||||
'8' => 'xge',
|
||||
},
|
||||
'hwWlanApTypeUndefinedOperate' => {
|
||||
'1' => 'delete',
|
||||
},
|
||||
'hwWlanApTypeExternalAntenna' => {
|
||||
'1' => 'notSupport',
|
||||
'2' => 'support',
|
||||
},
|
||||
'hwWlanApWiredPortTrunkActiveFlag' => {
|
||||
'1' => 'disable',
|
||||
'2' => 'enable',
|
||||
'3' => 'invalid',
|
||||
},
|
||||
'hwWlanIDIndexedApRunState' => {
|
||||
'1' => 'idle',
|
||||
'2' => 'autofind',
|
||||
'3' => 'typeNotMatch',
|
||||
'4' => 'fault',
|
||||
'5' => 'config',
|
||||
'6' => 'configFailed',
|
||||
'7' => 'download',
|
||||
'8' => 'normal',
|
||||
'9' => 'committing',
|
||||
'10' => 'commitFailed',
|
||||
'11' => 'standby',
|
||||
'12' => 'verMismatch',
|
||||
'13' => 'nameConflicted',
|
||||
'14' => 'invalid',
|
||||
'15' => 'countryCodeMismatch',
|
||||
},
|
||||
'hwWlanApDataLinkState' => {
|
||||
'1' => 'down',
|
||||
'2' => 'run',
|
||||
'3' => 'noneed',
|
||||
},
|
||||
'hwWlanApWiredPortState' => {
|
||||
'1' => 'down',
|
||||
'2' => 'up',
|
||||
},
|
||||
'hwWlanApTypeRadioType' => {
|
||||
'1' => 'wlan80211a',
|
||||
'2' => 'wlan80211b',
|
||||
'3' => 'wlan80211g',
|
||||
'4' => 'wlan80211bg',
|
||||
'5' => 'wlan80211an',
|
||||
'6' => 'wlan80211bgn',
|
||||
'7' => 'wlan80211abgn',
|
||||
'8' => 'wlan80211ac',
|
||||
'9' => 'wlan80211anac',
|
||||
'10' => 'wlan80211bgnax',
|
||||
'11' => 'wlan80211anacax',
|
||||
'12' => 'wlan80211ax',
|
||||
},
|
||||
'hwWlanIDIndexedApUpEthPortDuplex' => {
|
||||
'1' => 'half',
|
||||
'2' => 'full',
|
||||
},
|
||||
'hwWlanAPPoeExpectedWorkmode' => {
|
||||
'1' => 'af',
|
||||
'2' => 'at',
|
||||
'3' => 'bt',
|
||||
'4' => 'invalid',
|
||||
},
|
||||
'hwWlanApMultiWiredPortDuplex' => {
|
||||
'1' => 'half',
|
||||
'2' => 'full',
|
||||
},
|
||||
'hwWlanApAdminOper' => {
|
||||
'1' => 'reset',
|
||||
'3' => 'manufacturerConfig',
|
||||
},
|
||||
'hwWlanIDIndexedApUpEthPortSpeed' => {
|
||||
'1' => 'speed10',
|
||||
'2' => 'speed100',
|
||||
'3' => 'speed1000',
|
||||
'4' => 'speed10000',
|
||||
},
|
||||
'hwWlanApWiredPortDot1xAuthState' => {
|
||||
'1' => 'init',
|
||||
'2' => 'authenticating',
|
||||
'3' => 'success',
|
||||
'4' => 'fail',
|
||||
'255' => 'invalid',
|
||||
},
|
||||
'hwWlanApTypeAutoCreateMethod' => {
|
||||
'1' => 'createbyid',
|
||||
'2' => 'createbytype',
|
||||
'3' => 'createall',
|
||||
},
|
||||
'hwApPoePdPriority' => {
|
||||
'1' => 'critical',
|
||||
'2' => 'high',
|
||||
'3' => 'low',
|
||||
},
|
||||
'hwApPoePortPriority' => {
|
||||
'1' => 'critical',
|
||||
'2' => 'high',
|
||||
'3' => 'low',
|
||||
},
|
||||
'hwWlanIDIndexedApUpEthPortDuplexMode' => {
|
||||
'1' => 'auto',
|
||||
'2' => 'forced',
|
||||
},
|
||||
'hwWlanApMultiWiredPortMode' => {
|
||||
'1' => 'root',
|
||||
'2' => 'endpoint',
|
||||
'3' => 'middle',
|
||||
'256' => 'null',
|
||||
},
|
||||
'hwWlanIDIndexedAPPowerSupplyState' => {
|
||||
'1' => 'full',
|
||||
'2' => 'disabled',
|
||||
'3' => 'limited',
|
||||
'4' => 'invalid',
|
||||
},
|
||||
'hwWlanApUpEthPortDuplex' => {
|
||||
'1' => 'half',
|
||||
'2' => 'full',
|
||||
},
|
||||
'hwWlanAPPoeWorkmode' => {
|
||||
'1' => 'af',
|
||||
'2' => 'at',
|
||||
'3' => 'bt',
|
||||
'4' => 'invalid',
|
||||
},
|
||||
'hwWlanApTypeAttributesAbnormalCheckReason' => {
|
||||
'1' => 'rangeconflict',
|
||||
'2' => 'lostattributes',
|
||||
},
|
||||
'hwWlanIDIndexedApAdminOper' => {
|
||||
'1' => 'reset',
|
||||
'3' => 'manufacturerConfig',
|
||||
},
|
||||
'hwWlanApPingResultFlag' => {
|
||||
'1' => 'false',
|
||||
'2' => 'true',
|
||||
},
|
||||
'hwWlanApUpEthPortSpeed' => {
|
||||
'1' => 'speed10',
|
||||
'2' => 'speed100',
|
||||
'3' => 'speed1000',
|
||||
'4' => 'speed10000',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,241 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::HUAWEIWLANAPRADIOMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'HUAWEI-WLAN-AP-RADIO-MIB'} = {
|
||||
url => '',
|
||||
name => 'HUAWEI-WLAN-AP-RADIO-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'HUAWEI-WLAN-AP-RADIO-MIB'} =
|
||||
'1.3.6.1.4.1.2011.6.139.16';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'HUAWEI-WLAN-AP-RADIO-MIB'} = {
|
||||
'hwWlanRadio' => '1.3.6.1.4.1.2011.6.139.16',
|
||||
'hwWlanRadioObjects' => '1.3.6.1.4.1.2011.6.139.16.1',
|
||||
'hwWlanRadioTraps' => '1.3.6.1.4.1.2011.6.139.16.1.1',
|
||||
'hwWlanRadioTrap' => '1.3.6.1.4.1.2011.6.139.16.1.1.1',
|
||||
'hwWlanRadioTrapObjects' => '1.3.6.1.4.1.2011.6.139.16.1.1.2',
|
||||
'hwWlanRadioActualChannel' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.1',
|
||||
'hwWlanRadioActualChannelBandwidth' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.2',
|
||||
'hwWlanRadioActualChannelBandwidthDefinition' => 'HUAWEI-WLAN-AP-RADIO-MIB::hwWlanRadioActualChannelBandwidth',
|
||||
'hwWlanRadioActualPowerLevel' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.3',
|
||||
'hwWlanRadioActualAntennaGain' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.4',
|
||||
'hwWlanRadioLegitimateAntennaGain' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.5',
|
||||
'hwWlanRadioChannelChangedReason' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.6',
|
||||
'hwWlanRadioChannelChangedReasonDefinition' => 'HUAWEI-WLAN-AP-RADIO-MIB::hwWlanRadioChannelChangedReason',
|
||||
'hwWlanRadioChannelChangedReasonStr' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.7',
|
||||
'hwWlanRadioConflictRate' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.8',
|
||||
'hwWlanApMonitorMode' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.9',
|
||||
'hwWlanApPreMonitorMode' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.10',
|
||||
'hwWlanApChannel' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.11',
|
||||
'hwWlanApInterfBssid' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.12',
|
||||
'hwWlanInterfStaMac' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.13',
|
||||
'hwWlanRadioDownCause' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.14',
|
||||
'hwWlanInterfApChannel' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.15',
|
||||
'hwWlanInterfRSSI' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.16',
|
||||
'hwWlanWIDSTrapInfoAPName' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.17',
|
||||
'hwWlanWIDSTrapInfoRadioId' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.18',
|
||||
'hwWlanWIDSTrapInfoAPMAC' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.19',
|
||||
'hwWlanWIDSTrapInfoRogueMAC' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.20',
|
||||
'hwWlanWIDSTrapInfoRogueSSId' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.21',
|
||||
'hwWlanWIDSTrapInfoRogueType' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.22',
|
||||
'hwWlanWIDSTrapInfoRogueRSSI' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.23',
|
||||
'hwWlanWIDSTrapInfoRogueChanID' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.24',
|
||||
'hwWlanRadioDownCauseStr' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.25',
|
||||
'hwWlanRadioUacUserNum' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.26',
|
||||
'hwWlanRadioPreActualChannel' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.27',
|
||||
'hwWlanApRadioNotifyPara' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.28',
|
||||
'hwWlanRadioMngChannelBandwidth' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.29',
|
||||
'hwWlanRadioMngChannelBandwidthDefinition' => 'HUAWEI-WLAN-AP-RADIO-MIB::hwWlanRadioMngChannelBandwidth',
|
||||
'hwWlanRadioMngChannel' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.30',
|
||||
'hwWlanRadioMngPowerLevel' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.31',
|
||||
'hwWlanWIDSTrapInfoAPId' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.32',
|
||||
'hwWlanRadioSecondActualChannel' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.33',
|
||||
'hwWlanRadioPreSecondActualChannel' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.34',
|
||||
'hwWlanRadioMngSecondChannel' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.35',
|
||||
'hwWlanApMonitorModeDesc' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.36',
|
||||
'hwWlanApPreMonitorModeDesc' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.37',
|
||||
'hwWlanRadioLegitimateEirp' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.38',
|
||||
'hwWlanRadioEnvDetReason' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.39',
|
||||
'hwRadioChannelChangedHasRadarChannel' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.40',
|
||||
'hwWlanRadioStaNum' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.41',
|
||||
'hwWlanRadioMaxStaNum' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.42',
|
||||
'hwWlanRadioBadChannel' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.43',
|
||||
'hwWlanRadioInterfereRate' => '1.3.6.1.4.1.2011.6.139.16.1.1.2.44',
|
||||
'hwWlanRadioInfoTable' => '1.3.6.1.4.1.2011.6.139.16.1.2',
|
||||
'hwWlanRadioInfoEntry' => '1.3.6.1.4.1.2011.6.139.16.1.2.1',
|
||||
'hwWlanRadioInfoApMac' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.1',
|
||||
'hwWlanRadioID' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.2',
|
||||
'hwWlanRadioInfoApName' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.3',
|
||||
'hwWlanRadioType' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.4',
|
||||
'hwWlanRadioFreqType' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.5',
|
||||
'hwWlanRadioFreqTypeDefinition' => 'HUAWEI-WLAN-AP-RADIO-MIB::hwWlanRadioFreqType',
|
||||
'hwWlanRadioRunState' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.6',
|
||||
'hwWlanRadioRunStateDefinition' => 'HUAWEI-WLAN-AP-RADIO-MIB::hwWlanRadioRunState',
|
||||
'hwWlanRadioWorkingChannel' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.7',
|
||||
'hwWlanRadioWorkingPowerLevel' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.8',
|
||||
'hwWlanRadioWorkingPower' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.9',
|
||||
'hwWlanRadioWorkingChannelBandwidth' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.10',
|
||||
'hwWlanRadioWorkingChannelBandwidthDefinition' => 'HUAWEI-WLAN-AP-RADIO-MIB::hwWlanRadioWorkingChannelBandwidth',
|
||||
'hwWlanRadioWorkMode' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.11',
|
||||
'hwWlanRadioWorkModeDefinition' => 'HUAWEI-WLAN-AP-RADIO-MIB::hwWlanRadioWorkMode',
|
||||
'hwWlanRadioMaxTxPwrLvl' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.12',
|
||||
'hwWlanRadioPwrAttRange' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.13',
|
||||
'hwWlanRadioPwrAttValue' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.14',
|
||||
'hwWlanRadioAntennaGain' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.15',
|
||||
'hwWlanRadioDecsption' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.16',
|
||||
'hwWlanRadioPortType' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.17',
|
||||
'hwWlanRadioMaxMtu' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.18',
|
||||
'hwWlanRadioBandwidth' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.19',
|
||||
'hwWlanRadioMac' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.20',
|
||||
'hwWlanRadioLastChange' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.21',
|
||||
'hwWlanRadioInfoUpDownTimes' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.22',
|
||||
'hwWlanRadioPER' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.23',
|
||||
'hwWlanRadioNoise' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.24',
|
||||
'hwWlanRadioChUtilizationRate' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.25',
|
||||
'hwWlanRadioChannelFreeRate' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.26',
|
||||
'hwWlanRadioTxRatio' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.27',
|
||||
'hwWlanRadioRxRatio' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.28',
|
||||
'hwWlanRadioChInterferenceRate' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.29',
|
||||
'hwWlanRadioRcvFrames' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.30',
|
||||
'hwWlanRadioRcvBytes' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.31',
|
||||
'hwWlanRadioRecvRate' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.32',
|
||||
'hwWlanRadioPeriodRcvDropFrames' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.33',
|
||||
'hwWlanRadioPeriodRcvErrFrames' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.34',
|
||||
'hwWlanRadioSendFrames' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.35',
|
||||
'hwWlanRadioSendBytes' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.36',
|
||||
'hwWlanRadioSendRate' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.37',
|
||||
'hwWlanRadioPeriodRetryFrames' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.38',
|
||||
'hwWlanRadioPeriodSendDropFrames' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.39',
|
||||
'hwWlanRadioOnlineStaCnt' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.40',
|
||||
'hwWlanRadioStaAveSignalStrength' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.41',
|
||||
'hwWlanRadioPerformanceStatOperMode' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.42',
|
||||
'hwWlanRadioPerformanceStatOperModeDefinition' => 'HUAWEI-WLAN-AP-RADIO-MIB::hwWlanRadioPerformanceStatOperMode',
|
||||
'hwWlanRadioPeriodRcvFrames' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.43',
|
||||
'hwWlanRadioPeriodSendFrames' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.44',
|
||||
'hwWlanRadioActualEIRP' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.45',
|
||||
'hwWlanRadioMaximumEIRP' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.46',
|
||||
'hwWlanRadioSpectrumSwitchFlag' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.47',
|
||||
'hwWlanRadioSpectrumSwitchFlagDefinition' => 'HUAWEI-WLAN-AP-RADIO-MIB::hwWlanRadioSpectrumSwitchFlag',
|
||||
'hwWlanRadioInfoApId' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.48',
|
||||
'hwWlanRadioRetryFrames' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.49',
|
||||
'hwWlanRadioRcvErrFrames' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.50',
|
||||
'hwWlanRadioRcvDropFrames' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.51',
|
||||
'hwWlanRadioWorkingSecondChannel' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.52',
|
||||
'hwWlanRadioChannelSelectMode' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.53',
|
||||
'hwWlanRadioChannelSelectModeDefinition' => 'HUAWEI-WLAN-AP-RADIO-MIB::hwWlanRadioChannelSelectMode',
|
||||
'hwWlanRadioTxPowerSelectMode' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.54',
|
||||
'hwWlanRadioTxPowerSelectModeDefinition' => 'HUAWEI-WLAN-AP-RADIO-MIB::hwWlanRadioTxPowerSelectMode',
|
||||
'hwWlanRadioApGroup' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.55',
|
||||
'hwWlanRadioFlexibleRadioStatus' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.56',
|
||||
'hwWlanRadioFlexibleRadioStatusDefinition' => 'HUAWEI-WLAN-AP-RADIO-MIB::hwWlanRadioFlexibleRadioStatus',
|
||||
'hwWlanRadioAutoBandwidthSelectSwitch' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.57',
|
||||
'hwWlanRadioAutoBandwidthSelectSwitchDefinition' => 'HUAWEI-WLAN-AP-RADIO-MIB::hwWlanRadioAutoBandwidthSelectSwitch',
|
||||
'hwWlanRadioReferenceDataAnalysis' => '1.3.6.1.4.1.2011.6.139.16.1.2.1.58',
|
||||
'hwWlanRadioReferenceDataAnalysisDefinition' => 'HUAWEI-WLAN-AP-RADIO-MIB::hwWlanRadioReferenceDataAnalysis',
|
||||
'hwWlanRadioQueryPowerlevelTable' => '1.3.6.1.4.1.2011.6.139.16.1.3',
|
||||
'hwWlanRadioQueryPowerlevelEntry' => '1.3.6.1.4.1.2011.6.139.16.1.3.1',
|
||||
'hwWlanRadioQueryPowerlevelApMac' => '1.3.6.1.4.1.2011.6.139.16.1.3.1.1',
|
||||
'hwWlanRadioQueryPowerlevelRadioId' => '1.3.6.1.4.1.2011.6.139.16.1.3.1.2',
|
||||
'hwWlanRadioQueryPowerlevelChannel' => '1.3.6.1.4.1.2011.6.139.16.1.3.1.3',
|
||||
'hwWlanRadioQueryPowerlevelBandwidth' => '1.3.6.1.4.1.2011.6.139.16.1.3.1.4',
|
||||
'hwWlanRadioQueryPowerlevelBandwidthDefinition' => 'HUAWEI-WLAN-AP-RADIO-MIB::hwWlanRadioQueryPowerlevelBandwidth',
|
||||
'hwWlanRadioQueryPowerlevelMax' => '1.3.6.1.4.1.2011.6.139.16.1.3.1.5',
|
||||
'hwWlanRadioUncontrolAPInfTable' => '1.3.6.1.4.1.2011.6.139.16.1.4',
|
||||
'hwWlanRadioUncontrolAPInfEntry' => '1.3.6.1.4.1.2011.6.139.16.1.4.1',
|
||||
'hwWlanUncontrolApId' => '1.3.6.1.4.1.2011.6.139.16.1.4.1.1',
|
||||
'hwWlanUncontrolApBSSID' => '1.3.6.1.4.1.2011.6.139.16.1.4.1.2',
|
||||
'hwWlanAuthAPId' => '1.3.6.1.4.1.2011.6.139.16.1.4.1.3',
|
||||
'hwWlanUncontrolApChannel' => '1.3.6.1.4.1.2011.6.139.16.1.4.1.4',
|
||||
'hwWlanUncontrolApRSSI' => '1.3.6.1.4.1.2011.6.139.16.1.4.1.5',
|
||||
'hwWlanUncontrolApSSID' => '1.3.6.1.4.1.2011.6.139.16.1.4.1.6',
|
||||
'hwWlanRadioConformance' => '1.3.6.1.4.1.2011.6.139.16.3',
|
||||
'hwWlanRadioCompliances' => '1.3.6.1.4.1.2011.6.139.16.3.1',
|
||||
'hwWlanRadioObjectGroups' => '1.3.6.1.4.1.2011.6.139.16.3.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'HUAWEI-WLAN-AP-RADIO-MIB'} = {
|
||||
'hwWlanRadioActualChannelBandwidth' => {
|
||||
'1' => 'ht20',
|
||||
'2' => 'ht40Plus',
|
||||
'3' => 'ht40Minus',
|
||||
'4' => 'ht80',
|
||||
'5' => 'ht160',
|
||||
'255' => 'invalid',
|
||||
},
|
||||
'hwWlanRadioRunState' => {
|
||||
'1' => 'up',
|
||||
'2' => 'down',
|
||||
},
|
||||
'hwWlanRadioPerformanceStatOperMode' => {
|
||||
'1' => 'invalid',
|
||||
'2' => 'clearstatistic',
|
||||
},
|
||||
'hwWlanRadioChannelChangedReason' => {
|
||||
'1' => 'unknown',
|
||||
'2' => 'dfs',
|
||||
'3' => 'wds',
|
||||
'4' => 'config',
|
||||
'5' => 'calibrate',
|
||||
'6' => 'thirdGPP',
|
||||
'7' => 'iotCard',
|
||||
},
|
||||
'hwWlanRadioSpectrumSwitchFlag' => {
|
||||
'1' => 'disable',
|
||||
'2' => 'enable',
|
||||
},
|
||||
'hwWlanRadioMngChannelBandwidth' => {
|
||||
'1' => 'ht20',
|
||||
'2' => 'ht40Plus',
|
||||
'3' => 'ht40Minus',
|
||||
'4' => 'ht80',
|
||||
'5' => 'ht160',
|
||||
'255' => 'invalid',
|
||||
},
|
||||
'hwWlanRadioWorkingChannelBandwidth' => {
|
||||
'1' => 'ht20',
|
||||
'2' => 'ht40Plus',
|
||||
'3' => 'ht40Minus',
|
||||
'4' => 'ht80',
|
||||
'5' => 'ht160',
|
||||
'255' => 'unknown',
|
||||
},
|
||||
'hwWlanRadioTxPowerSelectMode' => {
|
||||
'1' => 'auto',
|
||||
'2' => 'manual',
|
||||
},
|
||||
'hwWlanRadioQueryPowerlevelBandwidth' => {
|
||||
'1' => 'ht20',
|
||||
'2' => 'ht40Plus',
|
||||
'3' => 'ht40Minus',
|
||||
'4' => 'ht80',
|
||||
},
|
||||
'hwWlanRadioFlexibleRadioStatus' => {
|
||||
'1' => 'redundant',
|
||||
'2' => 'nonredundant',
|
||||
'3' => 'switchmonitor',
|
||||
'4' => 'switchoff',
|
||||
'5' => 'switch5G',
|
||||
},
|
||||
'hwWlanRadioFreqType' => {
|
||||
'1' => 'frequency2G',
|
||||
'2' => 'frequency5G',
|
||||
},
|
||||
'hwWlanRadioChannelSelectMode' => {
|
||||
'1' => 'auto',
|
||||
'2' => 'manual',
|
||||
},
|
||||
'hwWlanRadioReferenceDataAnalysis' => {
|
||||
'1' => 'disable',
|
||||
'2' => 'enable',
|
||||
},
|
||||
'hwWlanRadioWorkMode' => {
|
||||
'1' => 'normal',
|
||||
'2' => 'monitor',
|
||||
'4' => 'dualBand',
|
||||
'5' => 'proxyScan',
|
||||
},
|
||||
'hwWlanRadioAutoBandwidthSelectSwitch' => {
|
||||
'1' => 'disable',
|
||||
'2' => 'enable',
|
||||
},
|
||||
};
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,447 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::HUAWEIWLANSTATIONMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'HUAWEI-WLAN-STATION-MIB'} = {
|
||||
url => '',
|
||||
name => 'HUAWEI-WLAN-STATION-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'HUAWEI-WLAN-STATION-MIB'} =
|
||||
'1.3.6.1.4.1.2011.6.139.18';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'HUAWEI-WLAN-STATION-MIB'} = {
|
||||
'hwWlanStation' => '1.3.6.1.4.1.2011.6.139.18',
|
||||
'hwWlanStationObjects' => '1.3.6.1.4.1.2011.6.139.18.1',
|
||||
'hwWlanStaTraps' => '1.3.6.1.4.1.2011.6.139.18.1.1',
|
||||
'hwWlanStaTrap' => '1.3.6.1.4.1.2011.6.139.18.1.1.1',
|
||||
'hwWlanStaTrapObjects' => '1.3.6.1.4.1.2011.6.139.18.1.1.2',
|
||||
'hwWlanStaAuthenticationMode' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.1',
|
||||
'hwWlanStaAuthenticationFailCause' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.2',
|
||||
'hwWlanStaAssociationFailCause' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.3',
|
||||
'hwWlanStaAssocBssid' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.4',
|
||||
'hwWlanStaFailCodeType' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.5',
|
||||
'hwWlanStaFailCodeTypeDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanStaFailCodeType',
|
||||
'hwWlanWepIDConflictTrapAPMAC' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.6',
|
||||
'hwWlanWepIDConflictTrapAPName' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.7',
|
||||
'hwWlanWepIDConflictTrapRadioId' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.8',
|
||||
'hwWlanWepIDConflictTrapPreSSID' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.9',
|
||||
'hwWlanWepIDConflictTrapCurrSSID' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.10',
|
||||
'hwWlanWepIDConflictTrapCipherIdx' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.11',
|
||||
'hwWlanWlanStaAuthEncryptMode' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.12',
|
||||
'hwWlanWlanVapAuthEncryptMode' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.13',
|
||||
'hwWlanStaAuthenticationFailCauseStr' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.14',
|
||||
'hwWlanStaAssociationFailCauseStr' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.15',
|
||||
'hwWlanSignalStrengthThreshold' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.16',
|
||||
'hwWlanStaTrapOccurTime' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.17',
|
||||
'hwWlanConflictIPAddress' => '1.3.6.1.4.1.2011.6.139.18.1.1.2.18',
|
||||
'hwWlanStationTable' => '1.3.6.1.4.1.2011.6.139.18.1.2',
|
||||
'hwWlanStationEntry' => '1.3.6.1.4.1.2011.6.139.18.1.2.1',
|
||||
'hwWlanStaMac' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.1',
|
||||
'hwWlanStaUsername' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.2',
|
||||
'hwWlanStaApMac' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.3',
|
||||
'hwWlanStaApName' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.4',
|
||||
'hwWlanStaApGroup' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.5',
|
||||
'hwWlanStaRadioId' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.6',
|
||||
'hwWlanStaAssocBand' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.7',
|
||||
'hwWlanStaSupportBand' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.8',
|
||||
'hwWlanStaAccessChannel' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.9',
|
||||
'hwWlanStaRfMode' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.10',
|
||||
'hwWlanStaRfModeDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanStaRfMode',
|
||||
'hwWlanStaHtMode' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.11',
|
||||
'hwWlanStaHtModeDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanStaHtMode',
|
||||
'hwWlanStaMcsVal' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.12',
|
||||
'hwWlanStaShortGIStatus' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.13',
|
||||
'hwWlanStaShortGIStatusDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanStaShortGIStatus',
|
||||
'hwWlanStaConnectRxRate' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.14',
|
||||
'hwWlanStaConnectTxRate' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.15',
|
||||
'hwWlanStaEssName' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.16',
|
||||
'hwWlanStaBSSID' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.17',
|
||||
'hwWlanStaSsid' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.18',
|
||||
'hwWlanStaStatus' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.19',
|
||||
'hwWlanStaStatusDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanStaStatus',
|
||||
'hwWlanStaAuthenMethod' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.20',
|
||||
'hwWlanStaAuthenMethodDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanStaAuthenMethod',
|
||||
'hwWlanStaEncryptMethod' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.21',
|
||||
'hwWlanStaEncryptMethodDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanStaEncryptMethod',
|
||||
'hwWlanStaQosMode' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.22',
|
||||
'hwWlanStaQosModeDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanStaQosMode',
|
||||
'hwWlanStaRoamStatus' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.23',
|
||||
'hwWlanStaRoamStatusDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanStaRoamStatus',
|
||||
'hwWlanStaVlan' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.24',
|
||||
'hwWlanStaIP' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.25',
|
||||
'hwWlanStaIPv6' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.26',
|
||||
'hwWlanStaGateway' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.27',
|
||||
'hwWlanStaAssocTime' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.28',
|
||||
'hwWlanStaAccessTime' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.29',
|
||||
'hwWlanStaOnlineTime' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.30',
|
||||
'hwWlanStaAccessOnlineTime' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.31',
|
||||
'hwWlanStaStatOperMode' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.32',
|
||||
'hwWlanStaStatOperModeDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanStaStatOperMode',
|
||||
'hwWlanStaWirelessStatRxFrames' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.33',
|
||||
'hwWlanStaWirelessRxBytes' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.34',
|
||||
'hwWlanStaWirelessRxRate' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.35',
|
||||
'hwWlanStaWirelessStatTxFrames' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.36',
|
||||
'hwWlanStaWirelessTxBytes' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.37',
|
||||
'hwWlanStaWirelessTxRate' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.38',
|
||||
'hwWlanStaPeriodSendDropFrames' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.39',
|
||||
'hwWlanStaPeriodReSendFrames' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.40',
|
||||
'hwWlanStaPeriodReSendBytes' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.41',
|
||||
'hwWlanStaRssi' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.42',
|
||||
'hwWlanStaNoise' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.43',
|
||||
'hwWlanStaSnrUs' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.44',
|
||||
'hwWlanStaRxPowerUs' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.45',
|
||||
'hwWlanStaChannelUtilRate' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.46',
|
||||
'hwWlanStaChannelBusyRate' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.47',
|
||||
'hwWlanStaChannelTxRatio' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.48',
|
||||
'hwWlanStaChannelRxRatio' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.49',
|
||||
'hwWlanStaChannelFreeRate' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.50',
|
||||
'hwWlanStaChannelInterfRate' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.51',
|
||||
'hwWlanStaPeriodSendFrames' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.52',
|
||||
'hwWlanStaApId' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.53',
|
||||
'hwWlanStationUapsdCapacity' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.54',
|
||||
'hwWlanStationPowerSavePercent' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.55',
|
||||
'hwWlanStaAssocStartTime' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.56',
|
||||
'hwWlanStaAssocSuccessTime' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.57',
|
||||
'hwWlanStaAuthStartTime' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.58',
|
||||
'hwWlanStaAuthSuccessTime' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.59',
|
||||
'hwWlanStaDhcpStartTime' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.60',
|
||||
'hwWlanStaDhcpSuccessTime' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.61',
|
||||
'hwWlanStaVHTCapable' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.62',
|
||||
'hwWlanStaVHTCapableDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanStaVHTCapable',
|
||||
'hwWlanStaVHTTxBFCapable' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.63',
|
||||
'hwWlanStaVHTTxBFCapableDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanStaVHTTxBFCapable',
|
||||
'hwWlanStaMUMIMOCapable' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.64',
|
||||
'hwWlanStaMUMIMOCapableDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanStaMUMIMOCapable',
|
||||
'hwWlanStaWpaStartTime' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.65',
|
||||
'hwWlanStaWpaSuccessTime' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.66',
|
||||
'hwWlanStaWirelessPacketDelay' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.67',
|
||||
'hwWlanStaAccessSuccessRate' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.68',
|
||||
'hwWlanStaTotalAccessTime' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.69',
|
||||
'hwWlanStaDelayStatus' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.70',
|
||||
'hwWlanStaDelayStatusDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanStaDelayStatus',
|
||||
'hwWlanStaAssocDuration' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.71',
|
||||
'hwWlanStaWpaDuration' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.72',
|
||||
'hwWlanStaAuthDuration' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.73',
|
||||
'hwWlanStaDhcpDuration' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.74',
|
||||
'hwWlanStationDevType' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.75',
|
||||
'hwWlanStaNaviACID' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.76',
|
||||
'hwWlanStaWirelessStatRxIPv6Frames' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.77',
|
||||
'hwWlanStaWirelessRxIPv6Bytes' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.78',
|
||||
'hwWlanStaWirelessStatTxIPv6Frames' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.79',
|
||||
'hwWlanStaWirelessTxIPv6Bytes' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.80',
|
||||
'hwWlanStaGatewayIPv6' => '1.3.6.1.4.1.2011.6.139.18.1.2.1.81',
|
||||
'hwWlanStationApStatTable' => '1.3.6.1.4.1.2011.6.139.18.1.3',
|
||||
'hwWlanStationApStatEntry' => '1.3.6.1.4.1.2011.6.139.18.1.3.1',
|
||||
'hwWlanApAssocStatApMac' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.1',
|
||||
'hwWlanTotalOnlineTime' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.2',
|
||||
'hwWlanTotalAssociatedStationCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.3',
|
||||
'hwWlanCurrAssociatedStationCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.4',
|
||||
'hwWlanAssociationRequestCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.5',
|
||||
'hwWlanAssociationRejectCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.6',
|
||||
'hwWlanAssociationFailedCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.7',
|
||||
'hwWlanReAssociationRequestCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.8',
|
||||
'hwWlanReAssociationRejectCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.9',
|
||||
'hwWlanReAssociationFailedCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.10',
|
||||
'hwWlanDisAssocOfUserNotifiedCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.11',
|
||||
'hwWlanDisAssocOfStaRoamCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.12',
|
||||
'hwWlanDisAssocOfStaAgeCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.13',
|
||||
'hwWlanDisAssocOfApUnableHandleCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.14',
|
||||
'hwWlanDisAssocOfOtherReasonsCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.15',
|
||||
'hwWlanAssocRequestCntByResource' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.16',
|
||||
'hwWlanStaExceptionalOfflineCnt' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.17',
|
||||
'hwWlanReAssociationSuccessCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.18',
|
||||
'hwWlanBSSNotSupportAssocFailCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.19',
|
||||
'hwWlanStaAccessRequestCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.20',
|
||||
'hwWlanStaAccessRequestFailedCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.21',
|
||||
'hwWlanStaAuthenRequestCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.22',
|
||||
'hwWlanStaAuthenRequestFailedCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.23',
|
||||
'hwWlanRefusedStaNumByResource' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.24',
|
||||
'hwWlanStaAssocAndReAssocRequestCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.25',
|
||||
'hwWlanStaAuthenRequestSuccessCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.26',
|
||||
'hwWlanStationApStatApId' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.27',
|
||||
'hwWlanStaGetIPFailedCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.28',
|
||||
'hwWlanStaGetIPSuccessCount' => '1.3.6.1.4.1.2011.6.139.18.1.3.1.29',
|
||||
'hwWlanStaOnlineFailInfo' => '1.3.6.1.4.1.2011.6.139.18.1.4',
|
||||
'hwWlanStaOnlineFailTable' => '1.3.6.1.4.1.2011.6.139.18.1.4.1',
|
||||
'hwWlanStaOnlineFailEntry' => '1.3.6.1.4.1.2011.6.139.18.1.4.1.1',
|
||||
'hwWlanStaOnlineFailMacAddress' => '1.3.6.1.4.1.2011.6.139.18.1.4.1.1.1',
|
||||
'hwWlanStaOnlineFailReasonIndex' => '1.3.6.1.4.1.2011.6.139.18.1.4.1.1.2',
|
||||
'hwWlanStaOnlineFailApMac' => '1.3.6.1.4.1.2011.6.139.18.1.4.1.1.3',
|
||||
'hwWlanStaOnlineFailApName' => '1.3.6.1.4.1.2011.6.139.18.1.4.1.1.4',
|
||||
'hwWlanStaOnlineFailRadioId' => '1.3.6.1.4.1.2011.6.139.18.1.4.1.1.5',
|
||||
'hwWlanStaOnlineFailWlanId' => '1.3.6.1.4.1.2011.6.139.18.1.4.1.1.6',
|
||||
'hwWlanStaOnlineFailLastFailTime' => '1.3.6.1.4.1.2011.6.139.18.1.4.1.1.7',
|
||||
'hwWlanStaOnlineFailReason' => '1.3.6.1.4.1.2011.6.139.18.1.4.1.1.8',
|
||||
'hwWlanStaOnlineFailSsid' => '1.3.6.1.4.1.2011.6.139.18.1.4.1.1.9',
|
||||
'hwWlanStaOnlineFailRowStatus' => '1.3.6.1.4.1.2011.6.139.18.1.4.1.1.10',
|
||||
'hwWlanStaOnlineFailApId' => '1.3.6.1.4.1.2011.6.139.18.1.4.1.1.11',
|
||||
'hwWlanStaOnlineFailDevType' => '1.3.6.1.4.1.2011.6.139.18.1.4.1.1.12',
|
||||
'hwWlanStaOnlineFailAcId' => '1.3.6.1.4.1.2011.6.139.18.1.4.1.1.13',
|
||||
'hwWlanStaOnlineFailAcName' => '1.3.6.1.4.1.2011.6.139.18.1.4.1.1.14',
|
||||
'hwWlanStaOnlineFailReasonTable' => '1.3.6.1.4.1.2011.6.139.18.1.4.2',
|
||||
'hwWlanStaOnlineFailReasonEntry' => '1.3.6.1.4.1.2011.6.139.18.1.4.2.1',
|
||||
'hwWlanStaOnlineFailReasonCode' => '1.3.6.1.4.1.2011.6.139.18.1.4.2.1.1',
|
||||
'hwWlanStaOnlineFailReasonDesc' => '1.3.6.1.4.1.2011.6.139.18.1.4.2.1.2',
|
||||
'hwWlanStaOnlineFailReasonCount' => '1.3.6.1.4.1.2011.6.139.18.1.4.2.1.3',
|
||||
'hwWlanStaOfflineInfo' => '1.3.6.1.4.1.2011.6.139.18.1.5',
|
||||
'hwWlanStaOfflineTable' => '1.3.6.1.4.1.2011.6.139.18.1.5.1',
|
||||
'hwWlanStaOfflineEntry' => '1.3.6.1.4.1.2011.6.139.18.1.5.1.1',
|
||||
'hwWlanStaOfflineMacAddress' => '1.3.6.1.4.1.2011.6.139.18.1.5.1.1.1',
|
||||
'hwWlanStaOfflineReasonIndex' => '1.3.6.1.4.1.2011.6.139.18.1.5.1.1.2',
|
||||
'hwWlanStaOfflineApMac' => '1.3.6.1.4.1.2011.6.139.18.1.5.1.1.3',
|
||||
'hwWlanStaOfflineApName' => '1.3.6.1.4.1.2011.6.139.18.1.5.1.1.4',
|
||||
'hwWlanStaOfflineRadioId' => '1.3.6.1.4.1.2011.6.139.18.1.5.1.1.5',
|
||||
'hwWlanStaOfflineWlanId' => '1.3.6.1.4.1.2011.6.139.18.1.5.1.1.6',
|
||||
'hwWlanStaOfflineLastFailTime' => '1.3.6.1.4.1.2011.6.139.18.1.5.1.1.7',
|
||||
'hwWlanStaOfflineReason' => '1.3.6.1.4.1.2011.6.139.18.1.5.1.1.8',
|
||||
'hwWlanStaOfflineSsid' => '1.3.6.1.4.1.2011.6.139.18.1.5.1.1.9',
|
||||
'hwWlanStaOfflineFailRowStatus' => '1.3.6.1.4.1.2011.6.139.18.1.5.1.1.10',
|
||||
'hwWlanStaOfflineApId' => '1.3.6.1.4.1.2011.6.139.18.1.5.1.1.11',
|
||||
'hwWlanStaOfflineDevType' => '1.3.6.1.4.1.2011.6.139.18.1.5.1.1.12',
|
||||
'hwWlanStaOfflineAcId' => '1.3.6.1.4.1.2011.6.139.18.1.5.1.1.13',
|
||||
'hwWlanStaOfflineAcName' => '1.3.6.1.4.1.2011.6.139.18.1.5.1.1.14',
|
||||
'hwWlanStaOfflineReasonTable' => '1.3.6.1.4.1.2011.6.139.18.1.5.2',
|
||||
'hwWlanStaOfflineReasonEntry' => '1.3.6.1.4.1.2011.6.139.18.1.5.2.1',
|
||||
'hwWlanStaOfflineReasonCode' => '1.3.6.1.4.1.2011.6.139.18.1.5.2.1.1',
|
||||
'hwWlanStaOfflineReasonDesc' => '1.3.6.1.4.1.2011.6.139.18.1.5.2.1.2',
|
||||
'hwWlanStaOfflineReasonCount' => '1.3.6.1.4.1.2011.6.139.18.1.5.2.1.3',
|
||||
'hwWlanStaRoamInfo' => '1.3.6.1.4.1.2011.6.139.18.1.6',
|
||||
'hwWlanStaRoamTraceTable' => '1.3.6.1.4.1.2011.6.139.18.1.6.1',
|
||||
'hwWlanStaRoamTraceEntry' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1',
|
||||
'hwWlanStaRoamTraceStaMac' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.1',
|
||||
'hwWlanStaRoamTraceIndex' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.2',
|
||||
'hwWlanStaRoamTraceTime' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.3',
|
||||
'hwWlanStaRoamTraceAcIP' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.4',
|
||||
'hwWlanStaRoamTraceAcIPv6' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.5',
|
||||
'hwWlanStaRoamTraceApName' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.6',
|
||||
'hwWlanStaRoamTraceRadioId' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.7',
|
||||
'hwWlanStaRoamTraceBssid' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.8',
|
||||
'hwWlanStaRoamTraceInRate' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.9',
|
||||
'hwWlanStaRoamTraceOutRate' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.10',
|
||||
'hwWlanStaRoamTraceInRssi' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.11',
|
||||
'hwWlanStaRoamTraceOutRssi' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.12',
|
||||
'hwWlanStaRoamTraceRoamType' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.13',
|
||||
'hwWlanStaRoamTraceRoamTypeDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanStaRoamTraceRoamType',
|
||||
'hwWlanStaRoamTraceApId' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.14',
|
||||
'hwWlanStaRoamTraceInfo' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.15',
|
||||
'hwWlanStaRoamTraceInfoDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanStaRoamTraceInfo',
|
||||
'hwWlanStaRoamTraceMemberAcIP' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.16',
|
||||
'hwWlanStaRoamTraceMemberAcIPv6' => '1.3.6.1.4.1.2011.6.139.18.1.6.1.1.17',
|
||||
'hwWlanStaAcL3RoamStatisticsTable' => '1.3.6.1.4.1.2011.6.139.18.1.6.2',
|
||||
'hwWlanStaAcL3RoamStatisticsEntry' => '1.3.6.1.4.1.2011.6.139.18.1.6.2.1',
|
||||
'hwWlanStaAcL3RoamStatisticAcIndex' => '1.3.6.1.4.1.2011.6.139.18.1.6.2.1.1',
|
||||
'hwWlanStaAcL3RoamStatisticAcIP' => '1.3.6.1.4.1.2011.6.139.18.1.6.2.1.2',
|
||||
'hwWlanStaAcL3RoamStatisticAcIPv6' => '1.3.6.1.4.1.2011.6.139.18.1.6.2.1.3',
|
||||
'hwWlanStaAcL3RoamStatisticRoamInCnt' => '1.3.6.1.4.1.2011.6.139.18.1.6.2.1.4',
|
||||
'hwWlanStaAcL3RoamStatisticRoamOutCnt' => '1.3.6.1.4.1.2011.6.139.18.1.6.2.1.5',
|
||||
'hwWlanStaAcL3RoamStatisticAcDescription' => '1.3.6.1.4.1.2011.6.139.18.1.6.2.1.6',
|
||||
'hwWlanStaApL3RoamStatisticsTable' => '1.3.6.1.4.1.2011.6.139.18.1.6.3',
|
||||
'hwWlanStaApL3RoamStatisticsEntry' => '1.3.6.1.4.1.2011.6.139.18.1.6.3.1',
|
||||
'hwWlanStaApL3RoamStatisticApMac' => '1.3.6.1.4.1.2011.6.139.18.1.6.3.1.1',
|
||||
'hwWlanStaApL3RoamStatisticApName' => '1.3.6.1.4.1.2011.6.139.18.1.6.3.1.2',
|
||||
'hwWlanStaApL3RoamStatisticRoamInCnt' => '1.3.6.1.4.1.2011.6.139.18.1.6.3.1.3',
|
||||
'hwWlanStaApL3RoamStatisticRoamOutCnt' => '1.3.6.1.4.1.2011.6.139.18.1.6.3.1.4',
|
||||
'hwWlanStaApL3RoamStatisticApId' => '1.3.6.1.4.1.2011.6.139.18.1.6.3.1.5',
|
||||
'hwWlanNaviACStationTable' => '1.3.6.1.4.1.2011.6.139.18.1.7',
|
||||
'hwWlanNaviACStationEntry' => '1.3.6.1.4.1.2011.6.139.18.1.7.1',
|
||||
'hwWlanNaviACStationMac' => '1.3.6.1.4.1.2011.6.139.18.1.7.1.1',
|
||||
'hwWlanNaviACStationIPAddress' => '1.3.6.1.4.1.2011.6.139.18.1.7.1.2',
|
||||
'hwWlanNaviACStationIPv6Address' => '1.3.6.1.4.1.2011.6.139.18.1.7.1.3',
|
||||
'hwWlanNaviACStationOnlineTime' => '1.3.6.1.4.1.2011.6.139.18.1.7.1.4',
|
||||
'hwWlanNaviACStationAuthMethod' => '1.3.6.1.4.1.2011.6.139.18.1.7.1.5',
|
||||
'hwWlanNaviACStationAuthMethodDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanNaviACStationAuthMethod',
|
||||
'hwWlanNaviAcStationVlanID' => '1.3.6.1.4.1.2011.6.139.18.1.7.1.6',
|
||||
'hwWlanNaviAcStationState' => '1.3.6.1.4.1.2011.6.139.18.1.7.1.7',
|
||||
'hwWlanNaviAcStationStateDefinition' => 'HUAWEI-WLAN-STATION-MIB::hwWlanNaviAcStationState',
|
||||
'hwWlanNaviACStationLocalACID' => '1.3.6.1.4.1.2011.6.139.18.1.7.1.8',
|
||||
'hwWlanNaviACStationWlanId' => '1.3.6.1.4.1.2011.6.139.18.1.7.1.9',
|
||||
'hwWlanStationConformance' => '1.3.6.1.4.1.2011.6.139.18.2',
|
||||
'hwWlanStationCompliances' => '1.3.6.1.4.1.2011.6.139.18.2.1',
|
||||
'hwWlanStationObjectGroups' => '1.3.6.1.4.1.2011.6.139.18.2.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'HUAWEI-WLAN-STATION-MIB'} = {
|
||||
'hwWlanStaStatOperMode' => {
|
||||
'1' => 'invalid',
|
||||
'2' => 'clearstatistic',
|
||||
},
|
||||
'hwWlanStaVHTTxBFCapable' => {
|
||||
'1' => 'nonsupport',
|
||||
'2' => 'support',
|
||||
},
|
||||
'hwWlanStaDelayStatus' => {
|
||||
'1' => 'delay',
|
||||
'2' => 'normal',
|
||||
},
|
||||
'hwWlanStaQosMode' => {
|
||||
'1' => 'wmm',
|
||||
'2' => 'null',
|
||||
},
|
||||
'hwWlanStaEncryptMethod' => {
|
||||
'1' => 'wpiSms4',
|
||||
'2' => 'wep40',
|
||||
'3' => 'wep104',
|
||||
'4' => 'tkip',
|
||||
'5' => 'aes',
|
||||
'6' => 'none',
|
||||
},
|
||||
'hwWlanStaRoamStatus' => {
|
||||
'1' => 'no',
|
||||
'2' => 'yes',
|
||||
},
|
||||
'hwWlanStaStatus' => {
|
||||
'1' => 'age',
|
||||
'2' => 'associatedNotAuthenticated',
|
||||
'3' => 'associatedAndAuthenticated',
|
||||
'4' => 'roam',
|
||||
'5' => 'backup',
|
||||
},
|
||||
'hwWlanStaHtMode' => {
|
||||
'1' => 'invalid',
|
||||
'2' => 'ht40',
|
||||
'3' => 'ht20',
|
||||
'4' => 'ht80',
|
||||
'5' => 'ht160',
|
||||
},
|
||||
'hwWlanNaviAcStationState' => {
|
||||
'1' => 'assoc',
|
||||
'2' => 'authing',
|
||||
'3' => 'run',
|
||||
'4' => 'delete',
|
||||
},
|
||||
'hwWlanStaRfMode' => {
|
||||
'0' => 'unknown',
|
||||
'1' => 'dotb',
|
||||
'2' => 'dotg',
|
||||
'3' => 'dotn',
|
||||
'4' => 'dota',
|
||||
'5' => 'dotac',
|
||||
'6' => 'dotax',
|
||||
},
|
||||
'hwWlanStaRoamTraceRoamType' => {
|
||||
'1' => 'l2',
|
||||
'2' => 'l3',
|
||||
'3' => 'none',
|
||||
},
|
||||
'hwWlanStaFailCodeType' => {
|
||||
'1' => 'reasonCode',
|
||||
'2' => 'statusCode',
|
||||
},
|
||||
'hwWlanNaviACStationAuthMethod' => {
|
||||
'1' => 'wepOpenSystem',
|
||||
'2' => 'wepOpenSystemMac',
|
||||
'3' => 'wepOpenSystem8021X',
|
||||
'4' => 'wepOpenSystemPortal',
|
||||
'5' => 'wepShareKey',
|
||||
'6' => 'wepShareKeyMac',
|
||||
'7' => 'wepShareKey8021X',
|
||||
'8' => 'wepShareKeyPortal',
|
||||
'9' => 'wpa8021X',
|
||||
'10' => 'wpaPreShareKey',
|
||||
'11' => 'wpaPskMac',
|
||||
'12' => 'wpaPskPortal',
|
||||
'13' => 'wpa2Dot1x',
|
||||
'14' => 'wpa2PreShareKey',
|
||||
'15' => 'wpa2PskMac',
|
||||
'16' => 'wpa2PskPortal',
|
||||
'17' => 'wapiCertification',
|
||||
'18' => 'wapiPreShareKey',
|
||||
'19' => 'wpaWpa2PreShareKey',
|
||||
'20' => 'wpaWpa2PskMac',
|
||||
'21' => 'wpaWpa2PskPortal',
|
||||
'22' => 'wpaWpa2Dot1x',
|
||||
'23' => 'wapiPskPortal',
|
||||
'24' => 'macDot1x',
|
||||
'25' => 'wepShareKey8021XMac',
|
||||
'26' => 'wpa8021XMac',
|
||||
'27' => 'wpa2Dot1xMac',
|
||||
'28' => 'wpaWpa2Dot1xMac',
|
||||
'29' => 'wepOpenSystemPortalMac',
|
||||
'30' => 'wepShareKeyPortalMac',
|
||||
'31' => 'wpaPskPortalMac',
|
||||
'32' => 'wpa2PskPortalMac',
|
||||
'33' => 'wpaWpa2PskPortalMac',
|
||||
'34' => 'wapiPskPortalMac',
|
||||
'35' => 'wpaPpsk',
|
||||
'36' => 'wpaPpskMac',
|
||||
'37' => 'wpaPpskPortal',
|
||||
'38' => 'wpaPpskPortalMac',
|
||||
'39' => 'wpa2Ppsk',
|
||||
'40' => 'wpa2PpskMac',
|
||||
'41' => 'wpa2PpskPortal',
|
||||
'42' => 'wpa2PpskPortalMac',
|
||||
'43' => 'wpaWpa2Ppsk',
|
||||
'44' => 'wpaWpa2PpskMac',
|
||||
'45' => 'wpaWpa2PpskPortal',
|
||||
'46' => 'wpaWpa2PpskPortalMac',
|
||||
'47' => 'wep8021X',
|
||||
},
|
||||
'hwWlanStaAuthenMethod' => {
|
||||
'1' => 'wepOpenSystem',
|
||||
'2' => 'wepOpenSystemMac',
|
||||
'3' => 'wepOpenSystem8021X',
|
||||
'4' => 'wepOpenSystemPortal',
|
||||
'5' => 'wepShareKey',
|
||||
'6' => 'wepShareKeyMac',
|
||||
'7' => 'wepShareKey8021X',
|
||||
'8' => 'wepShareKeyPortal',
|
||||
'9' => 'wpa8021X',
|
||||
'10' => 'wpaPreShareKey',
|
||||
'11' => 'wpaPskMac',
|
||||
'12' => 'wpaPskPortal',
|
||||
'13' => 'wpa2Dot1x',
|
||||
'14' => 'wpa2PreShareKey',
|
||||
'15' => 'wpa2PskMac',
|
||||
'16' => 'wpa2PskPortal',
|
||||
'17' => 'wapiCertification',
|
||||
'18' => 'wapiPreShareKey',
|
||||
'19' => 'wpaWpa2PreShareKey',
|
||||
'20' => 'wpaWpa2PskMac',
|
||||
'21' => 'wpaWpa2PskPortal',
|
||||
'22' => 'wpaWpa2Dot1x',
|
||||
'23' => 'wapiPskPortal',
|
||||
'24' => 'macDot1x',
|
||||
'25' => 'wepShareKey8021XMac',
|
||||
'26' => 'wpa8021XMac',
|
||||
'27' => 'wpa2Dot1xMac',
|
||||
'28' => 'wpaWpa2Dot1xMac',
|
||||
'29' => 'wepOpenSystemPortalMac',
|
||||
'30' => 'wepShareKeyPortalMac',
|
||||
'31' => 'wpaPskPortalMac',
|
||||
'32' => 'wpa2PskPortalMac',
|
||||
'33' => 'wpaWpa2PskPortalMac',
|
||||
'34' => 'wapiPskPortalMac',
|
||||
'35' => 'wpaPpsk',
|
||||
'36' => 'wpaPpskMac',
|
||||
'37' => 'wpaPpskPortal',
|
||||
'38' => 'wpaPpskPortalMac',
|
||||
'39' => 'wpa2Ppsk',
|
||||
'40' => 'wpa2PpskMac',
|
||||
'41' => 'wpa2PpskPortal',
|
||||
'42' => 'wpa2PpskPortalMac',
|
||||
'43' => 'wpaWpa2Ppsk',
|
||||
'44' => 'wpaWpa2PpskMac',
|
||||
'45' => 'wpaWpa2PpskPortal',
|
||||
'46' => 'wpaWpa2PpskPortalMac',
|
||||
'47' => 'wep8021X',
|
||||
},
|
||||
'hwWlanStaMUMIMOCapable' => {
|
||||
'1' => 'nonsupport',
|
||||
'2' => 'support',
|
||||
},
|
||||
'hwWlanStaVHTCapable' => {
|
||||
'1' => 'nonsupport',
|
||||
'2' => 'support',
|
||||
},
|
||||
'hwWlanStaShortGIStatus' => {
|
||||
'1' => 'nonsupport',
|
||||
'2' => 'support',
|
||||
},
|
||||
'hwWlanStaRoamTraceInfo' => {
|
||||
'0' => 'normal',
|
||||
'1' => 'sameFrequencyNetwork',
|
||||
'2' => 'pmkCacheRoam',
|
||||
'3' => 'dot11rRoam',
|
||||
'4' => 'dot11rOverthedsRoam',
|
||||
'5' => 'dot11rPrivateRoam',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,99 +0,0 @@
|
|||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'ORG-MIB'} = {
|
||||
url => '',
|
||||
name => 'ORG-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'ORG-MIB'} = '1.3.6.1.4.1.42359.2.2.1.2';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'ORG-MIB'} = {
|
||||
'org' => '1.3.6.1.4.1.42359.2.2.1.2',
|
||||
'trafficTable' => '1.3.6.1.4.1.42359.2.2.1.2.2',
|
||||
'trafficEntry' => '1.3.6.1.4.1.42359.2.2.1.2.2.1',
|
||||
'trafficOrgId' => '1.3.6.1.4.1.42359.2.2.1.2.2.1.1',
|
||||
'trafficOrgName' => '1.3.6.1.4.1.42359.2.2.1.2.2.1.2',
|
||||
'trafficPktsIn' => '1.3.6.1.4.1.42359.2.2.1.2.2.1.3',
|
||||
'trafficBytesIn' => '1.3.6.1.4.1.42359.2.2.1.2.2.1.4',
|
||||
'trafficPktsOut' => '1.3.6.1.4.1.42359.2.2.1.2.2.1.5',
|
||||
'trafficBytesOut' => '1.3.6.1.4.1.42359.2.2.1.2.2.1.6',
|
||||
'trafficPktsInRate' => '1.3.6.1.4.1.42359.2.2.1.2.2.1.7',
|
||||
'trafficBytesInRate' => '1.3.6.1.4.1.42359.2.2.1.2.2.1.8',
|
||||
'trafficPktsOutRate' => '1.3.6.1.4.1.42359.2.2.1.2.2.1.9',
|
||||
'trafficBytesOutRate' => '1.3.6.1.4.1.42359.2.2.1.2.2.1.10',
|
||||
'qosTrafficTable' => '1.3.6.1.4.1.42359.2.2.1.2.3',
|
||||
'qosTrafficEntry' => '1.3.6.1.4.1.42359.2.2.1.2.3.1',
|
||||
'qosTrafficOrgId' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.1',
|
||||
'qosTrafficOrgName' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.2',
|
||||
'qosTrafficPktsIn' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.3',
|
||||
'qosTrafficBytesIn' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.4',
|
||||
'qosTrafficPktsOut' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.5',
|
||||
'qosTrafficBytesOut' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.6',
|
||||
'qosTrafficPktsDropped' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.7',
|
||||
'qosTrafficBytesDropped' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.8',
|
||||
'qosTrafficPktsDroppedPPS' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.9',
|
||||
'qosTrafficBytesDroppedPPS' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.10',
|
||||
'qosTrafficPktsDroppedKBPS' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.11',
|
||||
'qosTrafficBytesDroppedKBPS' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.12',
|
||||
'qosTrafficSessionsIn' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.13',
|
||||
'qosTrafficSessionsDrop' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.14',
|
||||
'qosTrafficSessionsAllow' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.15',
|
||||
'qosTrafficPktsInRate' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.16',
|
||||
'qosTrafficBytesInRate' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.17',
|
||||
'qosTrafficPktsOutRate' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.18',
|
||||
'qosTrafficBytesOutRate' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.19',
|
||||
'qosTrafficPktsDropRate' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.20',
|
||||
'qosTrafficBytesDropRate' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.21',
|
||||
'qosTrafficSessionsInRate' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.22',
|
||||
'qosTrafficSessionsAllowRate' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.23',
|
||||
'qosTrafficSessionsDropRate' => '1.3.6.1.4.1.42359.2.2.1.2.3.1.24',
|
||||
'sessStatsTable' => '1.3.6.1.4.1.42359.2.2.1.2.4',
|
||||
'sessStatsEntry' => '1.3.6.1.4.1.42359.2.2.1.2.4.1',
|
||||
'sessOrgId' => '1.3.6.1.4.1.42359.2.2.1.2.4.1.1',
|
||||
'sessOrgName' => '1.3.6.1.4.1.42359.2.2.1.2.4.1.2',
|
||||
'sessVsnId' => '1.3.6.1.4.1.42359.2.2.1.2.4.1.3',
|
||||
'sessActive' => '1.3.6.1.4.1.42359.2.2.1.2.4.1.4',
|
||||
'sessCreated' => '1.3.6.1.4.1.42359.2.2.1.2.4.1.5',
|
||||
'sessClosed' => '1.3.6.1.4.1.42359.2.2.1.2.4.1.6',
|
||||
'sessActiveNAT' => '1.3.6.1.4.1.42359.2.2.1.2.4.1.7',
|
||||
'sessCreatedNAT' => '1.3.6.1.4.1.42359.2.2.1.2.4.1.8',
|
||||
'sessClosedNAT' => '1.3.6.1.4.1.42359.2.2.1.2.4.1.9',
|
||||
'sessFailed' => '1.3.6.1.4.1.42359.2.2.1.2.4.1.10',
|
||||
'sessMax' => '1.3.6.1.4.1.42359.2.2.1.2.4.1.11',
|
||||
'sessTCP' => '1.3.6.1.4.1.42359.2.2.1.2.4.1.12',
|
||||
'sessUDP' => '1.3.6.1.4.1.42359.2.2.1.2.4.1.13',
|
||||
'sessICMP' => '1.3.6.1.4.1.42359.2.2.1.2.4.1.14',
|
||||
'sessOTHER' => '1.3.6.1.4.1.42359.2.2.1.2.4.1.15',
|
||||
'sessSdwanStatsTable' => '1.3.6.1.4.1.42359.2.2.1.2.5',
|
||||
'sessSdwanStatsEntry' => '1.3.6.1.4.1.42359.2.2.1.2.5.1',
|
||||
'sessSdwanOrgId' => '1.3.6.1.4.1.42359.2.2.1.2.5.1.1',
|
||||
'sessSdwanOrgName' => '1.3.6.1.4.1.42359.2.2.1.2.5.1.2',
|
||||
'sessSdwanVsnId' => '1.3.6.1.4.1.42359.2.2.1.2.5.1.3',
|
||||
'sessSdwanActive' => '1.3.6.1.4.1.42359.2.2.1.2.5.1.4',
|
||||
'sessSdwanCreated' => '1.3.6.1.4.1.42359.2.2.1.2.5.1.5',
|
||||
'sessSdwanClosed' => '1.3.6.1.4.1.42359.2.2.1.2.5.1.6',
|
||||
'sessCgnatStatsTable' => '1.3.6.1.4.1.42359.2.2.1.2.7',
|
||||
'sessCgnatStatsEntry' => '1.3.6.1.4.1.42359.2.2.1.2.7.1',
|
||||
'sessCgnatOrgId' => '1.3.6.1.4.1.42359.2.2.1.2.7.1.1',
|
||||
'sessCgnatOrgName' => '1.3.6.1.4.1.42359.2.2.1.2.7.1.2',
|
||||
'sessCgnatVsnId' => '1.3.6.1.4.1.42359.2.2.1.2.7.1.3',
|
||||
'sessCgnatActive' => '1.3.6.1.4.1.42359.2.2.1.2.7.1.4',
|
||||
'sessCgnatCreated' => '1.3.6.1.4.1.42359.2.2.1.2.7.1.5',
|
||||
'sessCgnatClosed' => '1.3.6.1.4.1.42359.2.2.1.2.7.1.6',
|
||||
'sessCgnatFailed' => '1.3.6.1.4.1.42359.2.2.1.2.7.1.7',
|
||||
'orgAlarmStatsTable' => '1.3.6.1.4.1.42359.2.2.1.2.8',
|
||||
'orgAlarmStatsEntry' => '1.3.6.1.4.1.42359.2.2.1.2.8.1',
|
||||
'alarmOrgId' => '1.3.6.1.4.1.42359.2.2.1.2.8.1.1',
|
||||
'alarmId' => '1.3.6.1.4.1.42359.2.2.1.2.8.1.2',
|
||||
'alarmOrgName' => '1.3.6.1.4.1.42359.2.2.1.2.8.1.3',
|
||||
'alarmName' => '1.3.6.1.4.1.42359.2.2.1.2.8.1.4',
|
||||
'alarmNewCnt' => '1.3.6.1.4.1.42359.2.2.1.2.8.1.5',
|
||||
'alarmChangedCnt' => '1.3.6.1.4.1.42359.2.2.1.2.8.1.6',
|
||||
'alarmClearedCnt' => '1.3.6.1.4.1.42359.2.2.1.2.8.1.7',
|
||||
'alarmNetconfCnt' => '1.3.6.1.4.1.42359.2.2.1.2.8.1.8',
|
||||
'alarmSnmpCnt' => '1.3.6.1.4.1.42359.2.2.1.2.8.1.9',
|
||||
'alarmSyslogCnt' => '1.3.6.1.4.1.42359.2.2.1.2.8.1.10',
|
||||
'alarmAnalyticsCnt' => '1.3.6.1.4.1.42359.2.2.1.2.8.1.11',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'ORG-MIB'} = {
|
||||
};
|
||||
|
||||
|
|
@ -1,100 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::PULSESECUREPSGMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'PULSESECURE-PSG-MIB'} = {
|
||||
url => '',
|
||||
name => 'PULSESECURE-PSG-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'PULSESECURE-PSG-MIB'} =
|
||||
'1.3.6.1.4.1.12532';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'PULSESECURE-PSG-MIB'} = {
|
||||
'pulsesecure-gateway' => '1.3.6.1.4.1.12532',
|
||||
'logFullPercent' => '1.3.6.1.4.1.12532.1',
|
||||
'signedInWebUsers' => '1.3.6.1.4.1.12532.2',
|
||||
'signedInMailUsers' => '1.3.6.1.4.1.12532.3',
|
||||
'blockedIP' => '1.3.6.1.4.1.12532.4',
|
||||
'authServerName' => '1.3.6.1.4.1.12532.5',
|
||||
'productName' => '1.3.6.1.4.1.12532.6',
|
||||
'productVersion' => '1.3.6.1.4.1.12532.7',
|
||||
'fileName' => '1.3.6.1.4.1.12532.8',
|
||||
'meetingUserCount' => '1.3.6.1.4.1.12532.9',
|
||||
'iveCpuUtil' => '1.3.6.1.4.1.12532.10',
|
||||
'iveMemoryUtil' => '1.3.6.1.4.1.12532.11',
|
||||
'iveConcurrentUsers' => '1.3.6.1.4.1.12532.12',
|
||||
'clusterConcurrentUsers' => '1.3.6.1.4.1.12532.13',
|
||||
'iveTotalHits' => '1.3.6.1.4.1.12532.14',
|
||||
'iveFileHits' => '1.3.6.1.4.1.12532.15',
|
||||
'iveWebHits' => '1.3.6.1.4.1.12532.16',
|
||||
'iveAppletHits' => '1.3.6.1.4.1.12532.17',
|
||||
'ivetermHits' => '1.3.6.1.4.1.12532.18',
|
||||
'iveSAMHits' => '1.3.6.1.4.1.12532.19',
|
||||
'iveNCHits' => '1.3.6.1.4.1.12532.20',
|
||||
'meetingHits' => '1.3.6.1.4.1.12532.21',
|
||||
'meetingCount' => '1.3.6.1.4.1.12532.22',
|
||||
'logName' => '1.3.6.1.4.1.12532.23',
|
||||
'iveSwapUtil' => '1.3.6.1.4.1.12532.24',
|
||||
'diskFullPercent' => '1.3.6.1.4.1.12532.25',
|
||||
'blockedIPList' => '1.3.6.1.4.1.12532.26',
|
||||
'ipEntry' => '1.3.6.1.4.1.12532.26.1',
|
||||
'ipIndex' => '1.3.6.1.4.1.12532.26.1.1',
|
||||
'ipValue' => '1.3.6.1.4.1.12532.26.1.2',
|
||||
'logID' => '1.3.6.1.4.1.12532.27',
|
||||
'logType' => '1.3.6.1.4.1.12532.28',
|
||||
'logDescription' => '1.3.6.1.4.1.12532.29',
|
||||
'ivsName' => '1.3.6.1.4.1.12532.30',
|
||||
'ocspResponderURL' => '1.3.6.1.4.1.12532.31',
|
||||
'fanDescription' => '1.3.6.1.4.1.12532.32',
|
||||
'psDescription' => '1.3.6.1.4.1.12532.33',
|
||||
'raidDescription' => '1.3.6.1.4.1.12532.34',
|
||||
'clusterName' => '1.3.6.1.4.1.12532.35',
|
||||
'nodeList' => '1.3.6.1.4.1.12532.36',
|
||||
'vipType' => '1.3.6.1.4.1.12532.37',
|
||||
'currentVIP' => '1.3.6.1.4.1.12532.38',
|
||||
'newVIP' => '1.3.6.1.4.1.12532.39',
|
||||
'nicEvent' => '1.3.6.1.4.1.12532.40',
|
||||
'nodeName' => '1.3.6.1.4.1.12532.41',
|
||||
'iveTemperature' => '1.3.6.1.4.1.12532.42',
|
||||
'iveVPNTunnels' => '1.3.6.1.4.1.12532.43',
|
||||
'iveSSLConnections' => '1.3.6.1.4.1.12532.44',
|
||||
'esapVersion' => '1.3.6.1.4.1.12532.45',
|
||||
'vipChangeReason' => '1.3.6.1.4.1.12532.46',
|
||||
'processName' => '1.3.6.1.4.1.12532.47',
|
||||
'iveTotalSignedInUsers' => '1.3.6.1.4.1.12532.48',
|
||||
'vpnACLSPercentage' => '1.3.6.1.4.1.12532.49',
|
||||
'vpnACLSCount' => '1.3.6.1.4.1.12532.50',
|
||||
'blockedIPv6' => '1.3.6.1.4.1.12532.51',
|
||||
'iveTraps' => '1.3.6.1.4.1.12532.251',
|
||||
'iveSAProduct' => '1.3.6.1.4.1.12532.252',
|
||||
'iveICProduct' => '1.3.6.1.4.1.12532.253',
|
||||
'iveMAGProduct' => '1.3.6.1.4.1.12532.254',
|
||||
'iveProductMAG2600' => '1.3.6.1.4.1.12532.254.1',
|
||||
'iveMAG2600' => '1.3.6.1.4.1.12532.254.1.1',
|
||||
'iveProductMAG4610' => '1.3.6.1.4.1.12532.254.2',
|
||||
'iveMAG4610' => '1.3.6.1.4.1.12532.254.2.1',
|
||||
'iveProductSM160' => '1.3.6.1.4.1.12532.254.3',
|
||||
'iveMAGSM160' => '1.3.6.1.4.1.12532.254.3.1',
|
||||
'iveProductSM360' => '1.3.6.1.4.1.12532.254.4',
|
||||
'iveMAGSM360' => '1.3.6.1.4.1.12532.254.4.1',
|
||||
'iveVAProduct' => '1.3.6.1.4.1.12532.255',
|
||||
'iveProductVASPE' => '1.3.6.1.4.1.12532.255.1',
|
||||
'iveVASPE' => '1.3.6.1.4.1.12532.255.1.1',
|
||||
'iveProductVADTE' => '1.3.6.1.4.1.12532.255.2',
|
||||
'iveVADTE' => '1.3.6.1.4.1.12532.255.2.1',
|
||||
'ivePSAProduct' => '1.3.6.1.4.1.12532.256',
|
||||
'iveProductPSA300' => '1.3.6.1.4.1.12532.256.1',
|
||||
'ivePSA300' => '1.3.6.1.4.1.12532.256.1.1',
|
||||
'iveProductPSA3000' => '1.3.6.1.4.1.12532.256.2',
|
||||
'ivePSA3000' => '1.3.6.1.4.1.12532.256.2.1',
|
||||
'iveProductPSA5000' => '1.3.6.1.4.1.12532.256.3',
|
||||
'ivePSA5000' => '1.3.6.1.4.1.12532.256.3.1',
|
||||
'iveProductPSA7000f' => '1.3.6.1.4.1.12532.256.4',
|
||||
'ivePSA7000f' => '1.3.6.1.4.1.12532.256.4.1',
|
||||
'iveProductPSA7000c' => '1.3.6.1.4.1.12532.256.5',
|
||||
'ivePSA7000c' => '1.3.6.1.4.1.12532.256.5.1',
|
||||
'iveProductPSA10000' => '1.3.6.1.4.1.12532.256.6',
|
||||
'ivePSA10000' => '1.3.6.1.4.1.12532.256.6.1',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'PULSESECURE-PSG-MIB'} = {
|
||||
};
|
||||
|
|
@ -1,206 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::QBRIDGEMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'Q-BRIDGE-MIB'} = {
|
||||
url => '',
|
||||
name => 'Q-BRIDGE-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'Q-BRIDGE-MIB'} =
|
||||
'1.3.6.1.2.1.17.7';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'Q-BRIDGE-MIB'} = {
|
||||
'qBridgeMIB' => '1.3.6.1.2.1.17.7',
|
||||
'qBridgeMIBObjects' => '1.3.6.1.2.1.17.7.1',
|
||||
'dot1qBase' => '1.3.6.1.2.1.17.7.1.1',
|
||||
'dot1qVlanVersionNumber' => '1.3.6.1.2.1.17.7.1.1.1',
|
||||
'dot1qVlanVersionNumberDefinition' => 'Q-BRIDGE-MIB::dot1qVlanVersionNumber',
|
||||
'dot1qMaxVlanId' => '1.3.6.1.2.1.17.7.1.1.2',
|
||||
'dot1qMaxSupportedVlans' => '1.3.6.1.2.1.17.7.1.1.3',
|
||||
'dot1qNumVlans' => '1.3.6.1.2.1.17.7.1.1.4',
|
||||
'dot1qGvrpStatus' => '1.3.6.1.2.1.17.7.1.1.5',
|
||||
'dot1qTp' => '1.3.6.1.2.1.17.7.1.2',
|
||||
'dot1qFdbTable' => '1.3.6.1.2.1.17.7.1.2.1',
|
||||
'dot1qFdbEntry' => '1.3.6.1.2.1.17.7.1.2.1.1',
|
||||
'dot1qFdbId' => '1.3.6.1.2.1.17.7.1.2.1.1.1',
|
||||
'dot1qFdbDynamicCount' => '1.3.6.1.2.1.17.7.1.2.1.1.2',
|
||||
'dot1qTpFdbTable' => '1.3.6.1.2.1.17.7.1.2.2',
|
||||
'dot1qTpFdbEntry' => '1.3.6.1.2.1.17.7.1.2.2.1',
|
||||
'dot1qTpFdbAddress' => '1.3.6.1.2.1.17.7.1.2.2.1.1',
|
||||
'dot1qTpFdbPort' => '1.3.6.1.2.1.17.7.1.2.2.1.2',
|
||||
'dot1qTpFdbStatus' => '1.3.6.1.2.1.17.7.1.2.2.1.3',
|
||||
'dot1qTpFdbStatusDefinition' => 'Q-BRIDGE-MIB::dot1qTpFdbStatus',
|
||||
'dot1qTpGroupTable' => '1.3.6.1.2.1.17.7.1.2.3',
|
||||
'dot1qTpGroupEntry' => '1.3.6.1.2.1.17.7.1.2.3.1',
|
||||
'dot1qTpGroupAddress' => '1.3.6.1.2.1.17.7.1.2.3.1.1',
|
||||
'dot1qTpGroupEgressPorts' => '1.3.6.1.2.1.17.7.1.2.3.1.2',
|
||||
'dot1qTpGroupLearnt' => '1.3.6.1.2.1.17.7.1.2.3.1.3',
|
||||
'dot1qForwardAllTable' => '1.3.6.1.2.1.17.7.1.2.4',
|
||||
'dot1qForwardAllEntry' => '1.3.6.1.2.1.17.7.1.2.4.1',
|
||||
'dot1qForwardAllPorts' => '1.3.6.1.2.1.17.7.1.2.4.1.1',
|
||||
'dot1qForwardAllStaticPorts' => '1.3.6.1.2.1.17.7.1.2.4.1.2',
|
||||
'dot1qForwardAllForbiddenPorts' => '1.3.6.1.2.1.17.7.1.2.4.1.3',
|
||||
'dot1qForwardUnregisteredTable' => '1.3.6.1.2.1.17.7.1.2.5',
|
||||
'dot1qForwardUnregisteredEntry' => '1.3.6.1.2.1.17.7.1.2.5.1',
|
||||
'dot1qForwardUnregisteredPorts' => '1.3.6.1.2.1.17.7.1.2.5.1.1',
|
||||
'dot1qForwardUnregisteredStaticPorts' => '1.3.6.1.2.1.17.7.1.2.5.1.2',
|
||||
'dot1qForwardUnregisteredForbiddenPorts' => '1.3.6.1.2.1.17.7.1.2.5.1.3',
|
||||
'dot1qStatic' => '1.3.6.1.2.1.17.7.1.3',
|
||||
'dot1qStaticUnicastTable' => '1.3.6.1.2.1.17.7.1.3.1',
|
||||
'dot1qStaticUnicastEntry' => '1.3.6.1.2.1.17.7.1.3.1.1',
|
||||
'dot1qStaticUnicastAddress' => '1.3.6.1.2.1.17.7.1.3.1.1.1',
|
||||
'dot1qStaticUnicastReceivePort' => '1.3.6.1.2.1.17.7.1.3.1.1.2',
|
||||
'dot1qStaticUnicastAllowedToGoTo' => '1.3.6.1.2.1.17.7.1.3.1.1.3',
|
||||
'dot1qStaticUnicastStatus' => '1.3.6.1.2.1.17.7.1.3.1.1.4',
|
||||
'dot1qStaticUnicastStatusDefinition' => 'Q-BRIDGE-MIB::dot1qStaticUnicastStatus',
|
||||
'dot1qStaticMulticastTable' => '1.3.6.1.2.1.17.7.1.3.2',
|
||||
'dot1qStaticMulticastEntry' => '1.3.6.1.2.1.17.7.1.3.2.1',
|
||||
'dot1qStaticMulticastAddress' => '1.3.6.1.2.1.17.7.1.3.2.1.1',
|
||||
'dot1qStaticMulticastReceivePort' => '1.3.6.1.2.1.17.7.1.3.2.1.2',
|
||||
'dot1qStaticMulticastStaticEgressPorts' => '1.3.6.1.2.1.17.7.1.3.2.1.3',
|
||||
'dot1qStaticMulticastForbiddenEgressPorts' => '1.3.6.1.2.1.17.7.1.3.2.1.4',
|
||||
'dot1qStaticMulticastStatus' => '1.3.6.1.2.1.17.7.1.3.2.1.5',
|
||||
'dot1qStaticMulticastStatusDefinition' => 'Q-BRIDGE-MIB::dot1qStaticMulticastStatus',
|
||||
'dot1qVlan' => '1.3.6.1.2.1.17.7.1.4',
|
||||
'dot1qVlanNumDeletes' => '1.3.6.1.2.1.17.7.1.4.1',
|
||||
'dot1qVlanCurrentTable' => '1.3.6.1.2.1.17.7.1.4.2',
|
||||
'dot1qVlanCurrentEntry' => '1.3.6.1.2.1.17.7.1.4.2.1',
|
||||
'dot1qVlanTimeMark' => '1.3.6.1.2.1.17.7.1.4.2.1.1',
|
||||
'dot1qVlanIndex' => '1.3.6.1.2.1.17.7.1.4.2.1.2',
|
||||
'dot1qVlanFdbId' => '1.3.6.1.2.1.17.7.1.4.2.1.3',
|
||||
'dot1qVlanCurrentEgressPorts' => '1.3.6.1.2.1.17.7.1.4.2.1.4',
|
||||
'dot1qVlanCurrentEgressPortsDefinition' => 'Q-BRIDGE-MIB::PortList',
|
||||
'dot1qVlanCurrentUntaggedPorts' => '1.3.6.1.2.1.17.7.1.4.2.1.5',
|
||||
'dot1qVlanCurrentUntaggedPortsDefinition' => 'Q-BRIDGE-MIB::PortList',
|
||||
'dot1qVlanStatus' => '1.3.6.1.2.1.17.7.1.4.2.1.6',
|
||||
'dot1qVlanStatusDefinition' => 'Q-BRIDGE-MIB::dot1qVlanStatus',
|
||||
'dot1qVlanCreationTime' => '1.3.6.1.2.1.17.7.1.4.2.1.7',
|
||||
'dot1qVlanStaticTable' => '1.3.6.1.2.1.17.7.1.4.3',
|
||||
'dot1qVlanStaticEntry' => '1.3.6.1.2.1.17.7.1.4.3.1',
|
||||
'dot1qVlanStaticName' => '1.3.6.1.2.1.17.7.1.4.3.1.1',
|
||||
'dot1qVlanStaticEgressPorts' => '1.3.6.1.2.1.17.7.1.4.3.1.2',
|
||||
'dot1qVlanForbiddenEgressPorts' => '1.3.6.1.2.1.17.7.1.4.3.1.3',
|
||||
'dot1qVlanStaticUntaggedPorts' => '1.3.6.1.2.1.17.7.1.4.3.1.4',
|
||||
'dot1qVlanStaticRowStatus' => '1.3.6.1.2.1.17.7.1.4.3.1.5',
|
||||
'dot1qNextFreeLocalVlanIndex' => '1.3.6.1.2.1.17.7.1.4.4',
|
||||
'dot1qPortVlanTable' => '1.3.6.1.2.1.17.7.1.4.5',
|
||||
'dot1qPortVlanEntry' => '1.3.6.1.2.1.17.7.1.4.5.1',
|
||||
'dot1qPvid' => '1.3.6.1.2.1.17.7.1.4.5.1.1',
|
||||
'dot1qPortAcceptableFrameTypes' => '1.3.6.1.2.1.17.7.1.4.5.1.2',
|
||||
'dot1qPortAcceptableFrameTypesDefinition' => 'Q-BRIDGE-MIB::dot1qPortAcceptableFrameTypes',
|
||||
'dot1qPortIngressFiltering' => '1.3.6.1.2.1.17.7.1.4.5.1.3',
|
||||
'dot1qPortGvrpStatus' => '1.3.6.1.2.1.17.7.1.4.5.1.4',
|
||||
'dot1qPortGvrpFailedRegistrations' => '1.3.6.1.2.1.17.7.1.4.5.1.5',
|
||||
'dot1qPortGvrpLastPduOrigin' => '1.3.6.1.2.1.17.7.1.4.5.1.6',
|
||||
'dot1qPortRestrictedVlanRegistration' => '1.3.6.1.2.1.17.7.1.4.5.1.7',
|
||||
'dot1qPortVlanStatisticsTable' => '1.3.6.1.2.1.17.7.1.4.6',
|
||||
'dot1qPortVlanStatisticsEntry' => '1.3.6.1.2.1.17.7.1.4.6.1',
|
||||
'dot1qTpVlanPortInFrames' => '1.3.6.1.2.1.17.7.1.4.6.1.1',
|
||||
'dot1qTpVlanPortOutFrames' => '1.3.6.1.2.1.17.7.1.4.6.1.2',
|
||||
'dot1qTpVlanPortInDiscards' => '1.3.6.1.2.1.17.7.1.4.6.1.3',
|
||||
'dot1qTpVlanPortInOverflowFrames' => '1.3.6.1.2.1.17.7.1.4.6.1.4',
|
||||
'dot1qTpVlanPortOutOverflowFrames' => '1.3.6.1.2.1.17.7.1.4.6.1.5',
|
||||
'dot1qTpVlanPortInOverflowDiscards' => '1.3.6.1.2.1.17.7.1.4.6.1.6',
|
||||
'dot1qPortVlanHCStatisticsTable' => '1.3.6.1.2.1.17.7.1.4.7',
|
||||
'dot1qPortVlanHCStatisticsEntry' => '1.3.6.1.2.1.17.7.1.4.7.1',
|
||||
'dot1qTpVlanPortHCInFrames' => '1.3.6.1.2.1.17.7.1.4.7.1.1',
|
||||
'dot1qTpVlanPortHCOutFrames' => '1.3.6.1.2.1.17.7.1.4.7.1.2',
|
||||
'dot1qTpVlanPortHCInDiscards' => '1.3.6.1.2.1.17.7.1.4.7.1.3',
|
||||
'dot1qLearningConstraintsTable' => '1.3.6.1.2.1.17.7.1.4.8',
|
||||
'dot1qLearningConstraintsEntry' => '1.3.6.1.2.1.17.7.1.4.8.1',
|
||||
'dot1qConstraintVlan' => '1.3.6.1.2.1.17.7.1.4.8.1.1',
|
||||
'dot1qConstraintSet' => '1.3.6.1.2.1.17.7.1.4.8.1.2',
|
||||
'dot1qConstraintType' => '1.3.6.1.2.1.17.7.1.4.8.1.3',
|
||||
'dot1qConstraintTypeDefinition' => 'Q-BRIDGE-MIB::dot1qConstraintType',
|
||||
'dot1qConstraintStatus' => '1.3.6.1.2.1.17.7.1.4.8.1.4',
|
||||
'dot1qConstraintSetDefault' => '1.3.6.1.2.1.17.7.1.4.9',
|
||||
'dot1qConstraintTypeDefault' => '1.3.6.1.2.1.17.7.1.4.10',
|
||||
'dot1qConstraintTypeDefaultDefinition' => 'Q-BRIDGE-MIB::dot1qConstraintTypeDefault',
|
||||
'dot1vProtocol' => '1.3.6.1.2.1.17.7.1.5',
|
||||
'dot1vProtocolGroupTable' => '1.3.6.1.2.1.17.7.1.5.1',
|
||||
'dot1vProtocolGroupEntry' => '1.3.6.1.2.1.17.7.1.5.1.1',
|
||||
'dot1vProtocolTemplateFrameType' => '1.3.6.1.2.1.17.7.1.5.1.1.1',
|
||||
'dot1vProtocolTemplateFrameTypeDefinition' => 'Q-BRIDGE-MIB::dot1vProtocolTemplateFrameType',
|
||||
'dot1vProtocolTemplateProtocolValue' => '1.3.6.1.2.1.17.7.1.5.1.1.2',
|
||||
'dot1vProtocolGroupId' => '1.3.6.1.2.1.17.7.1.5.1.1.3',
|
||||
'dot1vProtocolGroupRowStatus' => '1.3.6.1.2.1.17.7.1.5.1.1.4',
|
||||
'dot1vProtocolPortTable' => '1.3.6.1.2.1.17.7.1.5.2',
|
||||
'dot1vProtocolPortEntry' => '1.3.6.1.2.1.17.7.1.5.2.1',
|
||||
'dot1vProtocolPortGroupId' => '1.3.6.1.2.1.17.7.1.5.2.1.1',
|
||||
'dot1vProtocolPortGroupVid' => '1.3.6.1.2.1.17.7.1.5.2.1.2',
|
||||
'dot1vProtocolPortRowStatus' => '1.3.6.1.2.1.17.7.1.5.2.1.3',
|
||||
'qBridgeConformance' => '1.3.6.1.2.1.17.7.2',
|
||||
'qBridgeGroups' => '1.3.6.1.2.1.17.7.2.1',
|
||||
'qBridgeCompliances' => '1.3.6.1.2.1.17.7.2.2',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'Q-BRIDGE-MIB'} = {
|
||||
'dot1vProtocolTemplateFrameType' => {
|
||||
'1' => 'ethernet',
|
||||
'2' => 'rfc1042',
|
||||
'3' => 'snap8021H',
|
||||
'4' => 'snapOther',
|
||||
'5' => 'llcOther',
|
||||
},
|
||||
'dot1qVlanVersionNumber' => {
|
||||
'1' => 'version1',
|
||||
},
|
||||
'dot1qTpFdbStatus' => {
|
||||
'1' => 'other',
|
||||
'2' => 'invalid',
|
||||
'3' => 'learned',
|
||||
'4' => 'self',
|
||||
'5' => 'mgmt',
|
||||
},
|
||||
'dot1qConstraintType' => {
|
||||
'1' => 'independent',
|
||||
'2' => 'shared',
|
||||
},
|
||||
'dot1qConstraintTypeDefault' => {
|
||||
'1' => 'independent',
|
||||
'2' => 'shared',
|
||||
},
|
||||
'dot1qStaticUnicastStatus' => {
|
||||
'1' => 'other',
|
||||
'2' => 'invalid',
|
||||
'3' => 'permanent',
|
||||
'4' => 'deleteOnReset',
|
||||
'5' => 'deleteOnTimeout',
|
||||
},
|
||||
'dot1qStaticMulticastStatus' => {
|
||||
'1' => 'other',
|
||||
'2' => 'invalid',
|
||||
'3' => 'permanent',
|
||||
'4' => 'deleteOnReset',
|
||||
'5' => 'deleteOnTimeout',
|
||||
},
|
||||
'dot1qPortAcceptableFrameTypes' => {
|
||||
'1' => 'admitAll',
|
||||
'2' => 'admitOnlyVlanTagged',
|
||||
},
|
||||
'dot1qVlanStatus' => {
|
||||
'1' => 'other',
|
||||
'2' => 'permanent',
|
||||
'3' => 'dynamicGvrp',
|
||||
},
|
||||
'PortList' => sub {
|
||||
my ($portlist) = @_;
|
||||
my @ports = ();
|
||||
my @octets = unpack("C*", $portlist);
|
||||
my $octetnumber = 0;
|
||||
foreach my $octet (@octets) {
|
||||
# octet represents ports $octetnumber*8+(1..8)
|
||||
my $index = 1;
|
||||
while ($octet) {
|
||||
next unless $octet & 0x80;
|
||||
push(@ports, $octetnumber * 8 + $index);
|
||||
} continue {
|
||||
++$index;
|
||||
$octet = ($octet << 1) & 0xff;
|
||||
}
|
||||
} continue {
|
||||
++$octetnumber;
|
||||
}
|
||||
@ports = do { my %seen; map { $seen{$_}++ ? () : $_ } @ports };
|
||||
return \@ports;
|
||||
},
|
||||
};
|
||||
|
|
@ -1,62 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::STORAGEMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'STORAGE-MIB'} = {
|
||||
url => '',
|
||||
name => 'STORAGE-MIB',
|
||||
};
|
||||
|
||||
#$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'STORAGE-MIB'} =
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'STORAGE-MIB'} = {
|
||||
'storage' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14',
|
||||
'storageProfileStatsTable' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1',
|
||||
'storageProfileStatsEntry' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1',
|
||||
'storageProfileOrgId' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.1',
|
||||
'storageProfileId' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.2',
|
||||
'storageProfileOrgName' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.3',
|
||||
'storageProfileName' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.4',
|
||||
'storageProfileFileOpenCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.5',
|
||||
'storageProfileFileCloseCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.6',
|
||||
'storageProfileFileOpenFailCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.7',
|
||||
'storageProfileFileWriteCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.8',
|
||||
'storageProfileFileReadCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.9',
|
||||
'storageProfileFileAsyncWriteCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.10',
|
||||
'storageProfileFileAsyncReadCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.11',
|
||||
'storageProfileAvailableHardDiskSize' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.12',
|
||||
'storageProfileUsedHardDiskSize' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.13',
|
||||
'storageProfileUsedHardDiskCommonPoolSize' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.14',
|
||||
'storageProfileHardDiskAllocationCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.15',
|
||||
'storageProfileHardDiskCmnPoolAllocationCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.16',
|
||||
'storageProfileHardDiskAllocationFailCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.17',
|
||||
'storageProfileAvailableRamDiskSize' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.18',
|
||||
'storageProfileUsedRamDiskSize' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.19',
|
||||
'storageProfileUsedRamDiskCommonPoolSize' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.20',
|
||||
'storageProfileRamDiskAllocationCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.21',
|
||||
'storageProfileRamDiskCmnPoolAllocationCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.22',
|
||||
'storageProfileRamDiskAllocationFailCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.1.1.23',
|
||||
'storageGlobalProfileStatsTable' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2',
|
||||
'storageGlobalProfileStatsEntry' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1',
|
||||
'storageGlobalProfileOrgId' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.1',
|
||||
'storageGlobalProfileId' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.2',
|
||||
'storageGlobalProfileOrgName' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.3',
|
||||
'storageGlobalProfileName' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.4',
|
||||
'storageGlobalProfileFileOpenCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.5',
|
||||
'storageGlobalProfileFileCloseCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.6',
|
||||
'storageGlobalProfileFileOpenFailCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.7',
|
||||
'storageGlobalProfileFileWriteCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.8',
|
||||
'storageGlobalProfileFileReadCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.9',
|
||||
'storageGlobalProfileFileAsyncWriteCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.10',
|
||||
'storageGlobalProfileFileAsyncReadCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.11',
|
||||
'storageGlobalProfileAvailableHardDiskSize' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.12',
|
||||
'storageGlobalProfileUsedHardDiskSize' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.13',
|
||||
'storageGlobalProfileHardDiskAllocationCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.14',
|
||||
'storageGlobalProfileHardDiskAllocationFailCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.15',
|
||||
'storageGlobalProfileAvailableRamDiskSize' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.16',
|
||||
'storageGlobalProfileUsedRamDiskSize' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.17',
|
||||
'storageGlobalProfileRamDiskAllocationCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.18',
|
||||
'storageGlobalProfileRamDiskAllocationFailCount' => '1.3.6.1.4.1.42359.2.2.1.2.1.3.14.2.1.19',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'STORAGE-MIB'} = {
|
||||
};
|
||||
|
||||
|
|
@ -1,137 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::VIPTELAHARDWARE;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'VIPTELA-HARDWARE'} = {
|
||||
url => '',
|
||||
name => 'VIPTELA-HARDWARE',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'VIPTELA-HARDWARE'} =
|
||||
'1.3.6.1.4.1.41916.3';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'VIPTELA-HARDWARE'} = {
|
||||
'viptela-hardware' => '1.3.6.1.4.1.41916.3',
|
||||
'hardware' => '1.3.6.1.4.1.41916.3.1',
|
||||
'hardwareInventoryTable' => '1.3.6.1.4.1.41916.3.1.1',
|
||||
'hardwareInventoryEntry' => '1.3.6.1.4.1.41916.3.1.1.1',
|
||||
'hardwareInventoryHwType' => '1.3.6.1.4.1.41916.3.1.1.1.1',
|
||||
'hardwareInventoryHwTypeDefinition' => 'VIPTELA-HARDWARE::HwTypeEnum',
|
||||
'hardwareInventoryHwDevIndex' => '1.3.6.1.4.1.41916.3.1.1.1.2',
|
||||
'hardwareInventoryVersion' => '1.3.6.1.4.1.41916.3.1.1.1.3',
|
||||
'hardwareInventoryPartNumber' => '1.3.6.1.4.1.41916.3.1.1.1.4',
|
||||
'hardwareInventorySerialNumber' => '1.3.6.1.4.1.41916.3.1.1.1.5',
|
||||
'hardwareInventoryHwDescription' => '1.3.6.1.4.1.41916.3.1.1.1.6',
|
||||
'hardwareInventoryPartInfo' => '1.3.6.1.4.1.41916.3.1.1.1.7',
|
||||
'hardwareEnvironmentTable' => '1.3.6.1.4.1.41916.3.1.2',
|
||||
'hardwareEnvironmentEntry' => '1.3.6.1.4.1.41916.3.1.2.1',
|
||||
'hardwareEnvironmentHwClass' => '1.3.6.1.4.1.41916.3.1.2.1.1',
|
||||
'hardwareEnvironmentHwClassDefinition' => 'VIPTELA-HARDWARE::hardwareEnvironmentHwClass',
|
||||
'hardwareEnvironmentHwItem' => '1.3.6.1.4.1.41916.3.1.2.1.2',
|
||||
'hardwareEnvironmentHwDevIndex' => '1.3.6.1.4.1.41916.3.1.2.1.3',
|
||||
'hardwareEnvironmentStatus' => '1.3.6.1.4.1.41916.3.1.2.1.4',
|
||||
'hardwareEnvironmentStatusDefinition' => 'VIPTELA-HARDWARE::hardwareEnvironmentStatus',
|
||||
'hardwareEnvironmentMeasurement' => '1.3.6.1.4.1.41916.3.1.2.1.5',
|
||||
'hardwareAlarmsTable' => '1.3.6.1.4.1.41916.3.1.3',
|
||||
'hardwareAlarmsEntry' => '1.3.6.1.4.1.41916.3.1.3.1',
|
||||
'hardwareAlarmsAlarmId' => '1.3.6.1.4.1.41916.3.1.3.1.1',
|
||||
'hardwareAlarmsAlarmName' => '1.3.6.1.4.1.41916.3.1.3.1.2',
|
||||
'hardwareAlarmsAlarmInstance' => '1.3.6.1.4.1.41916.3.1.3.1.3',
|
||||
'hardwareAlarmsAlarmTime' => '1.3.6.1.4.1.41916.3.1.3.1.4',
|
||||
'hardwareAlarmsAlarmCategory' => '1.3.6.1.4.1.41916.3.1.3.1.5',
|
||||
'hardwareAlarmsAlarmCategoryDefinition' => 'VIPTELA-HARDWARE::hardwareAlarmsAlarmCategory',
|
||||
'hardwareAlarmsAlarmDescription' => '1.3.6.1.4.1.41916.3.1.3.1.6',
|
||||
'hardwareTemperatureThresholdsTable' => '1.3.6.1.4.1.41916.3.1.4',
|
||||
'hardwareTemperatureThresholdsEntry' => '1.3.6.1.4.1.41916.3.1.4.1',
|
||||
'hardwareTemperatureThresholdsHwSensorType' => '1.3.6.1.4.1.41916.3.1.4.1.1',
|
||||
'hardwareTemperatureThresholdsHwSensorTypeDefinition' => 'VIPTELA-HARDWARE::HwSensorTypeEnum',
|
||||
'hardwareTemperatureThresholdsHwDevIndex' => '1.3.6.1.4.1.41916.3.1.4.1.2',
|
||||
'hardwareTemperatureThresholdsFanSpeedNormal' => '1.3.6.1.4.1.41916.3.1.4.1.3',
|
||||
'hardwareTemperatureThresholdsYellowAlarmNormal' => '1.3.6.1.4.1.41916.3.1.4.1.4',
|
||||
'hardwareTemperatureThresholdsYellowAlarmBadFan' => '1.3.6.1.4.1.41916.3.1.4.1.5',
|
||||
'hardwareTemperatureThresholdsRedAlarmNormal' => '1.3.6.1.4.1.41916.3.1.4.1.6',
|
||||
'hardwareTemperatureThresholdsRedAlarmBadFan' => '1.3.6.1.4.1.41916.3.1.4.1.7',
|
||||
'hardwarePoeTable' => '1.3.6.1.4.1.41916.3.1.5',
|
||||
'hardwarePoeEntry' => '1.3.6.1.4.1.41916.3.1.5.1',
|
||||
'hardwarePoeIfname' => '1.3.6.1.4.1.41916.3.1.5.1.1',
|
||||
'hardwarePoeIfStatus' => '1.3.6.1.4.1.41916.3.1.5.1.2',
|
||||
'hardwarePoeStatus' => '1.3.6.1.4.1.41916.3.1.5.1.3',
|
||||
'hardwarePoeMaxPower' => '1.3.6.1.4.1.41916.3.1.5.1.4',
|
||||
'hardwarePoeUsedPower' => '1.3.6.1.4.1.41916.3.1.5.1.5',
|
||||
'hardwarePoePdClass' => '1.3.6.1.4.1.41916.3.1.5.1.6',
|
||||
'hardwarePoePdClassDefinition' => 'VIPTELA-HARDWARE::HwPoeClassEnum',
|
||||
'viptelaDevices' => '1.3.6.1.4.1.41916.3.2',
|
||||
'vsmart' => '1.3.6.1.4.1.41916.3.2.1',
|
||||
'vmanage' => '1.3.6.1.4.1.41916.3.2.2',
|
||||
'vbondSoftware' => '1.3.6.1.4.1.41916.3.2.3',
|
||||
'vedge1000AC' => '1.3.6.1.4.1.41916.3.2.4',
|
||||
'vedge2000AC' => '1.3.6.1.4.1.41916.3.2.5',
|
||||
'vedge100AC' => '1.3.6.1.4.1.41916.3.2.6',
|
||||
'vedge100W2AC' => '1.3.6.1.4.1.41916.3.2.7',
|
||||
'vedge100WMAC' => '1.3.6.1.4.1.41916.3.2.8',
|
||||
'vedge100M2AC' => '1.3.6.1.4.1.41916.3.2.9',
|
||||
'vedge100MAC' => '1.3.6.1.4.1.41916.3.2.10',
|
||||
'vedge100BAC' => '1.3.6.1.4.1.41916.3.2.11',
|
||||
'vedgeCloud' => '1.3.6.1.4.1.41916.3.2.12',
|
||||
'vcontainer' => '1.3.6.1.4.1.41916.3.2.13',
|
||||
'vedge5000AC' => '1.3.6.1.4.1.41916.3.2.14',
|
||||
'vedge101BAC' => '1.3.6.1.4.1.41916.3.2.15',
|
||||
'vedge1001AC' => '1.3.6.1.4.1.41916.3.2.16',
|
||||
'vedge101MAC' => '1.3.6.1.4.1.41916.3.2.17',
|
||||
'vedgeISR11004GAC' => '1.3.6.1.4.1.41916.3.2.18',
|
||||
'vedgeISR11006GAC' => '1.3.6.1.4.1.41916.3.2.19',
|
||||
'vedgeISR11004GLTEAC' => '1.3.6.1.4.1.41916.3.2.20',
|
||||
'vedgeISR1100X4GAC' => '1.3.6.1.4.1.41916.3.2.21',
|
||||
'vedgeISR1100X6GAC' => '1.3.6.1.4.1.41916.3.2.22',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'VIPTELA-HARDWARE'} = {
|
||||
'hardwareEnvironmentStatus' => {
|
||||
'0' => 'oK',
|
||||
'1' => 'down',
|
||||
'2' => 'failed',
|
||||
},
|
||||
'HwPoeClassEnum' => {
|
||||
'0' => 'unknown',
|
||||
'1' => 'class-1',
|
||||
'2' => 'class-2',
|
||||
'3' => 'class-3',
|
||||
'4' => 'class-4',
|
||||
'5' => 'reserved',
|
||||
'6' => 'class-0',
|
||||
'7' => 'over-current',
|
||||
},
|
||||
'hardwareAlarmsAlarmCategory' => {
|
||||
'0' => 'critical',
|
||||
'1' => 'major',
|
||||
'2' => 'minor',
|
||||
},
|
||||
'HwTypeEnum' => {
|
||||
'0' => 'unknown',
|
||||
'1' => 'chassis',
|
||||
'2' => 'cPU',
|
||||
'3' => 'dRAM',
|
||||
'4' => 'flash',
|
||||
'5' => 'eMMC',
|
||||
'6' => 'sDCard',
|
||||
'7' => 'uSB',
|
||||
'8' => 'pIM',
|
||||
'9' => 'transceiver',
|
||||
'10' => 'fanTray',
|
||||
'11' => 'pEM',
|
||||
'12' => 'nIM',
|
||||
},
|
||||
'HwSensorTypeEnum' => {
|
||||
'0' => 'board',
|
||||
'1' => 'cPU-Junction',
|
||||
'2' => 'dRAM',
|
||||
'3' => 'pIM',
|
||||
},
|
||||
'hardwareEnvironmentHwClass' => {
|
||||
'0' => 'temperatureSensors',
|
||||
'1' => 'fans',
|
||||
'2' => 'pEM',
|
||||
'3' => 'pIM',
|
||||
'4' => 'uSB',
|
||||
'5' => 'lED',
|
||||
'6' => 'nIM',
|
||||
},
|
||||
};
|
||||
|
|
@ -1,934 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::VIPTELAOPERSYSTEM;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'VIPTELA-OPER-SYSTEM'} = {
|
||||
url => '',
|
||||
name => 'VIPTELA-OPER-SYSTEM',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'VIPTELA-OPER-SYSTEM'} =
|
||||
'1.3.6.1.4.1.41916.11';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'VIPTELA-OPER-SYSTEM'} = {
|
||||
'viptela-oper-system' => '1.3.6.1.4.1.41916.11',
|
||||
'systemStatus' => '1.3.6.1.4.1.41916.11.1',
|
||||
'systemStatusPersonality' => '1.3.6.1.4.1.41916.11.1.1',
|
||||
'systemStatusVersion' => '1.3.6.1.4.1.41916.11.1.2',
|
||||
'systemStatusLoghostStatus' => '1.3.6.1.4.1.41916.11.1.3',
|
||||
'systemStatusLoghostName' => '1.3.6.1.4.1.41916.11.1.4',
|
||||
'systemStatusDiskStatus' => '1.3.6.1.4.1.41916.11.1.5',
|
||||
'systemStatusRebootReason' => '1.3.6.1.4.1.41916.11.1.6',
|
||||
'systemStatusCoreFilesStatus' => '1.3.6.1.4.1.41916.11.1.7',
|
||||
'systemStatusUptime' => '1.3.6.1.4.1.41916.11.1.8',
|
||||
'systemStatusMin1Avg' => '1.3.6.1.4.1.41916.11.1.9',
|
||||
'systemStatusMin5Avg' => '1.3.6.1.4.1.41916.11.1.10',
|
||||
'systemStatusMin15Avg' => '1.3.6.1.4.1.41916.11.1.11',
|
||||
'systemStatusTotalp' => '1.3.6.1.4.1.41916.11.1.12',
|
||||
'systemStatusRunningp' => '1.3.6.1.4.1.41916.11.1.13',
|
||||
'systemStatusCpuUser' => '1.3.6.1.4.1.41916.11.1.14',
|
||||
'systemStatusCpuSystem' => '1.3.6.1.4.1.41916.11.1.15',
|
||||
'systemStatusCpuIdle' => '1.3.6.1.4.1.41916.11.1.16',
|
||||
'systemStatusMemTotal' => '1.3.6.1.4.1.41916.11.1.17',
|
||||
'systemStatusMemUsed' => '1.3.6.1.4.1.41916.11.1.18',
|
||||
'systemStatusMemFree' => '1.3.6.1.4.1.41916.11.1.19',
|
||||
'systemStatusMemBuffers' => '1.3.6.1.4.1.41916.11.1.20',
|
||||
'systemStatusMemCached' => '1.3.6.1.4.1.41916.11.1.21',
|
||||
'systemStatusDiskFs' => '1.3.6.1.4.1.41916.11.1.22',
|
||||
'systemStatusDiskSize' => '1.3.6.1.4.1.41916.11.1.23',
|
||||
'systemStatusDiskUsed' => '1.3.6.1.4.1.41916.11.1.24',
|
||||
'systemStatusDiskAvail' => '1.3.6.1.4.1.41916.11.1.25',
|
||||
'systemStatusDiskUse' => '1.3.6.1.4.1.41916.11.1.26',
|
||||
'systemStatusDiskTotalBytes' => '1.3.6.1.4.1.41916.11.1.27',
|
||||
'systemStatusDiskUsedBytes' => '1.3.6.1.4.1.41916.11.1.28',
|
||||
'systemStatusDiskAvailBytes' => '1.3.6.1.4.1.41916.11.1.29',
|
||||
'systemStatusDiskMount' => '1.3.6.1.4.1.41916.11.1.30',
|
||||
'systemStatusServices' => '1.3.6.1.4.1.41916.11.1.31',
|
||||
'systemStatusBoardType' => '1.3.6.1.4.1.41916.11.1.32',
|
||||
'systemStatusBoardTypeDefinition' => 'VIPTELA-OPER-SYSTEM::systemStatusBoardType',
|
||||
'systemStatusConfigDateDateTimeString' => '1.3.6.1.4.1.41916.11.1.33',
|
||||
'systemStatusCurrentDateDateTimeString' => '1.3.6.1.4.1.41916.11.1.34',
|
||||
'systemStatusStandaloneVbond' => '1.3.6.1.4.1.41916.11.1.35',
|
||||
'systemStatusVmanaged' => '1.3.6.1.4.1.41916.11.1.36',
|
||||
'systemStatusPseudoConfirmCommit' => '1.3.6.1.4.1.41916.11.1.37',
|
||||
'systemStatusConfigTemplateName' => '1.3.6.1.4.1.41916.11.1.38',
|
||||
'systemStatusPolicyTemplateName' => '1.3.6.1.4.1.41916.11.1.39',
|
||||
'systemStatusPolicyTemplateVersion' => '1.3.6.1.4.1.41916.11.1.40',
|
||||
'systemStatusVmanageStorageDiskFs' => '1.3.6.1.4.1.41916.11.1.41',
|
||||
'systemStatusVmanageStorageDiskSize' => '1.3.6.1.4.1.41916.11.1.42',
|
||||
'systemStatusVmanageStorageDiskUsed' => '1.3.6.1.4.1.41916.11.1.43',
|
||||
'systemStatusVmanageStorageDiskAvail' => '1.3.6.1.4.1.41916.11.1.44',
|
||||
'systemStatusVmanageStorageDiskUse' => '1.3.6.1.4.1.41916.11.1.45',
|
||||
'systemStatusVmanageStorageDiskMount' => '1.3.6.1.4.1.41916.11.1.46',
|
||||
'systemStatusModel' => '1.3.6.1.4.1.41916.11.1.47',
|
||||
'systemStatusModelDefinition' => 'VIPTELA-OPER-SYSTEM::systemStatusModel',
|
||||
'systemStatusRebootType' => '1.3.6.1.4.1.41916.11.1.48',
|
||||
'systemStatusTotalCpuCount' => '1.3.6.1.4.1.41916.11.1.49',
|
||||
'systemStatusFpCpuCount' => '1.3.6.1.4.1.41916.11.1.50',
|
||||
'systemStatusLinuxCpuCount' => '1.3.6.1.4.1.41916.11.1.51',
|
||||
'systemStatusBootloaderVersion' => '1.3.6.1.4.1.41916.11.1.52',
|
||||
'systemStatusBuildNumber' => '1.3.6.1.4.1.41916.11.1.53',
|
||||
'systemStatusState' => '1.3.6.1.4.1.41916.11.1.54',
|
||||
'systemStatusStateDefinition' => 'VIPTELA-OPER-SYSTEM::systemStatusState',
|
||||
'systemStatusSystemStateDescription' => '1.3.6.1.4.1.41916.11.1.55',
|
||||
'systemStatusSystemModelSku' => '1.3.6.1.4.1.41916.11.1.56',
|
||||
'systemStatusTcpdCpuCount' => '1.3.6.1.4.1.41916.11.1.57',
|
||||
'systemStatusSystemFipsMode' => '1.3.6.1.4.1.41916.11.1.58',
|
||||
'systemStatusSystemFipsModeDefinition' => 'VIPTELA-OPER-SYSTEM::systemStatusSystemFipsMode',
|
||||
'systemStatusSystemTestbedMode' => '1.3.6.1.4.1.41916.11.1.59',
|
||||
'systemStatusSystemCtrlCompatibility' => '1.3.6.1.4.1.41916.11.1.60',
|
||||
'systemStatusSystemTimezone' => '1.3.6.1.4.1.41916.11.1.61',
|
||||
'systemStatusSystemEngineeringSigned' => '1.3.6.1.4.1.41916.11.1.62',
|
||||
'systemStatusSystemLiLicenseEnabled' => '1.3.6.1.4.1.41916.11.1.63',
|
||||
'systemStatusSystemChassisSerialNumber' => '1.3.6.1.4.1.41916.11.1.64',
|
||||
'systemStatusProcs' => '1.3.6.1.4.1.41916.11.1.100',
|
||||
'systemStatusDiskBsize' => '1.3.6.1.4.1.41916.11.1.101',
|
||||
'systemStatusDiskBlocks' => '1.3.6.1.4.1.41916.11.1.102',
|
||||
'systemStatusDiskBused' => '1.3.6.1.4.1.41916.11.1.103',
|
||||
'systemStatusDiskBavail' => '1.3.6.1.4.1.41916.11.1.104',
|
||||
'systemStatistics' => '1.3.6.1.4.1.41916.11.2',
|
||||
'systemStatisticsRxPkts' => '1.3.6.1.4.1.41916.11.2.1',
|
||||
'systemStatisticsRxDrops' => '1.3.6.1.4.1.41916.11.2.2',
|
||||
'systemStatisticsIpFwd' => '1.3.6.1.4.1.41916.11.2.3',
|
||||
'systemStatisticsIpFwdMirrorPkts' => '1.3.6.1.4.1.41916.11.2.4',
|
||||
'systemStatisticsIpFwdArp' => '1.3.6.1.4.1.41916.11.2.5',
|
||||
'systemStatisticsIpFwdToEgress' => '1.3.6.1.4.1.41916.11.2.6',
|
||||
'systemStatisticsIpFwdInvalidOil' => '1.3.6.1.4.1.41916.11.2.7',
|
||||
'systemStatisticsIpV6McastDrops' => '1.3.6.1.4.1.41916.11.2.8',
|
||||
'systemStatisticsIpFwdMcastInvalidIif' => '1.3.6.1.4.1.41916.11.2.9',
|
||||
'systemStatisticsIpFwdMcastLifeExceededDrops' => '1.3.6.1.4.1.41916.11.2.10',
|
||||
'systemStatisticsRxMcastThresholdExceeded' => '1.3.6.1.4.1.41916.11.2.11',
|
||||
'systemStatisticsIpFwdInvalidTunOil' => '1.3.6.1.4.1.41916.11.2.12',
|
||||
'systemStatisticsRxMcastPolicyFwdDrops' => '1.3.6.1.4.1.41916.11.2.13',
|
||||
'systemStatisticsRxMcastMirrorFwdDrops' => '1.3.6.1.4.1.41916.11.2.14',
|
||||
'systemStatisticsIpFwdNullMcastGroup' => '1.3.6.1.4.1.41916.11.2.15',
|
||||
'systemStatisticsIpFwdNullNhop' => '1.3.6.1.4.1.41916.11.2.16',
|
||||
'systemStatisticsIpFwdUnknownNhType' => '1.3.6.1.4.1.41916.11.2.17',
|
||||
'systemStatisticsIpFwdNatOnTunnel' => '1.3.6.1.4.1.41916.11.2.18',
|
||||
'systemStatisticsIpFwdToCpu' => '1.3.6.1.4.1.41916.11.2.19',
|
||||
'systemStatisticsIpFwdToCpuNatXlates' => '1.3.6.1.4.1.41916.11.2.20',
|
||||
'systemStatisticsIpFwdFromCpuNatXlates' => '1.3.6.1.4.1.41916.11.2.21',
|
||||
'systemStatisticsIpFwdToCpuNatDrops' => '1.3.6.1.4.1.41916.11.2.22',
|
||||
'systemStatisticsIpFwdFromCpuNonLocal' => '1.3.6.1.4.1.41916.11.2.23',
|
||||
'systemStatisticsIpFwdRxIpsec' => '1.3.6.1.4.1.41916.11.2.24',
|
||||
'systemStatisticsIpFwdMcastPkts' => '1.3.6.1.4.1.41916.11.2.25',
|
||||
'systemStatisticsIpFwdRxGre' => '1.3.6.1.4.1.41916.11.2.26',
|
||||
'systemStatisticsNatXlateOutbound' => '1.3.6.1.4.1.41916.11.2.27',
|
||||
'systemStatisticsNatXlateOutboundDrops' => '1.3.6.1.4.1.41916.11.2.28',
|
||||
'systemStatisticsNatXlateInbound' => '1.3.6.1.4.1.41916.11.2.29',
|
||||
'systemStatisticsNatXlateInboundFail' => '1.3.6.1.4.1.41916.11.2.30',
|
||||
'systemStatisticsCflowdPkts' => '1.3.6.1.4.1.41916.11.2.31',
|
||||
'systemStatisticsNoNatNexthop' => '1.3.6.1.4.1.41916.11.2.32',
|
||||
'systemStatisticsRxBcast' => '1.3.6.1.4.1.41916.11.2.33',
|
||||
'systemStatisticsRxMcast' => '1.3.6.1.4.1.41916.11.2.34',
|
||||
'systemStatisticsRxMcastLinkLocal' => '1.3.6.1.4.1.41916.11.2.35',
|
||||
'systemStatisticsRxMcastFilterToCpu' => '1.3.6.1.4.1.41916.11.2.36',
|
||||
'systemStatisticsRxMcastFilterToCpuAndFwd' => '1.3.6.1.4.1.41916.11.2.37',
|
||||
'systemStatisticsRxGreDecap' => '1.3.6.1.4.1.41916.11.2.38',
|
||||
'systemStatisticsRxGreDrops' => '1.3.6.1.4.1.41916.11.2.39',
|
||||
'systemStatisticsRxGrePolicerDrops' => '1.3.6.1.4.1.41916.11.2.40',
|
||||
'systemStatisticsRxImplicitAclDrops' => '1.3.6.1.4.1.41916.11.2.41',
|
||||
'systemStatisticsRxIpsecDecap' => '1.3.6.1.4.1.41916.11.2.42',
|
||||
'systemStatisticsRxIp6IpsecDrops' => '1.3.6.1.4.1.41916.11.2.43',
|
||||
'systemStatisticsRxSaIpsecDrops' => '1.3.6.1.4.1.41916.11.2.44',
|
||||
'systemStatisticsRxInvalidIpsecPktSize' => '1.3.6.1.4.1.41916.11.2.45',
|
||||
'systemStatisticsRxSpiIpsecDrops' => '1.3.6.1.4.1.41916.11.2.46',
|
||||
'systemStatisticsRxReplayDrops' => '1.3.6.1.4.1.41916.11.2.47',
|
||||
'systemStatisticsRxReplayIntegrityDrops' => '1.3.6.1.4.1.41916.11.2.48',
|
||||
'systemStatisticsRxUnexpectedReplayDrops' => '1.3.6.1.4.1.41916.11.2.49',
|
||||
'systemStatisticsRxNextHdrIpsecDrops' => '1.3.6.1.4.1.41916.11.2.50',
|
||||
'systemStatisticsRxMacCompareIpsecDrops' => '1.3.6.1.4.1.41916.11.2.51',
|
||||
'systemStatisticsRxErrPadIpsecDrops' => '1.3.6.1.4.1.41916.11.2.52',
|
||||
'systemStatisticsRxIpsecPolicerDrops' => '1.3.6.1.4.1.41916.11.2.53',
|
||||
'systemStatisticsRxPreIpsecPkts' => '1.3.6.1.4.1.41916.11.2.54',
|
||||
'systemStatisticsRxPreIpsecDrops' => '1.3.6.1.4.1.41916.11.2.55',
|
||||
'systemStatisticsRxPreIpsecPolicerDrops' => '1.3.6.1.4.1.41916.11.2.56',
|
||||
'systemStatisticsRxPreIpsecDecap' => '1.3.6.1.4.1.41916.11.2.57',
|
||||
'systemStatisticsOpensslAesDecrypt' => '1.3.6.1.4.1.41916.11.2.58',
|
||||
'systemStatisticsRxIpsecBadInner' => '1.3.6.1.4.1.41916.11.2.59',
|
||||
'systemStatisticsRxBadLabel' => '1.3.6.1.4.1.41916.11.2.60',
|
||||
'systemStatisticsServiceLabelFwd' => '1.3.6.1.4.1.41916.11.2.61',
|
||||
'systemStatisticsRxHostLocalPkt' => '1.3.6.1.4.1.41916.11.2.62',
|
||||
'systemStatisticsRxHostMirrorDrops' => '1.3.6.1.4.1.41916.11.2.63',
|
||||
'systemStatisticsRxTunneledPkts' => '1.3.6.1.4.1.41916.11.2.64',
|
||||
'systemStatisticsRxCpNonLocal' => '1.3.6.1.4.1.41916.11.2.65',
|
||||
'systemStatisticsTxIfNotPreferred' => '1.3.6.1.4.1.41916.11.2.66',
|
||||
'systemStatisticsTxVsmartDrop' => '1.3.6.1.4.1.41916.11.2.67',
|
||||
'systemStatisticsRxInvalidPort' => '1.3.6.1.4.1.41916.11.2.68',
|
||||
'systemStatisticsPortDisabledRx' => '1.3.6.1.4.1.41916.11.2.69',
|
||||
'systemStatisticsIpDisabledRx' => '1.3.6.1.4.1.41916.11.2.70',
|
||||
'systemStatisticsRxInvalidQtags' => '1.3.6.1.4.1.41916.11.2.71',
|
||||
'systemStatisticsRxNonIpDrops' => '1.3.6.1.4.1.41916.11.2.72',
|
||||
'systemStatisticsRxIpErrs' => '1.3.6.1.4.1.41916.11.2.73',
|
||||
'systemStatisticsPkoWredDrops' => '1.3.6.1.4.1.41916.11.2.74',
|
||||
'systemStatisticsTxQueueExceeded' => '1.3.6.1.4.1.41916.11.2.75',
|
||||
'systemStatisticsRxPolicerDrops' => '1.3.6.1.4.1.41916.11.2.76',
|
||||
'systemStatisticsRouteToHost' => '1.3.6.1.4.1.41916.11.2.77',
|
||||
'systemStatisticsTtlExpired' => '1.3.6.1.4.1.41916.11.2.78',
|
||||
'systemStatisticsIcmpRedirect' => '1.3.6.1.4.1.41916.11.2.79',
|
||||
'systemStatisticsBfdRxNonIp' => '1.3.6.1.4.1.41916.11.2.80',
|
||||
'systemStatisticsBfdTxRecordChanged' => '1.3.6.1.4.1.41916.11.2.81',
|
||||
'systemStatisticsBfdRxRecordInvalid' => '1.3.6.1.4.1.41916.11.2.82',
|
||||
'systemStatisticsBfdRxParseErr' => '1.3.6.1.4.1.41916.11.2.83',
|
||||
'systemStatisticsRxArpRateLimitDrops' => '1.3.6.1.4.1.41916.11.2.84',
|
||||
'systemStatisticsRxArpNonLocalDrops' => '1.3.6.1.4.1.41916.11.2.85',
|
||||
'systemStatisticsRxArpReqs' => '1.3.6.1.4.1.41916.11.2.86',
|
||||
'systemStatisticsRxArpReplies' => '1.3.6.1.4.1.41916.11.2.87',
|
||||
'systemStatisticsArpAddFail' => '1.3.6.1.4.1.41916.11.2.88',
|
||||
'systemStatisticsUnknownNhType' => '1.3.6.1.4.1.41916.11.2.89',
|
||||
'systemStatisticsBufAllocFails' => '1.3.6.1.4.1.41916.11.2.90',
|
||||
'systemStatisticsEcmpDiscards' => '1.3.6.1.4.1.41916.11.2.91',
|
||||
'systemStatisticsAppRoutePolicyDiscards' => '1.3.6.1.4.1.41916.11.2.92',
|
||||
'systemStatisticsCbfDiscards' => '1.3.6.1.4.1.41916.11.2.93',
|
||||
'systemStatisticsFilterDrops' => '1.3.6.1.4.1.41916.11.2.94',
|
||||
'systemStatisticsInvalidBackPtr' => '1.3.6.1.4.1.41916.11.2.95',
|
||||
'systemStatisticsTunnelLoopDrops' => '1.3.6.1.4.1.41916.11.2.96',
|
||||
'systemStatisticsToCpuPolicerDrops' => '1.3.6.1.4.1.41916.11.2.97',
|
||||
'systemStatisticsMirrorDrops' => '1.3.6.1.4.1.41916.11.2.98',
|
||||
'systemStatisticsSplitHorizonDrops' => '1.3.6.1.4.1.41916.11.2.99',
|
||||
'systemStatisticsRxNoTunIf' => '1.3.6.1.4.1.41916.11.2.100',
|
||||
'systemStatisticsTxPkts' => '1.3.6.1.4.1.41916.11.2.101',
|
||||
'systemStatisticsTxErrors' => '1.3.6.1.4.1.41916.11.2.102',
|
||||
'systemStatisticsTxBcast' => '1.3.6.1.4.1.41916.11.2.103',
|
||||
'systemStatisticsTxMcast' => '1.3.6.1.4.1.41916.11.2.104',
|
||||
'systemStatisticsPortDisabledTx' => '1.3.6.1.4.1.41916.11.2.105',
|
||||
'systemStatisticsIpDisabledTx' => '1.3.6.1.4.1.41916.11.2.106',
|
||||
'systemStatisticsTxFragmentNeeded' => '1.3.6.1.4.1.41916.11.2.107',
|
||||
'systemStatisticsTxMcastFragmentNeeded' => '1.3.6.1.4.1.41916.11.2.108',
|
||||
'systemStatisticsFragmentDfDrops' => '1.3.6.1.4.1.41916.11.2.109',
|
||||
'systemStatisticsTxFragments' => '1.3.6.1.4.1.41916.11.2.110',
|
||||
'systemStatisticsTxFragmentDrops' => '1.3.6.1.4.1.41916.11.2.111',
|
||||
'systemStatisticsTxFragmentFail' => '1.3.6.1.4.1.41916.11.2.112',
|
||||
'systemStatisticsTxFragmentAllocFail' => '1.3.6.1.4.1.41916.11.2.113',
|
||||
'systemStatisticsTunnelPmtuLowered' => '1.3.6.1.4.1.41916.11.2.114',
|
||||
'systemStatisticsTxGrePkts' => '1.3.6.1.4.1.41916.11.2.115',
|
||||
'systemStatisticsTxGreDrops' => '1.3.6.1.4.1.41916.11.2.116',
|
||||
'systemStatisticsTxGrePolicerDrops' => '1.3.6.1.4.1.41916.11.2.117',
|
||||
'systemStatisticsTxGreEncap' => '1.3.6.1.4.1.41916.11.2.118',
|
||||
'systemStatisticsTxIpsecPkts' => '1.3.6.1.4.1.41916.11.2.119',
|
||||
'systemStatisticsTxIpsecMcastPkts' => '1.3.6.1.4.1.41916.11.2.120',
|
||||
'systemStatisticsTxIp6IpsecDrops' => '1.3.6.1.4.1.41916.11.2.121',
|
||||
'systemStatisticsTxNoOutSaIpsecDrops' => '1.3.6.1.4.1.41916.11.2.122',
|
||||
'systemStatisticsTxNoTunnIpsecDrops' => '1.3.6.1.4.1.41916.11.2.123',
|
||||
'systemStatisticsTxIpsecPolicerDrops' => '1.3.6.1.4.1.41916.11.2.124',
|
||||
'systemStatisticsTxIpsecEncap' => '1.3.6.1.4.1.41916.11.2.125',
|
||||
'systemStatisticsTxIpsecMcastEncap' => '1.3.6.1.4.1.41916.11.2.126',
|
||||
'systemStatisticsTxPreIpsecPkts' => '1.3.6.1.4.1.41916.11.2.127',
|
||||
'systemStatisticsTxNoOutSaPreIpsecDrops' => '1.3.6.1.4.1.41916.11.2.128',
|
||||
'systemStatisticsTxNoTunnPreIpsecDrops' => '1.3.6.1.4.1.41916.11.2.129',
|
||||
'systemStatisticsOpensslAesEncrypt' => '1.3.6.1.4.1.41916.11.2.130',
|
||||
'systemStatisticsTxPreIpsecPolicerDrops' => '1.3.6.1.4.1.41916.11.2.131',
|
||||
'systemStatisticsTxPreIpsecEncap' => '1.3.6.1.4.1.41916.11.2.132',
|
||||
'systemStatisticsTxArpReplies' => '1.3.6.1.4.1.41916.11.2.133',
|
||||
'systemStatisticsTxArpReqs' => '1.3.6.1.4.1.41916.11.2.134',
|
||||
'systemStatisticsTxArpReqFail' => '1.3.6.1.4.1.41916.11.2.135',
|
||||
'systemStatisticsTxNoArpDrop' => '1.3.6.1.4.1.41916.11.2.136',
|
||||
'systemStatisticsTxArpRateLimitDrops' => '1.3.6.1.4.1.41916.11.2.137',
|
||||
'systemStatisticsTxIcmpPolicerDrops' => '1.3.6.1.4.1.41916.11.2.138',
|
||||
'systemStatisticsTxIcmpMirroredDrops' => '1.3.6.1.4.1.41916.11.2.139',
|
||||
'systemStatisticsBfdTxFail' => '1.3.6.1.4.1.41916.11.2.140',
|
||||
'systemStatisticsBfdAllocFail' => '1.3.6.1.4.1.41916.11.2.141',
|
||||
'systemStatisticsBfdTimerAddFail' => '1.3.6.1.4.1.41916.11.2.142',
|
||||
'systemStatisticsBfdTxPkts' => '1.3.6.1.4.1.41916.11.2.143',
|
||||
'systemStatisticsBfdRxPkts' => '1.3.6.1.4.1.41916.11.2.144',
|
||||
'systemStatisticsBfdRecDown' => '1.3.6.1.4.1.41916.11.2.145',
|
||||
'systemStatisticsBfdRecInvalid' => '1.3.6.1.4.1.41916.11.2.146',
|
||||
'systemStatisticsBfdLkupFail' => '1.3.6.1.4.1.41916.11.2.147',
|
||||
'systemStatisticsRxIcmpEchoRequests' => '1.3.6.1.4.1.41916.11.2.148',
|
||||
'systemStatisticsRxIcmpEchoReplies' => '1.3.6.1.4.1.41916.11.2.149',
|
||||
'systemStatisticsRxIcmpNetworkUnreach' => '1.3.6.1.4.1.41916.11.2.150',
|
||||
'systemStatisticsRxIcmpHostUnreach' => '1.3.6.1.4.1.41916.11.2.151',
|
||||
'systemStatisticsRxIcmpPortUnreach' => '1.3.6.1.4.1.41916.11.2.152',
|
||||
'systemStatisticsRxIcmpProtocolUnreach' => '1.3.6.1.4.1.41916.11.2.153',
|
||||
'systemStatisticsRxIcmpFragmentRequired' => '1.3.6.1.4.1.41916.11.2.154',
|
||||
'systemStatisticsRxIcmpDstUnreachOther' => '1.3.6.1.4.1.41916.11.2.155',
|
||||
'systemStatisticsRxIcmpTtlExpired' => '1.3.6.1.4.1.41916.11.2.156',
|
||||
'systemStatisticsRxIcmpRedirect' => '1.3.6.1.4.1.41916.11.2.157',
|
||||
'systemStatisticsRxIcmpSrcQuench' => '1.3.6.1.4.1.41916.11.2.158',
|
||||
'systemStatisticsRxIcmpBadIpHdr' => '1.3.6.1.4.1.41916.11.2.159',
|
||||
'systemStatisticsRxIcmpOtherTypes' => '1.3.6.1.4.1.41916.11.2.160',
|
||||
'systemStatisticsTxIcmpEchoRequests' => '1.3.6.1.4.1.41916.11.2.161',
|
||||
'systemStatisticsTxIcmpEchoReplies' => '1.3.6.1.4.1.41916.11.2.162',
|
||||
'systemStatisticsTxIcmpNetworkUnreach' => '1.3.6.1.4.1.41916.11.2.163',
|
||||
'systemStatisticsTxIcmpHostUnreach' => '1.3.6.1.4.1.41916.11.2.164',
|
||||
'systemStatisticsTxIcmpPortUnreach' => '1.3.6.1.4.1.41916.11.2.165',
|
||||
'systemStatisticsTxIcmpProtocolUnreach' => '1.3.6.1.4.1.41916.11.2.166',
|
||||
'systemStatisticsTxIcmpFragmentRequired' => '1.3.6.1.4.1.41916.11.2.167',
|
||||
'systemStatisticsTxIcmpDstUnreachOther' => '1.3.6.1.4.1.41916.11.2.168',
|
||||
'systemStatisticsTxIcmpTtlExpired' => '1.3.6.1.4.1.41916.11.2.169',
|
||||
'systemStatisticsTxIcmpRedirect' => '1.3.6.1.4.1.41916.11.2.170',
|
||||
'systemStatisticsTxIcmpSrcQuench' => '1.3.6.1.4.1.41916.11.2.171',
|
||||
'systemStatisticsTxIcmpBadIpHdr' => '1.3.6.1.4.1.41916.11.2.172',
|
||||
'systemStatisticsTxIcmpOtherTypes' => '1.3.6.1.4.1.41916.11.2.173',
|
||||
'systemStatisticsGreKaTxPkts' => '1.3.6.1.4.1.41916.11.2.174',
|
||||
'systemStatisticsGreKaRxPkts' => '1.3.6.1.4.1.41916.11.2.175',
|
||||
'systemStatisticsGreKaTxIpv4OptionsDrop' => '1.3.6.1.4.1.41916.11.2.176',
|
||||
'systemStatisticsGreKaTxNonIp' => '1.3.6.1.4.1.41916.11.2.177',
|
||||
'systemStatisticsGreKaTxParseErr' => '1.3.6.1.4.1.41916.11.2.178',
|
||||
'systemStatisticsGreKaTxRecordChanged' => '1.3.6.1.4.1.41916.11.2.179',
|
||||
'systemStatisticsGreKaTxFail' => '1.3.6.1.4.1.41916.11.2.180',
|
||||
'systemStatisticsGreKaAllocFail' => '1.3.6.1.4.1.41916.11.2.181',
|
||||
'systemStatisticsGreKaTimerAddFail' => '1.3.6.1.4.1.41916.11.2.182',
|
||||
'systemStatisticsGreKaRxNonIp' => '1.3.6.1.4.1.41916.11.2.183',
|
||||
'systemStatisticsGreKaRxRecInvalid' => '1.3.6.1.4.1.41916.11.2.184',
|
||||
'systemStatisticsDot1xRxPkts' => '1.3.6.1.4.1.41916.11.2.185',
|
||||
'systemStatisticsDot1xTxPkts' => '1.3.6.1.4.1.41916.11.2.186',
|
||||
'systemStatisticsDot1xRxDrops' => '1.3.6.1.4.1.41916.11.2.187',
|
||||
'systemStatisticsDot1xTxDrops' => '1.3.6.1.4.1.41916.11.2.188',
|
||||
'systemStatisticsDot1xVlanIfNotFoundDrops' => '1.3.6.1.4.1.41916.11.2.189',
|
||||
'systemStatisticsDot1xMacLearnDrops' => '1.3.6.1.4.1.41916.11.2.190',
|
||||
'systemStatisticsRxPolicerRemark' => '1.3.6.1.4.1.41916.11.2.191',
|
||||
'systemStatisticsBfdTxOctets' => '1.3.6.1.4.1.41916.11.2.192',
|
||||
'systemStatisticsBfdRxOctets' => '1.3.6.1.4.1.41916.11.2.193',
|
||||
'systemStatisticsBfdPmtuTxPkts' => '1.3.6.1.4.1.41916.11.2.194',
|
||||
'systemStatisticsBfdPmtuRxPkts' => '1.3.6.1.4.1.41916.11.2.195',
|
||||
'systemStatisticsBfdPmtuTxOctets' => '1.3.6.1.4.1.41916.11.2.196',
|
||||
'systemStatisticsBfdPmtuRxOctets' => '1.3.6.1.4.1.41916.11.2.197',
|
||||
'systemStatisticsDnsReqSnoop' => '1.3.6.1.4.1.41916.11.2.198',
|
||||
'systemStatisticsDnsResSnoop' => '1.3.6.1.4.1.41916.11.2.199',
|
||||
'systemStatisticsCtrlLoopFwd' => '1.3.6.1.4.1.41916.11.2.200',
|
||||
'systemStatisticsCtrlLoopFwdDrops' => '1.3.6.1.4.1.41916.11.2.201',
|
||||
'systemStatisticsRedirectDnsReq' => '1.3.6.1.4.1.41916.11.2.202',
|
||||
'systemStatisticsQatAesDecrypt' => '1.3.6.1.4.1.41916.11.2.204',
|
||||
'systemStatisticsQatAesEncrypt' => '1.3.6.1.4.1.41916.11.2.205',
|
||||
'systemStatisticsQatGcmDecrypt' => '1.3.6.1.4.1.41916.11.2.206',
|
||||
'systemStatisticsQatGcmEncrypt' => '1.3.6.1.4.1.41916.11.2.207',
|
||||
'systemStatisticsOpensslGcmDecrypt' => '1.3.6.1.4.1.41916.11.2.208',
|
||||
'systemStatisticsOpensslGcmEncrypt' => '1.3.6.1.4.1.41916.11.2.209',
|
||||
'systemStatisticsRxReplayDropsTc0' => '1.3.6.1.4.1.41916.11.2.210',
|
||||
'systemStatisticsRxReplayDropsTc1' => '1.3.6.1.4.1.41916.11.2.211',
|
||||
'systemStatisticsRxReplayDropsTc2' => '1.3.6.1.4.1.41916.11.2.212',
|
||||
'systemStatisticsRxReplayDropsTc3' => '1.3.6.1.4.1.41916.11.2.213',
|
||||
'systemStatisticsRxReplayDropsTc4' => '1.3.6.1.4.1.41916.11.2.214',
|
||||
'systemStatisticsRxReplayDropsTc5' => '1.3.6.1.4.1.41916.11.2.215',
|
||||
'systemStatisticsRxReplayDropsTc6' => '1.3.6.1.4.1.41916.11.2.216',
|
||||
'systemStatisticsRxReplayDropsTc7' => '1.3.6.1.4.1.41916.11.2.217',
|
||||
'systemStatisticsRxWindowDropsTc0' => '1.3.6.1.4.1.41916.11.2.218',
|
||||
'systemStatisticsRxWindowDropsTc1' => '1.3.6.1.4.1.41916.11.2.219',
|
||||
'systemStatisticsRxWindowDropsTc2' => '1.3.6.1.4.1.41916.11.2.220',
|
||||
'systemStatisticsRxWindowDropsTc3' => '1.3.6.1.4.1.41916.11.2.221',
|
||||
'systemStatisticsRxWindowDropsTc4' => '1.3.6.1.4.1.41916.11.2.222',
|
||||
'systemStatisticsRxWindowDropsTc5' => '1.3.6.1.4.1.41916.11.2.223',
|
||||
'systemStatisticsRxWindowDropsTc6' => '1.3.6.1.4.1.41916.11.2.224',
|
||||
'systemStatisticsRxWindowDropsTc7' => '1.3.6.1.4.1.41916.11.2.225',
|
||||
'systemStatisticsRxUnexpectedReplayDropsTc0' => '1.3.6.1.4.1.41916.11.2.226',
|
||||
'systemStatisticsRxUnexpectedReplayDropsTc1' => '1.3.6.1.4.1.41916.11.2.227',
|
||||
'systemStatisticsRxUnexpectedReplayDropsTc2' => '1.3.6.1.4.1.41916.11.2.228',
|
||||
'systemStatisticsRxUnexpectedReplayDropsTc3' => '1.3.6.1.4.1.41916.11.2.229',
|
||||
'systemStatisticsRxUnexpectedReplayDropsTc4' => '1.3.6.1.4.1.41916.11.2.230',
|
||||
'systemStatisticsRxUnexpectedReplayDropsTc5' => '1.3.6.1.4.1.41916.11.2.231',
|
||||
'systemStatisticsRxUnexpectedReplayDropsTc6' => '1.3.6.1.4.1.41916.11.2.232',
|
||||
'systemStatisticsRxUnexpectedReplayDropsTc7' => '1.3.6.1.4.1.41916.11.2.233',
|
||||
'systemStatisticsRxReplayIntegrityDropsTc0' => '1.3.6.1.4.1.41916.11.2.234',
|
||||
'systemStatisticsRxReplayIntegrityDropsTc1' => '1.3.6.1.4.1.41916.11.2.235',
|
||||
'systemStatisticsRxReplayIntegrityDropsTc2' => '1.3.6.1.4.1.41916.11.2.236',
|
||||
'systemStatisticsRxReplayIntegrityDropsTc3' => '1.3.6.1.4.1.41916.11.2.237',
|
||||
'systemStatisticsRxReplayIntegrityDropsTc4' => '1.3.6.1.4.1.41916.11.2.238',
|
||||
'systemStatisticsRxReplayIntegrityDropsTc5' => '1.3.6.1.4.1.41916.11.2.239',
|
||||
'systemStatisticsRxReplayIntegrityDropsTc6' => '1.3.6.1.4.1.41916.11.2.240',
|
||||
'systemStatisticsRxReplayIntegrityDropsTc7' => '1.3.6.1.4.1.41916.11.2.241',
|
||||
'systemStatisticsIcmpRedirectTxDrops' => '1.3.6.1.4.1.41916.11.2.242',
|
||||
'systemStatisticsIcmpRedirectRxDrops' => '1.3.6.1.4.1.41916.11.2.243',
|
||||
'systemStatisticsRxL2MtuExceeded' => '1.3.6.1.4.1.41916.11.2.244',
|
||||
'systemStatisticsTcpOptTimeoutStateErr' => '1.3.6.1.4.1.41916.11.2.245',
|
||||
'systemStatisticsTcpOptThirdSynPt' => '1.3.6.1.4.1.41916.11.2.246',
|
||||
'systemStatisticsTcpOptInitLimitPt' => '1.3.6.1.4.1.41916.11.2.247',
|
||||
'systemStatisticsTcpOptToCpu' => '1.3.6.1.4.1.41916.11.2.248',
|
||||
'systemStatisticsTcpOptFromCpu' => '1.3.6.1.4.1.41916.11.2.249',
|
||||
'systemStatisticsTcpOptCtrlInvalidSeq' => '1.3.6.1.4.1.41916.11.2.250',
|
||||
'systemStatisticsTcpOptMboxTotal' => '1.3.6.1.4.1.41916.11.2.251',
|
||||
'systemStatisticsTcpOptNewFlow' => '1.3.6.1.4.1.41916.11.2.252',
|
||||
'systemStatisticsTcpOptDelFlow' => '1.3.6.1.4.1.41916.11.2.253',
|
||||
'systemStatisticsIpDirectBcastTxDrops' => '1.3.6.1.4.1.41916.11.2.254',
|
||||
'systemStatisticsIpDirectBcastTxL2Bcast' => '1.3.6.1.4.1.41916.11.2.255',
|
||||
'systemStatisticsRxInvalidIpHdr' => '1.3.6.1.4.1.41916.11.2.256',
|
||||
'systemStatisticsNatDstNatMapInvalid' => '1.3.6.1.4.1.41916.11.2.257',
|
||||
'systemStatisticsDevicePolicyDrops' => '1.3.6.1.4.1.41916.11.2.258',
|
||||
'systemStatisticsInvalidLoopHdrDrops' => '1.3.6.1.4.1.41916.11.2.259',
|
||||
'systemStatisticsZbfFragCacheDrops' => '1.3.6.1.4.1.41916.11.2.260',
|
||||
'systemStatisticsNatFragCacheDrops' => '1.3.6.1.4.1.41916.11.2.261',
|
||||
'systemStatisticsTxTrackerIfNotPreferred' => '1.3.6.1.4.1.41916.11.2.262',
|
||||
'systemStatisticsIpfragAllfragsSeen' => '1.3.6.1.4.1.41916.11.2.263',
|
||||
'systemStatisticsIpfragManyFrags' => '1.3.6.1.4.1.41916.11.2.264',
|
||||
'systemStatisticsVRRPMismatchedDMACDrops' => '1.3.6.1.4.1.41916.11.2.265',
|
||||
'systemStatisticsDiff' => '1.3.6.1.4.1.41916.11.3',
|
||||
'systemStatisticsDiffRxPkts' => '1.3.6.1.4.1.41916.11.3.1',
|
||||
'systemStatisticsDiffRxDrops' => '1.3.6.1.4.1.41916.11.3.2',
|
||||
'systemStatisticsDiffIpFwd' => '1.3.6.1.4.1.41916.11.3.3',
|
||||
'systemStatisticsDiffIpFwdMirrorPkts' => '1.3.6.1.4.1.41916.11.3.4',
|
||||
'systemStatisticsDiffIpFwdArp' => '1.3.6.1.4.1.41916.11.3.5',
|
||||
'systemStatisticsDiffIpFwdToEgress' => '1.3.6.1.4.1.41916.11.3.6',
|
||||
'systemStatisticsDiffIpFwdInvalidOil' => '1.3.6.1.4.1.41916.11.3.7',
|
||||
'systemStatisticsDiffIpV6McastDrops' => '1.3.6.1.4.1.41916.11.3.8',
|
||||
'systemStatisticsDiffIpFwdMcastInvalidIif' => '1.3.6.1.4.1.41916.11.3.9',
|
||||
'systemStatisticsDiffIpFwdMcastLifeExceededDrops' => '1.3.6.1.4.1.41916.11.3.10',
|
||||
'systemStatisticsDiffRxMcastThresholdExceeded' => '1.3.6.1.4.1.41916.11.3.11',
|
||||
'systemStatisticsDiffIpFwdInvalidTunOil' => '1.3.6.1.4.1.41916.11.3.12',
|
||||
'systemStatisticsDiffRxMcastPolicyFwdDrops' => '1.3.6.1.4.1.41916.11.3.13',
|
||||
'systemStatisticsDiffRxMcastMirrorFwdDrops' => '1.3.6.1.4.1.41916.11.3.14',
|
||||
'systemStatisticsDiffIpFwdNullMcastGroup' => '1.3.6.1.4.1.41916.11.3.15',
|
||||
'systemStatisticsDiffIpFwdNullNhop' => '1.3.6.1.4.1.41916.11.3.16',
|
||||
'systemStatisticsDiffIpFwdUnknownNhType' => '1.3.6.1.4.1.41916.11.3.17',
|
||||
'systemStatisticsDiffIpFwdNatOnTunnel' => '1.3.6.1.4.1.41916.11.3.18',
|
||||
'systemStatisticsDiffIpFwdToCpu' => '1.3.6.1.4.1.41916.11.3.19',
|
||||
'systemStatisticsDiffIpFwdToCpuNatXlates' => '1.3.6.1.4.1.41916.11.3.20',
|
||||
'systemStatisticsDiffIpFwdFromCpuNatXlates' => '1.3.6.1.4.1.41916.11.3.21',
|
||||
'systemStatisticsDiffIpFwdToCpuNatDrops' => '1.3.6.1.4.1.41916.11.3.22',
|
||||
'systemStatisticsDiffIpFwdFromCpuNonLocal' => '1.3.6.1.4.1.41916.11.3.23',
|
||||
'systemStatisticsDiffIpFwdRxIpsec' => '1.3.6.1.4.1.41916.11.3.24',
|
||||
'systemStatisticsDiffIpFwdMcastPkts' => '1.3.6.1.4.1.41916.11.3.25',
|
||||
'systemStatisticsDiffIpFwdRxGre' => '1.3.6.1.4.1.41916.11.3.26',
|
||||
'systemStatisticsDiffNatXlateOutbound' => '1.3.6.1.4.1.41916.11.3.27',
|
||||
'systemStatisticsDiffNatXlateOutboundDrops' => '1.3.6.1.4.1.41916.11.3.28',
|
||||
'systemStatisticsDiffNatXlateInbound' => '1.3.6.1.4.1.41916.11.3.29',
|
||||
'systemStatisticsDiffNatXlateInboundFail' => '1.3.6.1.4.1.41916.11.3.30',
|
||||
'systemStatisticsDiffCflowdPkts' => '1.3.6.1.4.1.41916.11.3.31',
|
||||
'systemStatisticsDiffRxBcast' => '1.3.6.1.4.1.41916.11.3.32',
|
||||
'systemStatisticsDiffRxMcast' => '1.3.6.1.4.1.41916.11.3.33',
|
||||
'systemStatisticsDiffRxMcastLinkLocal' => '1.3.6.1.4.1.41916.11.3.34',
|
||||
'systemStatisticsDiffRxMcastFilterToCpu' => '1.3.6.1.4.1.41916.11.3.35',
|
||||
'systemStatisticsDiffRxMcastFilterToCpuAndFwd' => '1.3.6.1.4.1.41916.11.3.36',
|
||||
'systemStatisticsDiffRxGreDecap' => '1.3.6.1.4.1.41916.11.3.37',
|
||||
'systemStatisticsDiffRxGreDrops' => '1.3.6.1.4.1.41916.11.3.38',
|
||||
'systemStatisticsDiffRxGrePolicerDrops' => '1.3.6.1.4.1.41916.11.3.39',
|
||||
'systemStatisticsDiffRxImplicitAclDrops' => '1.3.6.1.4.1.41916.11.3.40',
|
||||
'systemStatisticsDiffRxIpsecDecap' => '1.3.6.1.4.1.41916.11.3.41',
|
||||
'systemStatisticsDiffRxIp6IpsecDrops' => '1.3.6.1.4.1.41916.11.3.42',
|
||||
'systemStatisticsDiffRxSaIpsecDrops' => '1.3.6.1.4.1.41916.11.3.43',
|
||||
'systemStatisticsDiffRxInvalidIpsecPktSize' => '1.3.6.1.4.1.41916.11.3.44',
|
||||
'systemStatisticsDiffRxSpiIpsecDrops' => '1.3.6.1.4.1.41916.11.3.45',
|
||||
'systemStatisticsDiffRxReplayDrops' => '1.3.6.1.4.1.41916.11.3.46',
|
||||
'systemStatisticsDiffRxReplayIntegrityDrops' => '1.3.6.1.4.1.41916.11.3.47',
|
||||
'systemStatisticsDiffRxUnexpectedReplayDrops' => '1.3.6.1.4.1.41916.11.3.48',
|
||||
'systemStatisticsDiffRxNextHdrIpsecDrops' => '1.3.6.1.4.1.41916.11.3.49',
|
||||
'systemStatisticsDiffRxMacCompareIpsecDrops' => '1.3.6.1.4.1.41916.11.3.50',
|
||||
'systemStatisticsDiffRxErrPadIpsecDrops' => '1.3.6.1.4.1.41916.11.3.51',
|
||||
'systemStatisticsDiffRxIpsecPolicerDrops' => '1.3.6.1.4.1.41916.11.3.52',
|
||||
'systemStatisticsDiffRxPreIpsecPkts' => '1.3.6.1.4.1.41916.11.3.53',
|
||||
'systemStatisticsDiffRxPreIpsecDrops' => '1.3.6.1.4.1.41916.11.3.54',
|
||||
'systemStatisticsDiffRxPreIpsecPolicerDrops' => '1.3.6.1.4.1.41916.11.3.55',
|
||||
'systemStatisticsDiffRxPreIpsecDecap' => '1.3.6.1.4.1.41916.11.3.56',
|
||||
'systemStatisticsDiffOpensslAesDecrypt' => '1.3.6.1.4.1.41916.11.3.57',
|
||||
'systemStatisticsDiffRxIpsecBadInner' => '1.3.6.1.4.1.41916.11.3.58',
|
||||
'systemStatisticsDiffRxBadLabel' => '1.3.6.1.4.1.41916.11.3.59',
|
||||
'systemStatisticsDiffServiceLabelFwd' => '1.3.6.1.4.1.41916.11.3.60',
|
||||
'systemStatisticsDiffRxHostLocalPkt' => '1.3.6.1.4.1.41916.11.3.61',
|
||||
'systemStatisticsDiffRxHostMirrorDrops' => '1.3.6.1.4.1.41916.11.3.62',
|
||||
'systemStatisticsDiffRxTunneledPkts' => '1.3.6.1.4.1.41916.11.3.63',
|
||||
'systemStatisticsDiffRxCpNonLocal' => '1.3.6.1.4.1.41916.11.3.64',
|
||||
'systemStatisticsDiffTxIfNotPreferred' => '1.3.6.1.4.1.41916.11.3.65',
|
||||
'systemStatisticsDiffTxVsmartDrop' => '1.3.6.1.4.1.41916.11.3.66',
|
||||
'systemStatisticsDiffRxInvalidPort' => '1.3.6.1.4.1.41916.11.3.67',
|
||||
'systemStatisticsDiffPortDisabledRx' => '1.3.6.1.4.1.41916.11.3.68',
|
||||
'systemStatisticsDiffIpDisabledRx' => '1.3.6.1.4.1.41916.11.3.69',
|
||||
'systemStatisticsDiffRxInvalidQtags' => '1.3.6.1.4.1.41916.11.3.70',
|
||||
'systemStatisticsDiffRxNonIpDrops' => '1.3.6.1.4.1.41916.11.3.71',
|
||||
'systemStatisticsDiffRxIpErrs' => '1.3.6.1.4.1.41916.11.3.72',
|
||||
'systemStatisticsDiffPkoWredDrops' => '1.3.6.1.4.1.41916.11.3.73',
|
||||
'systemStatisticsDiffTxQueueExceeded' => '1.3.6.1.4.1.41916.11.3.74',
|
||||
'systemStatisticsDiffRxPolicerDrops' => '1.3.6.1.4.1.41916.11.3.75',
|
||||
'systemStatisticsDiffRouteToHost' => '1.3.6.1.4.1.41916.11.3.76',
|
||||
'systemStatisticsDiffTtlExpired' => '1.3.6.1.4.1.41916.11.3.77',
|
||||
'systemStatisticsDiffIcmpRedirect' => '1.3.6.1.4.1.41916.11.3.78',
|
||||
'systemStatisticsDiffBfdRxNonIp' => '1.3.6.1.4.1.41916.11.3.79',
|
||||
'systemStatisticsDiffBfdTxRecordChanged' => '1.3.6.1.4.1.41916.11.3.80',
|
||||
'systemStatisticsDiffBfdRxRecordInvalid' => '1.3.6.1.4.1.41916.11.3.81',
|
||||
'systemStatisticsDiffBfdRxParseErr' => '1.3.6.1.4.1.41916.11.3.82',
|
||||
'systemStatisticsDiffRxArpRateLimitDrops' => '1.3.6.1.4.1.41916.11.3.83',
|
||||
'systemStatisticsDiffRxArpNonLocalDrops' => '1.3.6.1.4.1.41916.11.3.84',
|
||||
'systemStatisticsDiffRxArpReqs' => '1.3.6.1.4.1.41916.11.3.85',
|
||||
'systemStatisticsDiffRxArpReplies' => '1.3.6.1.4.1.41916.11.3.86',
|
||||
'systemStatisticsDiffArpAddFail' => '1.3.6.1.4.1.41916.11.3.87',
|
||||
'systemStatisticsDiffUnknownNhType' => '1.3.6.1.4.1.41916.11.3.88',
|
||||
'systemStatisticsDiffBufAllocFails' => '1.3.6.1.4.1.41916.11.3.89',
|
||||
'systemStatisticsDiffEcmpDiscards' => '1.3.6.1.4.1.41916.11.3.90',
|
||||
'systemStatisticsDiffAppRoutePolicyDiscards' => '1.3.6.1.4.1.41916.11.3.91',
|
||||
'systemStatisticsDiffCbfDiscards' => '1.3.6.1.4.1.41916.11.3.92',
|
||||
'systemStatisticsDiffFilterDrops' => '1.3.6.1.4.1.41916.11.3.93',
|
||||
'systemStatisticsDiffInvalidBackPtr' => '1.3.6.1.4.1.41916.11.3.94',
|
||||
'systemStatisticsDiffTunnelLoopDrops' => '1.3.6.1.4.1.41916.11.3.95',
|
||||
'systemStatisticsDiffToCpuPolicerDrops' => '1.3.6.1.4.1.41916.11.3.96',
|
||||
'systemStatisticsDiffMirrorDrops' => '1.3.6.1.4.1.41916.11.3.97',
|
||||
'systemStatisticsDiffSplitHorizonDrops' => '1.3.6.1.4.1.41916.11.3.98',
|
||||
'systemStatisticsDiffRxNoTunIf' => '1.3.6.1.4.1.41916.11.3.99',
|
||||
'systemStatisticsDiffTxPkts' => '1.3.6.1.4.1.41916.11.3.100',
|
||||
'systemStatisticsDiffTxErrors' => '1.3.6.1.4.1.41916.11.3.101',
|
||||
'systemStatisticsDiffTxBcast' => '1.3.6.1.4.1.41916.11.3.102',
|
||||
'systemStatisticsDiffTxMcast' => '1.3.6.1.4.1.41916.11.3.103',
|
||||
'systemStatisticsDiffPortDisabledTx' => '1.3.6.1.4.1.41916.11.3.104',
|
||||
'systemStatisticsDiffIpDisabledTx' => '1.3.6.1.4.1.41916.11.3.105',
|
||||
'systemStatisticsDiffTxFragmentNeeded' => '1.3.6.1.4.1.41916.11.3.106',
|
||||
'systemStatisticsDiffTxMcastFragmentNeeded' => '1.3.6.1.4.1.41916.11.3.107',
|
||||
'systemStatisticsDiffFragmentDfDrops' => '1.3.6.1.4.1.41916.11.3.108',
|
||||
'systemStatisticsDiffTxFragments' => '1.3.6.1.4.1.41916.11.3.109',
|
||||
'systemStatisticsDiffTxFragmentDrops' => '1.3.6.1.4.1.41916.11.3.110',
|
||||
'systemStatisticsDiffTxFragmentFail' => '1.3.6.1.4.1.41916.11.3.111',
|
||||
'systemStatisticsDiffTxFragmentAllocFail' => '1.3.6.1.4.1.41916.11.3.112',
|
||||
'systemStatisticsDiffTunnelPmtuLowered' => '1.3.6.1.4.1.41916.11.3.113',
|
||||
'systemStatisticsDiffTxGrePkts' => '1.3.6.1.4.1.41916.11.3.114',
|
||||
'systemStatisticsDiffTxGreDrops' => '1.3.6.1.4.1.41916.11.3.115',
|
||||
'systemStatisticsDiffTxGrePolicerDrops' => '1.3.6.1.4.1.41916.11.3.116',
|
||||
'systemStatisticsDiffTxGreEncap' => '1.3.6.1.4.1.41916.11.3.117',
|
||||
'systemStatisticsDiffTxIpsecPkts' => '1.3.6.1.4.1.41916.11.3.118',
|
||||
'systemStatisticsDiffTxIpsecMcastPkts' => '1.3.6.1.4.1.41916.11.3.119',
|
||||
'systemStatisticsDiffTxIp6IpsecDrops' => '1.3.6.1.4.1.41916.11.3.120',
|
||||
'systemStatisticsDiffTxNoOutSaIpsecDrops' => '1.3.6.1.4.1.41916.11.3.121',
|
||||
'systemStatisticsDiffTxNoTunnIpsecDrops' => '1.3.6.1.4.1.41916.11.3.122',
|
||||
'systemStatisticsDiffTxIpsecPolicerDrops' => '1.3.6.1.4.1.41916.11.3.123',
|
||||
'systemStatisticsDiffTxIpsecEncap' => '1.3.6.1.4.1.41916.11.3.124',
|
||||
'systemStatisticsDiffTxIpsecMcastEncap' => '1.3.6.1.4.1.41916.11.3.125',
|
||||
'systemStatisticsDiffTxPreIpsecPkts' => '1.3.6.1.4.1.41916.11.3.126',
|
||||
'systemStatisticsDiffTxNoOutSaPreIpsecDrops' => '1.3.6.1.4.1.41916.11.3.127',
|
||||
'systemStatisticsDiffTxNoTunnPreIpsecDrops' => '1.3.6.1.4.1.41916.11.3.128',
|
||||
'systemStatisticsDiffOpensslAesEncrypt' => '1.3.6.1.4.1.41916.11.3.129',
|
||||
'systemStatisticsDiffTxPreIpsecPolicerDrops' => '1.3.6.1.4.1.41916.11.3.130',
|
||||
'systemStatisticsDiffTxPreIpsecEncap' => '1.3.6.1.4.1.41916.11.3.131',
|
||||
'systemStatisticsDiffTxArpReplies' => '1.3.6.1.4.1.41916.11.3.132',
|
||||
'systemStatisticsDiffTxArpReqs' => '1.3.6.1.4.1.41916.11.3.133',
|
||||
'systemStatisticsDiffTxArpReqFail' => '1.3.6.1.4.1.41916.11.3.134',
|
||||
'systemStatisticsDiffTxNoArpDrop' => '1.3.6.1.4.1.41916.11.3.135',
|
||||
'systemStatisticsDiffTxArpRateLimitDrops' => '1.3.6.1.4.1.41916.11.3.136',
|
||||
'systemStatisticsDiffTxIcmpPolicerDrops' => '1.3.6.1.4.1.41916.11.3.137',
|
||||
'systemStatisticsDiffTxIcmpMirroredDrops' => '1.3.6.1.4.1.41916.11.3.138',
|
||||
'systemStatisticsDiffBfdTxFail' => '1.3.6.1.4.1.41916.11.3.139',
|
||||
'systemStatisticsDiffBfdAllocFail' => '1.3.6.1.4.1.41916.11.3.140',
|
||||
'systemStatisticsDiffBfdTimerAddFail' => '1.3.6.1.4.1.41916.11.3.141',
|
||||
'systemStatisticsDiffBfdTxPkts' => '1.3.6.1.4.1.41916.11.3.142',
|
||||
'systemStatisticsDiffBfdRxPkts' => '1.3.6.1.4.1.41916.11.3.143',
|
||||
'systemStatisticsDiffBfdRecDown' => '1.3.6.1.4.1.41916.11.3.144',
|
||||
'systemStatisticsDiffBfdRecInvalid' => '1.3.6.1.4.1.41916.11.3.145',
|
||||
'systemStatisticsDiffBfdLkupFail' => '1.3.6.1.4.1.41916.11.3.146',
|
||||
'systemStatisticsDiffRxIcmpEchoRequests' => '1.3.6.1.4.1.41916.11.3.147',
|
||||
'systemStatisticsDiffRxIcmpEchoReplies' => '1.3.6.1.4.1.41916.11.3.148',
|
||||
'systemStatisticsDiffRxIcmpNetworkUnreach' => '1.3.6.1.4.1.41916.11.3.149',
|
||||
'systemStatisticsDiffRxIcmpHostUnreach' => '1.3.6.1.4.1.41916.11.3.150',
|
||||
'systemStatisticsDiffRxIcmpPortUnreach' => '1.3.6.1.4.1.41916.11.3.151',
|
||||
'systemStatisticsDiffRxIcmpProtocolUnreach' => '1.3.6.1.4.1.41916.11.3.152',
|
||||
'systemStatisticsDiffRxIcmpFragmentRequired' => '1.3.6.1.4.1.41916.11.3.153',
|
||||
'systemStatisticsDiffRxIcmpDstUnreachOther' => '1.3.6.1.4.1.41916.11.3.154',
|
||||
'systemStatisticsDiffRxIcmpTtlExpired' => '1.3.6.1.4.1.41916.11.3.155',
|
||||
'systemStatisticsDiffRxIcmpRedirect' => '1.3.6.1.4.1.41916.11.3.156',
|
||||
'systemStatisticsDiffRxIcmpSrcQuench' => '1.3.6.1.4.1.41916.11.3.157',
|
||||
'systemStatisticsDiffRxIcmpBadIpHdr' => '1.3.6.1.4.1.41916.11.3.158',
|
||||
'systemStatisticsDiffRxIcmpOtherTypes' => '1.3.6.1.4.1.41916.11.3.159',
|
||||
'systemStatisticsDiffTxIcmpEchoRequests' => '1.3.6.1.4.1.41916.11.3.160',
|
||||
'systemStatisticsDiffTxIcmpEchoReplies' => '1.3.6.1.4.1.41916.11.3.161',
|
||||
'systemStatisticsDiffTxIcmpNetworkUnreach' => '1.3.6.1.4.1.41916.11.3.162',
|
||||
'systemStatisticsDiffTxIcmpHostUnreach' => '1.3.6.1.4.1.41916.11.3.163',
|
||||
'systemStatisticsDiffTxIcmpPortUnreach' => '1.3.6.1.4.1.41916.11.3.164',
|
||||
'systemStatisticsDiffTxIcmpProtocolUnreach' => '1.3.6.1.4.1.41916.11.3.165',
|
||||
'systemStatisticsDiffTxIcmpFragmentRequired' => '1.3.6.1.4.1.41916.11.3.166',
|
||||
'systemStatisticsDiffTxIcmpDstUnreachOther' => '1.3.6.1.4.1.41916.11.3.167',
|
||||
'systemStatisticsDiffTxIcmpTtlExpired' => '1.3.6.1.4.1.41916.11.3.168',
|
||||
'systemStatisticsDiffTxIcmpRedirect' => '1.3.6.1.4.1.41916.11.3.169',
|
||||
'systemStatisticsDiffTxIcmpSrcQuench' => '1.3.6.1.4.1.41916.11.3.170',
|
||||
'systemStatisticsDiffTxIcmpBadIpHdr' => '1.3.6.1.4.1.41916.11.3.171',
|
||||
'systemStatisticsDiffTxIcmpOtherTypes' => '1.3.6.1.4.1.41916.11.3.172',
|
||||
'systemStatisticsDiffGreKaTxPkts' => '1.3.6.1.4.1.41916.11.3.174',
|
||||
'systemStatisticsDiffGreKaRxPkts' => '1.3.6.1.4.1.41916.11.3.175',
|
||||
'systemStatisticsDiffGreKaTxIpv4OptionsDrop' => '1.3.6.1.4.1.41916.11.3.176',
|
||||
'systemStatisticsDiffGreKaTxNonIp' => '1.3.6.1.4.1.41916.11.3.177',
|
||||
'systemStatisticsDiffGreKaTxParseErr' => '1.3.6.1.4.1.41916.11.3.178',
|
||||
'systemStatisticsDiffGreKaTxRecordChanged' => '1.3.6.1.4.1.41916.11.3.179',
|
||||
'systemStatisticsDiffGreKaTxFail' => '1.3.6.1.4.1.41916.11.3.180',
|
||||
'systemStatisticsDiffGreKaAllocFail' => '1.3.6.1.4.1.41916.11.3.181',
|
||||
'systemStatisticsDiffGreKaTimerAddFail' => '1.3.6.1.4.1.41916.11.3.182',
|
||||
'systemStatisticsDiffGreKaRxNonIp' => '1.3.6.1.4.1.41916.11.3.183',
|
||||
'systemStatisticsDiffGreKaRxRecInvalid' => '1.3.6.1.4.1.41916.11.3.184',
|
||||
'systemStatisticsDiffDot1xRxPkts' => '1.3.6.1.4.1.41916.11.3.185',
|
||||
'systemStatisticsDiffDot1xTxPkts' => '1.3.6.1.4.1.41916.11.3.186',
|
||||
'systemStatisticsDiffDot1xRxDrops' => '1.3.6.1.4.1.41916.11.3.187',
|
||||
'systemStatisticsDiffDot1xTxDrops' => '1.3.6.1.4.1.41916.11.3.188',
|
||||
'systemStatisticsDiffDot1xVlanIfNotFoundDrops' => '1.3.6.1.4.1.41916.11.3.189',
|
||||
'systemStatisticsDiffDot1xMacLearnDrops' => '1.3.6.1.4.1.41916.11.3.190',
|
||||
'systemStatisticsDiffRxPolicerRemark' => '1.3.6.1.4.1.41916.11.3.191',
|
||||
'systemStatisticsDiffBfdTxOctets' => '1.3.6.1.4.1.41916.11.3.192',
|
||||
'systemStatisticsDiffBfdRxOctets' => '1.3.6.1.4.1.41916.11.3.193',
|
||||
'systemStatisticsDiffBfdPmtuTxPkts' => '1.3.6.1.4.1.41916.11.3.194',
|
||||
'systemStatisticsDiffBfdPmtuRxPkts' => '1.3.6.1.4.1.41916.11.3.195',
|
||||
'systemStatisticsDiffBfdPmtuTxOctets' => '1.3.6.1.4.1.41916.11.3.196',
|
||||
'systemStatisticsDiffBfdPmtuRxOctets' => '1.3.6.1.4.1.41916.11.3.197',
|
||||
'systemStatisticsDiffDnsReqSnoop' => '1.3.6.1.4.1.41916.11.3.198',
|
||||
'systemStatisticsDiffDnsResSnoop' => '1.3.6.1.4.1.41916.11.3.199',
|
||||
'systemStatisticsDiffCtrlLoopFwd' => '1.3.6.1.4.1.41916.11.3.200',
|
||||
'systemStatisticsDiffCtrlLoopFwdDrops' => '1.3.6.1.4.1.41916.11.3.201',
|
||||
'systemStatisticsDiffQatAesDecrypt' => '1.3.6.1.4.1.41916.11.3.204',
|
||||
'systemStatisticsDiffQatAesEncrypt' => '1.3.6.1.4.1.41916.11.3.205',
|
||||
'systemStatisticsDiffQatGcmDecrypt' => '1.3.6.1.4.1.41916.11.3.206',
|
||||
'systemStatisticsDiffQatGcmEncrypt' => '1.3.6.1.4.1.41916.11.3.207',
|
||||
'systemStatisticsDiffOpensslGcmDecrypt' => '1.3.6.1.4.1.41916.11.3.208',
|
||||
'systemStatisticsDiffOpensslGcmEncrypt' => '1.3.6.1.4.1.41916.11.3.209',
|
||||
'systemStatisticsDiffRxReplayDropsTc0' => '1.3.6.1.4.1.41916.11.3.210',
|
||||
'systemStatisticsDiffRxReplayDropsTc1' => '1.3.6.1.4.1.41916.11.3.211',
|
||||
'systemStatisticsDiffRxReplayDropsTc2' => '1.3.6.1.4.1.41916.11.3.212',
|
||||
'systemStatisticsDiffRxReplayDropsTc3' => '1.3.6.1.4.1.41916.11.3.213',
|
||||
'systemStatisticsDiffRxReplayDropsTc4' => '1.3.6.1.4.1.41916.11.3.214',
|
||||
'systemStatisticsDiffRxReplayDropsTc5' => '1.3.6.1.4.1.41916.11.3.215',
|
||||
'systemStatisticsDiffRxReplayDropsTc6' => '1.3.6.1.4.1.41916.11.3.216',
|
||||
'systemStatisticsDiffRxReplayDropsTc7' => '1.3.6.1.4.1.41916.11.3.217',
|
||||
'systemStatisticsDiffRxWindowDropsTc0' => '1.3.6.1.4.1.41916.11.3.218',
|
||||
'systemStatisticsDiffRxWindowDropsTc1' => '1.3.6.1.4.1.41916.11.3.219',
|
||||
'systemStatisticsDiffRxWindowDropsTc2' => '1.3.6.1.4.1.41916.11.3.220',
|
||||
'systemStatisticsDiffRxWindowDropsTc3' => '1.3.6.1.4.1.41916.11.3.221',
|
||||
'systemStatisticsDiffRxWindowDropsTc4' => '1.3.6.1.4.1.41916.11.3.222',
|
||||
'systemStatisticsDiffRxWindowDropsTc5' => '1.3.6.1.4.1.41916.11.3.223',
|
||||
'systemStatisticsDiffRxWindowDropsTc6' => '1.3.6.1.4.1.41916.11.3.224',
|
||||
'systemStatisticsDiffRxWindowDropsTc7' => '1.3.6.1.4.1.41916.11.3.225',
|
||||
'systemStatisticsDiffRxUnexpectedReplayDropsTc0' => '1.3.6.1.4.1.41916.11.3.226',
|
||||
'systemStatisticsDiffRxUnexpectedReplayDropsTc1' => '1.3.6.1.4.1.41916.11.3.227',
|
||||
'systemStatisticsDiffRxUnexpectedReplayDropsTc2' => '1.3.6.1.4.1.41916.11.3.228',
|
||||
'systemStatisticsDiffRxUnexpectedReplayDropsTc3' => '1.3.6.1.4.1.41916.11.3.229',
|
||||
'systemStatisticsDiffRxUnexpectedReplayDropsTc4' => '1.3.6.1.4.1.41916.11.3.230',
|
||||
'systemStatisticsDiffRxUnexpectedReplayDropsTc5' => '1.3.6.1.4.1.41916.11.3.231',
|
||||
'systemStatisticsDiffRxUnexpectedReplayDropsTc6' => '1.3.6.1.4.1.41916.11.3.232',
|
||||
'systemStatisticsDiffRxUnexpectedReplayDropsTc7' => '1.3.6.1.4.1.41916.11.3.233',
|
||||
'systemStatisticsDiffRxReplayIntegrityDropsTc0' => '1.3.6.1.4.1.41916.11.3.234',
|
||||
'systemStatisticsDiffRxReplayIntegrityDropsTc1' => '1.3.6.1.4.1.41916.11.3.235',
|
||||
'systemStatisticsDiffRxReplayIntegrityDropsTc2' => '1.3.6.1.4.1.41916.11.3.236',
|
||||
'systemStatisticsDiffRxReplayIntegrityDropsTc3' => '1.3.6.1.4.1.41916.11.3.237',
|
||||
'systemStatisticsDiffRxReplayIntegrityDropsTc4' => '1.3.6.1.4.1.41916.11.3.238',
|
||||
'systemStatisticsDiffRxReplayIntegrityDropsTc5' => '1.3.6.1.4.1.41916.11.3.239',
|
||||
'systemStatisticsDiffRxReplayIntegrityDropsTc6' => '1.3.6.1.4.1.41916.11.3.240',
|
||||
'systemStatisticsDiffRxReplayIntegrityDropsTc7' => '1.3.6.1.4.1.41916.11.3.241',
|
||||
'systemStatisticsDiffIcmpRedirectTxDrops' => '1.3.6.1.4.1.41916.11.3.242',
|
||||
'systemStatisticsDiffIcmpRedirectRxDrops' => '1.3.6.1.4.1.41916.11.3.243',
|
||||
'systemStatisticsDiffRxL2MtuExceeded' => '1.3.6.1.4.1.41916.11.3.244',
|
||||
'systemStatisticsDiffIpDirectBcastTxDrops' => '1.3.6.1.4.1.41916.11.3.245',
|
||||
'systemStatisticsDiffIpDirectBcastTxL2Bcast' => '1.3.6.1.4.1.41916.11.3.246',
|
||||
'systemStatisticsDiffRxInvalidIpHdr' => '1.3.6.1.4.1.41916.11.3.247',
|
||||
'systemStatisticsDiffNatDstNatMapInvalid' => '1.3.6.1.4.1.41916.11.3.248',
|
||||
'systemStatisticsDiffDevicePolicyDrops' => '1.3.6.1.4.1.41916.11.3.249',
|
||||
'systemStatisticsDiffInvalidLoopHdrDrops' => '1.3.6.1.4.1.41916.11.3.250',
|
||||
'systemStatisticsDiffZbfFragCacheDrops' => '1.3.6.1.4.1.41916.11.3.251',
|
||||
'systemStatisticsDiffNatFragCacheDrops' => '1.3.6.1.4.1.41916.11.3.252',
|
||||
'systemStatisticsDiffTxTrackerIfNotPreferred' => '1.3.6.1.4.1.41916.11.3.253',
|
||||
'systemStatisticsDiffIpfragAllfragsSeen' => '1.3.6.1.4.1.41916.11.3.254',
|
||||
'systemStatisticsDiffIpfragManyFrags' => '1.3.6.1.4.1.41916.11.3.255',
|
||||
'systemStatisticsDiffVRRPMismatchedDMACDrops' => '1.3.6.1.4.1.41916.11.3.256',
|
||||
'reboot' => '1.3.6.1.4.1.41916.11.4',
|
||||
'rebootHistoryTable' => '1.3.6.1.4.1.41916.11.4.1',
|
||||
'rebootHistoryEntry' => '1.3.6.1.4.1.41916.11.4.1.1',
|
||||
'rebootHistoryRebootDateTime' => '1.3.6.1.4.1.41916.11.4.1.1.1',
|
||||
'rebootHistoryRebootReason' => '1.3.6.1.4.1.41916.11.4.1.1.3',
|
||||
'bootPartitionTable' => '1.3.6.1.4.1.41916.11.5',
|
||||
'bootPartitionEntry' => '1.3.6.1.4.1.41916.11.5.1',
|
||||
'bootPartitionPartition' => '1.3.6.1.4.1.41916.11.5.1.1',
|
||||
'bootPartitionPartitionDefinition' => 'VIPTELA-OPER-SYSTEM::bootPartitionPartition',
|
||||
'bootPartitionActive' => '1.3.6.1.4.1.41916.11.5.1.2',
|
||||
'bootPartitionVersion' => '1.3.6.1.4.1.41916.11.5.1.3',
|
||||
'bootPartitionTimestamp' => '1.3.6.1.4.1.41916.11.5.1.4',
|
||||
'usersTable' => '1.3.6.1.4.1.41916.11.6',
|
||||
'usersEntry' => '1.3.6.1.4.1.41916.11.6.1',
|
||||
'usersSession' => '1.3.6.1.4.1.41916.11.6.1.1',
|
||||
'usersUser' => '1.3.6.1.4.1.41916.11.6.1.2',
|
||||
'usersContext' => '1.3.6.1.4.1.41916.11.6.1.3',
|
||||
'usersFrom' => '1.3.6.1.4.1.41916.11.6.1.4',
|
||||
'usersProto' => '1.3.6.1.4.1.41916.11.6.1.5',
|
||||
'usersProtoDefinition' => 'VIPTELA-OPER-SYSTEM::usersProto',
|
||||
'usersAuthGroup' => '1.3.6.1.4.1.41916.11.6.1.6',
|
||||
'usersLoginTime' => '1.3.6.1.4.1.41916.11.6.1.7',
|
||||
'aaa' => '1.3.6.1.4.1.41916.11.7',
|
||||
'aaaUsergroupTable' => '1.3.6.1.4.1.41916.11.7.1',
|
||||
'aaaUsergroupEntry' => '1.3.6.1.4.1.41916.11.7.1.1',
|
||||
'aaaUsergroupName' => '1.3.6.1.4.1.41916.11.7.1.1.1',
|
||||
'aaaUsergroupTaskTable' => '1.3.6.1.4.1.41916.11.8',
|
||||
'aaaUsergroupTaskEntry' => '1.3.6.1.4.1.41916.11.8.1',
|
||||
'aaaUsergroupTaskMode' => '1.3.6.1.4.1.41916.11.8.1.1',
|
||||
'aaaUsergroupTaskModeDefinition' => 'VIPTELA-OPER-SYSTEM::aaaUsergroupTaskMode',
|
||||
'aaaUsergroupTaskPermission' => '1.3.6.1.4.1.41916.11.8.1.2',
|
||||
'logging' => '1.3.6.1.4.1.41916.11.9',
|
||||
'loggingHostStatus' => '1.3.6.1.4.1.41916.11.9.1',
|
||||
'loggingHostName' => '1.3.6.1.4.1.41916.11.9.2',
|
||||
'loggingHostPriority' => '1.3.6.1.4.1.41916.11.9.3',
|
||||
'loggingHostVpnId' => '1.3.6.1.4.1.41916.11.9.4',
|
||||
'loggingDiskStatus' => '1.3.6.1.4.1.41916.11.9.5',
|
||||
'loggingDiskPriority' => '1.3.6.1.4.1.41916.11.9.6',
|
||||
'loggingDiskFilename' => '1.3.6.1.4.1.41916.11.9.7',
|
||||
'loggingDiskFilesize' => '1.3.6.1.4.1.41916.11.9.8',
|
||||
'loggingDiskFilerotate' => '1.3.6.1.4.1.41916.11.9.9',
|
||||
'ntp' => '1.3.6.1.4.1.41916.11.10',
|
||||
'ntpPeerTable' => '1.3.6.1.4.1.41916.11.10.1',
|
||||
'ntpPeerEntry' => '1.3.6.1.4.1.41916.11.10.1.1',
|
||||
'ntpPeerIndex' => '1.3.6.1.4.1.41916.11.10.1.1.1',
|
||||
'ntpPeerRemote' => '1.3.6.1.4.1.41916.11.10.1.1.2',
|
||||
'ntpPeerRefid' => '1.3.6.1.4.1.41916.11.10.1.1.3',
|
||||
'ntpPeerSt' => '1.3.6.1.4.1.41916.11.10.1.1.4',
|
||||
'ntpPeerType' => '1.3.6.1.4.1.41916.11.10.1.1.5',
|
||||
'ntpPeerWhen' => '1.3.6.1.4.1.41916.11.10.1.1.6',
|
||||
'ntpPeerPoll' => '1.3.6.1.4.1.41916.11.10.1.1.7',
|
||||
'ntpPeerReach' => '1.3.6.1.4.1.41916.11.10.1.1.8',
|
||||
'ntpPeerDelay' => '1.3.6.1.4.1.41916.11.10.1.1.9',
|
||||
'ntpPeerOffset' => '1.3.6.1.4.1.41916.11.10.1.1.10',
|
||||
'ntpPeerJitter' => '1.3.6.1.4.1.41916.11.10.1.1.11',
|
||||
'ntpAssociationsTable' => '1.3.6.1.4.1.41916.11.10.2',
|
||||
'ntpAssociationsEntry' => '1.3.6.1.4.1.41916.11.10.2.1',
|
||||
'ntpAssociationsIdx' => '1.3.6.1.4.1.41916.11.10.2.1.1',
|
||||
'ntpAssociationsAssocid' => '1.3.6.1.4.1.41916.11.10.2.1.2',
|
||||
'ntpAssociationsStatus' => '1.3.6.1.4.1.41916.11.10.2.1.3',
|
||||
'ntpAssociationsConf' => '1.3.6.1.4.1.41916.11.10.2.1.4',
|
||||
'ntpAssociationsReachability' => '1.3.6.1.4.1.41916.11.10.2.1.5',
|
||||
'ntpAssociationsAuth' => '1.3.6.1.4.1.41916.11.10.2.1.6',
|
||||
'ntpAssociationsCondition' => '1.3.6.1.4.1.41916.11.10.2.1.7',
|
||||
'ntpAssociationsLastEvent' => '1.3.6.1.4.1.41916.11.10.2.1.8',
|
||||
'ntpAssociationsCount' => '1.3.6.1.4.1.41916.11.10.2.1.9',
|
||||
'ntpRefid' => '1.3.6.1.4.1.41916.11.10.3',
|
||||
'ntpReftime' => '1.3.6.1.4.1.41916.11.10.4',
|
||||
'ntpStratum' => '1.3.6.1.4.1.41916.11.10.5',
|
||||
'ntpRootdelay' => '1.3.6.1.4.1.41916.11.10.6',
|
||||
'ntpRootdisp' => '1.3.6.1.4.1.41916.11.10.7',
|
||||
'ntpFreqDriftPpm' => '1.3.6.1.4.1.41916.11.10.8',
|
||||
'ntpPollInterval' => '1.3.6.1.4.1.41916.11.10.9',
|
||||
'ntpOffset' => '1.3.6.1.4.1.41916.11.10.10',
|
||||
'transport' => '1.3.6.1.4.1.41916.11.11',
|
||||
'transportConnectionTable' => '1.3.6.1.4.1.41916.11.11.1',
|
||||
'transportConnectionEntry' => '1.3.6.1.4.1.41916.11.11.1.1',
|
||||
'transportConnectionTrackType' => '1.3.6.1.4.1.41916.11.11.1.1.1',
|
||||
'transportConnectionTrackTypeDefinition' => 'VIPTELA-OPER-SYSTEM::transportConnectionTrackType',
|
||||
'transportConnectionSource' => '1.3.6.1.4.1.41916.11.11.1.1.2',
|
||||
'transportConnectionDestination' => '1.3.6.1.4.1.41916.11.11.1.1.3',
|
||||
'transportConnectionHost' => '1.3.6.1.4.1.41916.11.11.1.1.4',
|
||||
'transportConnectionHistoryTable' => '1.3.6.1.4.1.41916.11.12',
|
||||
'transportConnectionHistoryEntry' => '1.3.6.1.4.1.41916.11.12.1',
|
||||
'transportConnectionHistoryIndex' => '1.3.6.1.4.1.41916.11.12.1.1',
|
||||
'transportConnectionHistoryTime' => '1.3.6.1.4.1.41916.11.12.1.2',
|
||||
'transportConnectionHistoryState' => '1.3.6.1.4.1.41916.11.12.1.3',
|
||||
'transportConnectionHistoryStateDefinition' => 'VIPTELA-OPER-SYSTEM::transportConnectionHistoryState',
|
||||
'crashTable' => '1.3.6.1.4.1.41916.11.13',
|
||||
'crashEntry' => '1.3.6.1.4.1.41916.11.13.1',
|
||||
'crashIndex' => '1.3.6.1.4.1.41916.11.13.1.1',
|
||||
'crashCoreTime' => '1.3.6.1.4.1.41916.11.13.1.2',
|
||||
'crashCoreFilename' => '1.3.6.1.4.1.41916.11.13.1.3',
|
||||
'softwareTable' => '1.3.6.1.4.1.41916.11.14',
|
||||
'softwareEntry' => '1.3.6.1.4.1.41916.11.14.1',
|
||||
'softwareVersion' => '1.3.6.1.4.1.41916.11.14.1.1',
|
||||
'softwareActive' => '1.3.6.1.4.1.41916.11.14.1.2',
|
||||
'softwareDefault' => '1.3.6.1.4.1.41916.11.14.1.3',
|
||||
'softwarePrevious' => '1.3.6.1.4.1.41916.11.14.1.4',
|
||||
'softwareTimestamp' => '1.3.6.1.4.1.41916.11.14.1.5',
|
||||
'softwareConfirmed' => '1.3.6.1.4.1.41916.11.14.1.6',
|
||||
'softwareNext' => '1.3.6.1.4.1.41916.11.14.1.7',
|
||||
'systemLocalOnDemandTable' => '1.3.6.1.4.1.41916.11.15',
|
||||
'systemLocalOnDemandEntry' => '1.3.6.1.4.1.41916.11.15.1',
|
||||
'systemLocalOnDemandSystemIP' => '1.3.6.1.4.1.41916.11.15.1.1',
|
||||
'systemLocalOnDemandSiteID' => '1.3.6.1.4.1.41916.11.15.1.2',
|
||||
'systemLocalOnDemandOnDemand' => '1.3.6.1.4.1.41916.11.15.1.3',
|
||||
'systemLocalOnDemandStatus' => '1.3.6.1.4.1.41916.11.15.1.4',
|
||||
'systemLocalOnDemandIdleTimeoutExpiry' => '1.3.6.1.4.1.41916.11.15.1.5',
|
||||
'systemRemoteOnDemandTable' => '1.3.6.1.4.1.41916.11.16',
|
||||
'systemRemoteOnDemandEntry' => '1.3.6.1.4.1.41916.11.16.1',
|
||||
'systemRemoteOnDemandSystemIP' => '1.3.6.1.4.1.41916.11.16.1.1',
|
||||
'systemRemoteOnDemandSiteID' => '1.3.6.1.4.1.41916.11.16.1.2',
|
||||
'systemRemoteOnDemandOnDemand' => '1.3.6.1.4.1.41916.11.16.1.3',
|
||||
'systemRemoteOnDemandStatus' => '1.3.6.1.4.1.41916.11.16.1.4',
|
||||
'systemRemoteOnDemandIdleTimeoutExpiry' => '1.3.6.1.4.1.41916.11.16.1.5',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'VIPTELA-OPER-SYSTEM'} = {
|
||||
'systemStatusState' => {
|
||||
'0' => 'blkng-green',
|
||||
'1' => 'green',
|
||||
'2' => 'yellow',
|
||||
'3' => 'red',
|
||||
},
|
||||
'systemStatusModel' => {
|
||||
'1' => 'vsmart',
|
||||
'2' => 'vmanage',
|
||||
'3' => 'vbond',
|
||||
'4' => 'vedge-1000',
|
||||
'5' => 'vedge-2000',
|
||||
'6' => 'vedge-100',
|
||||
'7' => 'vedge-100-W2',
|
||||
'8' => 'vedge-100-WM',
|
||||
'9' => 'vedge-100-M2',
|
||||
'10' => 'vedge-100-M',
|
||||
'11' => 'vedge-100-B',
|
||||
'12' => 'vedge-cloud',
|
||||
'13' => 'vcontainer',
|
||||
'14' => 'vedge-5000',
|
||||
'15' => 'vedge-CSR-1000v',
|
||||
'16' => 'vedge-ISR-4331',
|
||||
'17' => 'vedge-ISR-4321',
|
||||
'18' => 'vedge-ISR-4351',
|
||||
'19' => 'vedge-ISR-4221',
|
||||
'20' => 'vedge-ASR-1001-X',
|
||||
'21' => 'vedge-ASR-1001-HX',
|
||||
'22' => 'vedge-ASR-1002-X',
|
||||
'23' => 'vedge-ASR-1002-HX',
|
||||
'24' => 'vedge-C1111-8PLTEEA',
|
||||
'25' => 'vedge-C1111-8PLTELA',
|
||||
'26' => 'vedge-C1117-4PLTEEA',
|
||||
'27' => 'vedge-C1117-4PLTELA',
|
||||
'28' => 'vedge-C1116-4PLTEEA',
|
||||
'29' => 'vedge-C1116-4PLTELA',
|
||||
'30' => 'vedge-ISRv',
|
||||
'31' => 'vedge-C1111-8P',
|
||||
'32' => 'vedge-C1111-4PLTEEA',
|
||||
'33' => 'vedge-C1111-4PLTELA',
|
||||
'34' => 'vedge-C1117-4PMLTEEA',
|
||||
'35' => 'vedge-C1111-4P',
|
||||
'36' => 'vedge-C1116-4P',
|
||||
'37' => 'vedge-C1117-4P',
|
||||
'38' => 'vedge-C1117-4PM',
|
||||
'39' => 'vedge-C1101-4P',
|
||||
'40' => 'vedge-C1101-4PLTEP',
|
||||
'41' => 'vedge-C1111X-8P',
|
||||
'42' => 'vedge-C1111-8PLTEEAW',
|
||||
'43' => 'vedge-C1111-8PW',
|
||||
'44' => 'vedge-ISR-4431',
|
||||
'45' => 'vedge-ISR-4451-X',
|
||||
'46' => 'vedge-ISR-4221X',
|
||||
'47' => 'vedge-ISR-4461',
|
||||
'48' => 'vedge-C8300-1N1S-6G',
|
||||
'49' => 'vedge-C8300-1N1S-4G2X',
|
||||
'54' => 'vedge-CE-9515',
|
||||
'55' => 'vedge-CE-9511',
|
||||
'56' => 'vedge-IR-1101',
|
||||
'57' => 'vedge-C1121X-8PLTEPW',
|
||||
'60' => 'vedge-C1161X-8P',
|
||||
'61' => 'vedge-C1161X-8PLTEP',
|
||||
'62' => 'vedge-C1111-8PLTEAEAW',
|
||||
'63' => 'vedge-C1121-8P',
|
||||
'64' => 'vedge-C1121-8PLTEP',
|
||||
'65' => 'vedge-C1121X-8PLTEPWA',
|
||||
'66' => 'vedge-C1127X-8PMLTEP',
|
||||
'68' => 'vedge-C1109-4PLTE2P',
|
||||
'69' => 'vedge-C1101-4PLTEPW',
|
||||
'70' => 'vedge-C1109-4PLTE2PW',
|
||||
'71' => 'vedge-C1111-8PLTELAW',
|
||||
'72' => 'vedge-C1121X-8P',
|
||||
'73' => 'vedge-C1121X-8PLTEP',
|
||||
'74' => 'vedge-C1126X-8PLTEP',
|
||||
'75' => 'vedge-C1127X-8PLTEP',
|
||||
'76' => 'vedge-C8500-12X4QC',
|
||||
'77' => 'vedge-C8500-12X',
|
||||
'78' => 'vedge-C1121-8PLTEPW',
|
||||
'79' => 'vedge-C1113-8PMLTEEA',
|
||||
'80' => 'vedge-ISR1100-4G',
|
||||
'81' => 'vedge-ISR1100-4GLTE',
|
||||
'82' => 'vedge-ISR1100-6G',
|
||||
'84' => 'vedge-C8300-2N2S-6G',
|
||||
'85' => 'vedge-C8300-2N2S-4G2X',
|
||||
'86' => 'vedge-C8500L-8G4X',
|
||||
'100' => 'vedge-sim',
|
||||
'200' => 'vedge-NFVIS-ENCS5100',
|
||||
'201' => 'vedge-NFVIS-ENCS5400',
|
||||
'202' => 'vedge-NFVIS-UCSC-M5',
|
||||
'203' => 'vedge-NFVIS-UCSC-E',
|
||||
'204' => 'vedge-NFVIS-CSP2100',
|
||||
'205' => 'vedge-NFVIS-CSP2100-X1',
|
||||
'206' => 'vedge-NFVIS-CSP2100-X2',
|
||||
'207' => 'vedge-NFVIS-CSP2100-CSP-5444',
|
||||
'212' => 'vedge-C1161-8P',
|
||||
'213' => 'vedge-C1161-8PLTEP',
|
||||
'214' => 'vedge-C1126-8PLTEP',
|
||||
'215' => 'vedge-C1127-8PLTEP',
|
||||
'216' => 'vedge-C1127-8PMLTEP',
|
||||
'217' => 'vedge-C1121-4P',
|
||||
'218' => 'vedge-C1121-4PLTEP',
|
||||
'219' => 'vedge-C1128-8PLTEP',
|
||||
'220' => 'vedge-C1111-4PW',
|
||||
'221' => 'vedge-C1112-8P',
|
||||
'222' => 'vedge-C1112-8PLTEEA',
|
||||
'223' => 'vedge-C1112-8PLTEEAW',
|
||||
'224' => 'vedge-C1112-8PW',
|
||||
'225' => 'vedge-C1113-8P',
|
||||
'226' => 'vedge-C1113-8PLTEEA',
|
||||
'227' => 'vedge-C1113-8PLTEEAW',
|
||||
'228' => 'vedge-C1113-8PLTELAW',
|
||||
'229' => 'vedge-C1113-8PLTELA',
|
||||
'230' => 'vedge-C1113-8PM',
|
||||
'231' => 'vedge-C1113-8PMW',
|
||||
'232' => 'vedge-C1113-8PW',
|
||||
'233' => 'vedge-C1116-4PLTEEAW',
|
||||
'234' => 'vedge-C1116-4PW',
|
||||
'235' => 'vedge-C1117-4PLTEEAW',
|
||||
'236' => 'vedge-C1117-4PMLTEEAW',
|
||||
'237' => 'vedge-C1117-4PMW',
|
||||
'238' => 'vedge-C1117-4PW',
|
||||
'239' => 'vedge-C1118-8P',
|
||||
'240' => 'vedge-C1109-2PLTEGB',
|
||||
'241' => 'vedge-C1109-2PLTEUS',
|
||||
'242' => 'vedge-C1109-2PLTEVZ',
|
||||
'243' => 'vedge-C1113-8PLTEW',
|
||||
'244' => 'vedge-C1112-8PLTEEAWE',
|
||||
'245' => 'vedge-C1112-8PWE',
|
||||
'246' => 'vedge-C1113-8PLTELAWZ',
|
||||
'247' => 'vedge-C1113-8PMWE',
|
||||
'248' => 'vedge-C1116-4PLTEEAWE',
|
||||
'249' => 'vedge-C1116-4PWE',
|
||||
'250' => 'vedge-C1117-4PLTEEAWA',
|
||||
'251' => 'vedge-C1117-4PMLTEEAWE',
|
||||
'252' => 'vedge-C1117-4PMWE',
|
||||
'253' => 'vedge-C8200-1N-4G',
|
||||
'254' => 'vedge-ISR1100-4GLTE-XE',
|
||||
'255' => 'vedge-ISR1100-4G-XE',
|
||||
'256' => 'vedge-ISR1100-6G-XE',
|
||||
'257' => 'vedge-NFVIS-C8200-UCPE',
|
||||
'258' => 'vedge-C8300-1N1S-6T',
|
||||
'259' => 'vedge-C8300-1N1S-4T2X',
|
||||
'260' => 'vedge-C8300-2N2S-6T',
|
||||
'261' => 'vedge-C8300-2N2S-4T2X',
|
||||
'262' => 'vedge-C8200-1N-4T',
|
||||
'263' => 'vedge-ESR-6300',
|
||||
'264' => 'vedge-C8000V',
|
||||
'265' => 'vedge-ISR1100X-4G',
|
||||
'266' => 'vedge-ISR1100X-6G',
|
||||
'267' => 'vedge-ISR1100X-4G-XE',
|
||||
'268' => 'vedge-ISR1100X-6G-XE',
|
||||
},
|
||||
'transportConnectionHistoryState' => {
|
||||
'0' => 'down',
|
||||
'1' => 'up',
|
||||
},
|
||||
'transportConnectionTrackType' => {
|
||||
'0' => 'system',
|
||||
'1' => 'tloc',
|
||||
},
|
||||
'systemStatusBoardType' => {
|
||||
'0' => 'vedge-1000',
|
||||
'1' => 'vedge-2000',
|
||||
'2' => 'sim',
|
||||
'3' => 'none',
|
||||
'4' => 'unknown',
|
||||
'5' => 'vedge-100',
|
||||
'6' => 'vedge-100-B',
|
||||
'7' => 'vedge-5000',
|
||||
'8' => 'vedge-CSR',
|
||||
'9' => 'vedge-ISR',
|
||||
'10' => 'vedge-ASR',
|
||||
'11' => 'vedge-101-B',
|
||||
'12' => 'vedge-1001',
|
||||
'13' => 'vedge-101-m',
|
||||
'14' => 'vedge-ISR1100-4G',
|
||||
'15' => 'vedge-ISR1100-4GLTE',
|
||||
'16' => 'vedge-ISR1100-6G',
|
||||
'17' => 'vedge-encs',
|
||||
'18' => 'vedge-ISR1100X-4G',
|
||||
'19' => 'vedge-ISR1100X-6G',
|
||||
},
|
||||
'usersProto' => {
|
||||
'0' => 'unknown',
|
||||
'1' => 'tcp',
|
||||
'2' => 'ssh',
|
||||
'3' => 'system',
|
||||
'4' => 'console',
|
||||
'5' => 'ssl',
|
||||
'6' => 'http',
|
||||
'7' => 'https',
|
||||
'8' => 'udp',
|
||||
},
|
||||
'systemStatusSystemFipsMode' => {
|
||||
'0' => 'unavailable',
|
||||
'1' => 'disabled',
|
||||
'2' => 'enabled',
|
||||
},
|
||||
'aaaUsergroupTaskMode' => {
|
||||
'0' => 'system',
|
||||
'1' => 'interface',
|
||||
'2' => 'policy',
|
||||
'3' => 'routing',
|
||||
'4' => 'security',
|
||||
},
|
||||
'bootPartitionPartition' => {
|
||||
'0' => 'a1',
|
||||
'1' => 'a2',
|
||||
},
|
||||
};
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,24 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::VORMETRICMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'VORMETRIC-MIB'} = {
|
||||
url => '',
|
||||
name => 'VORMETRIC-MIB',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'VORMETRIC-MIB'} =
|
||||
'1.3.6.1.4.1.21513.1';
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'VORMETRIC-MIB'} = {
|
||||
'vormetric' => '1.3.6.1.4.1.21513',
|
||||
'version' => '1.3.6.1.4.1.21513.1',
|
||||
'fingerPrint' => '1.3.6.1.4.1.21513.2',
|
||||
'serverTime' => '1.3.6.1.4.1.21513.3',
|
||||
'licenses' => '1.3.6.1.4.1.21513.5',
|
||||
'serverHA' => '1.3.6.1.4.1.21513.6',
|
||||
'diskUsage' => '1.3.6.1.4.1.21513.7',
|
||||
'vmstat' => '1.3.6.1.4.1.21513.8',
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'VORMETRIC-MIB'} = {
|
||||
};
|
||||
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
package Monitoring::GLPlugin::SNMP::MibsAndOids::VRRPMIB;
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'VRRP-MIB'} = {
|
||||
url => 'ftp://ftp.cisco.com/pub/mibs/v2/VRRP-MIB.my',
|
||||
name => 'VRRP-MIB'
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::requirements->{'VRRP-MIB'} = [
|
||||
'SNMPv2-TC-v1-MIB',
|
||||
];
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'VRRP-MIB'} = {
|
||||
vrrpMIB => '1.3.6.1.2.1.68',
|
||||
vrrpNotifications => '1.3.6.1.2.1.68.0',
|
||||
vrrpTrapNewMaster => '1.3.6.1.2.1.68.0.1',
|
||||
vrrpTrapAuthFailure => '1.3.6.1.2.1.68.0.2',
|
||||
vrrpOperations => '1.3.6.1.2.1.68.1',
|
||||
vrrpNodeVersion => '1.3.6.1.2.1.68.1.1',
|
||||
vrrpNotificationCntl => '1.3.6.1.2.1.68.1.2',
|
||||
vrrpOperTable => '1.3.6.1.2.1.68.1.3',
|
||||
vrrpOperEntry => '1.3.6.1.2.1.68.1.3.1',
|
||||
vrrpOperVrId => '1.3.6.1.2.1.68.1.3.1.1',
|
||||
vrrpOperAuthKey => '1.3.6.1.2.1.68.1.3.1.10',
|
||||
vrrpOperAdvertisementInterval => '1.3.6.1.2.1.68.1.3.1.11',
|
||||
vrrpOperPreemptMode => '1.3.6.1.2.1.68.1.3.1.12',
|
||||
vrrpOperVirtualRouterUpTime => '1.3.6.1.2.1.68.1.3.1.13',
|
||||
vrrpOperProtocol => '1.3.6.1.2.1.68.1.3.1.14',
|
||||
vrrpOperProtocolDefinition => 'VRRP-MIB::vrrpOperProtocol',
|
||||
vrrpOperRowStatus => '1.3.6.1.2.1.68.1.3.1.15',
|
||||
vrrpOperRowStatusDefinition => 'SNMPv2-TC-v1-MIB::RowStatus',
|
||||
vrrpOperVirtualMacAddr => '1.3.6.1.2.1.68.1.3.1.2',
|
||||
vrrpOperState => '1.3.6.1.2.1.68.1.3.1.3',
|
||||
vrrpOperStateDefinition => 'VRRP-MIB::vrrpOperState',
|
||||
vrrpOperAdminState => '1.3.6.1.2.1.68.1.3.1.4',
|
||||
vrrpOperAdminStateDefinition => 'VRRP-MIB::vrrpOperAdminState',
|
||||
vrrpOperPriority => '1.3.6.1.2.1.68.1.3.1.5',
|
||||
vrrpOperIpAddrCount => '1.3.6.1.2.1.68.1.3.1.6',
|
||||
vrrpOperMasterIpAddr => '1.3.6.1.2.1.68.1.3.1.7',
|
||||
vrrpOperPrimaryIpAddr => '1.3.6.1.2.1.68.1.3.1.8',
|
||||
vrrpOperAuthType => '1.3.6.1.2.1.68.1.3.1.9',
|
||||
vrrpOperAuthTypeDefinition => 'VRRP-MIB::vrrpOperAuthType',
|
||||
vrrpAssoIpAddrTable => '1.3.6.1.2.1.68.1.4',
|
||||
vrrpAssoIpAddrEntry => '1.3.6.1.2.1.68.1.4.1',
|
||||
vrrpAssoIpAddr => '1.3.6.1.2.1.68.1.4.1.1',
|
||||
vrrpAssoIpAddrRowStatus => '1.3.6.1.2.1.68.1.4.1.2',
|
||||
vrrpAssoIpAddrRowStatusDefinition => 'SNMPv2-TC-v1-MIB::RowStatus',
|
||||
vrrpTrapPacketSrc => '1.3.6.1.2.1.68.1.5',
|
||||
vrrpTrapAuthErrorType => '1.3.6.1.2.1.68.1.6',
|
||||
vrrpTrapAuthErrorTypeDefinition => 'VRRP-MIB::vrrpTrapAuthErrorType',
|
||||
vrrpStatistics => '1.3.6.1.2.1.68.2',
|
||||
vrrpRouterChecksumErrors => '1.3.6.1.2.1.68.2.1',
|
||||
vrrpRouterVersionErrors => '1.3.6.1.2.1.68.2.2',
|
||||
vrrpRouterVrIdErrors => '1.3.6.1.2.1.68.2.3',
|
||||
vrrpRouterStatsTable => '1.3.6.1.2.1.68.2.4',
|
||||
vrrpRouterStatsEntry => '1.3.6.1.2.1.68.2.4.1',
|
||||
vrrpStatsBecomeMaster => '1.3.6.1.2.1.68.2.4.1.1',
|
||||
vrrpStatsInvalidAuthType => '1.3.6.1.2.1.68.2.4.1.10',
|
||||
vrrpStatsAuthTypeMismatch => '1.3.6.1.2.1.68.2.4.1.11',
|
||||
vrrpStatsPacketLengthErrors => '1.3.6.1.2.1.68.2.4.1.12',
|
||||
vrrpStatsAdvertiseRcvd => '1.3.6.1.2.1.68.2.4.1.2',
|
||||
vrrpStatsAdvertiseIntervalErrors => '1.3.6.1.2.1.68.2.4.1.3',
|
||||
vrrpStatsAuthFailures => '1.3.6.1.2.1.68.2.4.1.4',
|
||||
vrrpStatsIpTtlErrors => '1.3.6.1.2.1.68.2.4.1.5',
|
||||
vrrpStatsPriorityZeroPktsRcvd => '1.3.6.1.2.1.68.2.4.1.6',
|
||||
vrrpStatsPriorityZeroPktsSent => '1.3.6.1.2.1.68.2.4.1.7',
|
||||
vrrpStatsInvalidTypePktsRcvd => '1.3.6.1.2.1.68.2.4.1.8',
|
||||
vrrpStatsAddressListErrors => '1.3.6.1.2.1.68.2.4.1.9',
|
||||
vrrpConformance => '1.3.6.1.2.1.68.3',
|
||||
vrrpMIBCompliances => '1.3.6.1.2.1.68.3.1',
|
||||
vrrpMIBCompliance => '1.3.6.1.2.1.68.3.1.1',
|
||||
vrrpMIBGroups => '1.3.6.1.2.1.68.3.2',
|
||||
vrrpOperGroup => '1.3.6.1.2.1.68.3.2.1',
|
||||
vrrpStatsGroup => '1.3.6.1.2.1.68.3.2.2',
|
||||
vrrpTrapGroup => '1.3.6.1.2.1.68.3.2.3',
|
||||
vrrpNotificationGroup => '1.3.6.1.2.1.68.3.2.4'
|
||||
};
|
||||
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::definitions->{'VRRP-MIB'} = {
|
||||
vrrpOperAdminState => {
|
||||
'1' => 'up',
|
||||
'2' => 'down'
|
||||
},
|
||||
vrrpOperAuthType => {
|
||||
'1' => 'noAuthentication',
|
||||
'2' => 'simpleTextPassword',
|
||||
'3' => 'ipAuthenticationHeader'
|
||||
},
|
||||
vrrpOperProtocol => {
|
||||
'1' => 'ip',
|
||||
'2' => 'bridge',
|
||||
'3' => 'decnet',
|
||||
'4' => 'other'
|
||||
},
|
||||
vrrpOperState => {
|
||||
'1' => 'initialize',
|
||||
'2' => 'backup',
|
||||
'3' => 'master'
|
||||
},
|
||||
vrrpTrapAuthErrorType => {
|
||||
'1' => 'invalidAuthType',
|
||||
'2' => 'authTypeMismatch',
|
||||
'3' => 'authFailure'
|
||||
}
|
||||
};
|
||||
|
||||
1;
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
package CheckNwcHealth::AVOS;
|
||||
our @ISA = qw(CheckNwcHealth::Bluecoat);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::hardware::health/) {
|
||||
} elsif ($self->mode =~ /device::hardware::load/) {
|
||||
$self->analyze_and_check_cpu_subsystem("CheckNwcHealth::AVOS::Component::CpuSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::memory/) {
|
||||
$self->analyze_and_check_mem_subsystem("CheckNwcHealth::AVOS::Component::MemSubsystem");
|
||||
} elsif ($self->mode =~ /device::licenses::/) {
|
||||
$self->analyze_and_check_key_subsystem("CheckNwcHealth::AVOS::Component::KeySubsystem");
|
||||
} elsif ($self->mode =~ /device::connections/) {
|
||||
$self->analyze_and_check_connection_subsystem("CheckNwcHealth::AVOS::Component::ConnectionSubsystem");
|
||||
} elsif ($self->mode =~ /device::security/) {
|
||||
$self->analyze_and_check_security_subsystem("CheckNwcHealth::AVOS::Component::SecuritySubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
package CheckNwcHealth::Alcatel;
|
||||
our @ISA = qw(CheckNwcHealth::Device);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
if ($self->{productname} =~ /AOS.*OAW/i) {
|
||||
bless $self, 'CheckNwcHealth::Alcatel::OmniAccess';
|
||||
$self->debug('using CheckNwcHealth::Alcatel::OmniAccess');
|
||||
}
|
||||
if (ref($self) ne "CheckNwcHealth::Alcatel") {
|
||||
$self->init();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
package CheckNwcHealth::AlliedTelesyn;
|
||||
our @ISA = qw(CheckNwcHealth::Device);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
$self->no_such_mode();
|
||||
if ($self->mode =~ /device::hardware::health/) {
|
||||
$self->analyze_and_check_environmental_subsystem("CheckNwcHealth::AlliedTelesyn::Component::EnvironmentalSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::load/) {
|
||||
$self->analyze_and_check_cpu_subsystem("CheckNwcHealth::AlliedTelesyn::Component::CpuSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::memory/) {
|
||||
$self->analyze_and_check_mem_subsystem("CheckNwcHealth::AlliedTelesyn::Component::MemSubsystem");
|
||||
} elsif ($self->mode =~ /device::hsrp/) {
|
||||
$self->analyze_and_check_hsrp_subsystem("CheckNwcHealth::HSRP::Component::HSRPSubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1,49 +0,0 @@
|
|||
package CheckNwcHealth::Arista;
|
||||
our @ISA = qw(CheckNwcHealth::Device);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::hardware::health/) {
|
||||
$self->mult_snmp_max_msg_size(10);
|
||||
$self->analyze_and_check_environmental_subsystem("CheckNwcHealth::Arista::Component::EnvironmentalSubsystem");
|
||||
$self->analyze_and_check_disk_subsystem("CheckNwcHealth::Arista::Component::DiskSubsystem");
|
||||
if (! $self->check_messages()) {
|
||||
$self->clear_messages(0);
|
||||
$self->add_ok("environmental hardware working fine");
|
||||
} else {
|
||||
$self->clear_messages(0);
|
||||
}
|
||||
} elsif ($self->mode =~ /device::hardware::load/) {
|
||||
# CPU util on management plane
|
||||
# Utilization of CPUs on dataplane that are used for system functions
|
||||
$self->analyze_and_check_cpu_subsystem("CheckNwcHealth::HOSTRESOURCESMIB::Component::CpuSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::memory/) {
|
||||
$self->analyze_and_check_mem_subsystem("CheckNwcHealth::HOSTRESOURCESMIB::Component::MemSubsystem");
|
||||
} elsif ($self->mode =~ /device::ha::/) {
|
||||
$self->analyze_and_check_ha_subsystem("CheckNwcHealth::Arista::Component::HaSubsystem");
|
||||
} elsif ($self->mode =~ /device::bgp/) {
|
||||
if ($self->implements_mib('ARISTA-BGP4V2-MIB')) {
|
||||
$self->analyze_and_check_interface_subsystem("CheckNwcHealth::Arista::ARISTABGP4V2MIB::Component::PeerSubsystem");
|
||||
} else {
|
||||
$self->establish_snmp_secondary_session();
|
||||
if ($self->implements_mib('ARISTA-BGP4V2-MIB')) {
|
||||
$self->analyze_and_check_interface_subsystem("CheckNwcHealth::Arista::ARISTABGP4V2MIB::Component::PeerSubsystem");
|
||||
} else {
|
||||
# na laeggst me aa am ooosch
|
||||
$self->establish_snmp_session();
|
||||
$self->debug("no ARISTA-BGP4V2-MIB, fallback");
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
} elsif ($self->mode =~ /device::interfacex::errdisabled/) {
|
||||
if ($self->implements_mib('ARISTA-IF-MIB')) {
|
||||
$self->analyze_and_check_interface_subsystem("CheckNwcHealth::Arista::ARISTAIFMIB::Component::InterfaceSubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1,117 +0,0 @@
|
|||
package CheckNwcHealth::Arista::ARISTAIFMIB::Component::InterfaceSubsystem;
|
||||
our @ISA = qw(CheckNwcHealth::IFMIB::Component::InterfaceSubsystem);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::interfacex::errdisable/) {
|
||||
$self->get_snmp_tables('ARISTA-IF-MIB', [
|
||||
['status', 'aristaIfTable', 'CheckNwcHealth::Arista::ARISTAIFMIB::Component::InterfaceSubsystem::Status', sub { my $o = shift; exists $_->{aristaIfErrDisabledReason} && $_->{aristaIfErrDisabledReason}; }, ['aristaIfErrDisabledReason']],
|
||||
]);
|
||||
my @disabled_indices = map {
|
||||
$_->{indices}->[0];
|
||||
} grep {
|
||||
exists $_->{aristaIfErrDisabledReason} && $_->{aristaIfErrDisabledReason};
|
||||
} @{$self->{status}};
|
||||
|
||||
if (! @{$self->{status}}) {
|
||||
return;
|
||||
}
|
||||
my @iftable_columns = qw(ifIndex ifDescr ifAlias ifName);
|
||||
push(@iftable_columns, qw(
|
||||
ifOperStatus ifAdminStatus
|
||||
));
|
||||
my $if_has_changed = $self->update_interface_cache(0);
|
||||
my $only_admin_up =
|
||||
$self->opts->name && $self->opts->name eq '_adminup_' ? 1 : 0;
|
||||
my $only_oper_up =
|
||||
$self->opts->name && $self->opts->name eq '_operup_' ? 1 : 0;
|
||||
if ($only_admin_up || $only_oper_up) {
|
||||
$self->override_opt('name', undef);
|
||||
$self->override_opt('drecksptkdb', undef);
|
||||
}
|
||||
my @indices = $self->get_interface_indices();
|
||||
# we were filtering by name* or not filtering at all, so we have
|
||||
# all the indexes we want
|
||||
my @filtered_disabled_indices = ();
|
||||
foreach my $index (@indices) {
|
||||
foreach my $dindex (@disabled_indices) {
|
||||
if ($dindex == $index->[0]) {
|
||||
push(@filtered_disabled_indices, [$dindex]) if $dindex == $index->[0];
|
||||
}
|
||||
}
|
||||
}
|
||||
# an sich sind wir hier fertig, denn die ifDescr sind in
|
||||
# $self->{interface_cache}->{$index}->{ifDescr};
|
||||
# und weitere snmp-gets sind ueberfluessig (wenn man auf ifAlias verzichtet).
|
||||
# aber da voraussichtlich nur ganz wenige interfaces gefunden werden,
|
||||
# welche disabled sind, kann man sich die extra abfrage schon goennen.
|
||||
# und frueher oder spaeter kommt eh wieder das geplaerr nach ifalias.
|
||||
@indices = @filtered_disabled_indices;
|
||||
if (!$self->opts->name || scalar(@indices) > 0) {
|
||||
my @save_indices = @indices; # die werden in get_snmp_table_objects geshiftet
|
||||
foreach ($self->get_snmp_table_objects(
|
||||
'IFMIB', 'ifTable+ifXTable', \@indices, \@iftable_columns)) {
|
||||
next if $only_admin_up && $_->{ifAdminStatus} ne 'up';
|
||||
next if $only_oper_up && $_->{ifOperStatus} ne 'up';
|
||||
my $interface = CheckNwcHealth::Arista::ARISTAIFMIB::Component::InterfaceSubsystem::Interface->new(%{$_});
|
||||
foreach my $status (@{$self->{status}}) {
|
||||
if ($status->{disabledIfIndex} == $interface->{ifIndex}) {
|
||||
push(@{$interface->{disablestatus}}, $status);
|
||||
}
|
||||
}
|
||||
push(@{$self->{interfaces}}, $interface);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::interfacex::errdisable/) {
|
||||
if (! @{$self->{status}}) {
|
||||
$self->add_ok("no disabled interfaces on this device");
|
||||
} else {
|
||||
foreach (@{$self->{interfaces}}) {
|
||||
$_->check();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
package CheckNwcHealth::Arista::ARISTAIFMIB::Component::InterfaceSubsystem::Status;
|
||||
our @ISA = qw(Monitoring::GLPlugin::SNMP::TableItem);
|
||||
use strict;
|
||||
|
||||
sub finish {
|
||||
my ($self) = @_;
|
||||
$self->{disabledIfIndex} = $self->{indices}->[0];
|
||||
}
|
||||
|
||||
package CheckNwcHealth::Arista::ARISTAIFMIB::Component::InterfaceSubsystem::Interface;
|
||||
our @ISA = qw(Monitoring::GLPlugin::SNMP::TableItem);
|
||||
use strict;
|
||||
|
||||
sub finish {
|
||||
my ($self) = @_;
|
||||
$self->{disablestatus} = [];
|
||||
}
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
my $full_descr = sprintf "%s%s",
|
||||
$self->{ifDescr},
|
||||
$self->{ifAlias} && $self->{ifAlias} ne $self->{ifDescr} ?
|
||||
" (alias ".$self->{ifAlias}.")" : "";
|
||||
if ($self->{disablestatus}) {
|
||||
foreach my $status (@{$self->{disablestatus}}) {
|
||||
$self->add_critical(sprintf("%s is disabled, reason: %s",
|
||||
$full_descr,
|
||||
$status->{aristaIfErrDisabledReason}));
|
||||
}
|
||||
} else {
|
||||
$self->add_ok(sprintf("%s is not disabled", $full_descr));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
package CheckNwcHealth::Arista::Component::DiskSubsystem;
|
||||
our @ISA = qw(CheckNwcHealth::HOSTRESOURCESMIB::Component::DiskSubsystem);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
$self->get_snmp_tables('HOST-RESOURCES-MIB', [
|
||||
['storages', 'hrStorageTable', 'CheckNwcHealth::HOSTRESOURCESMIB::Component::DiskSubsystem::Storage', sub { my $o = shift; return ($o->{hrStorageDescr} =~ /^(Log|Core)$/ or $o->{hrStorageType} eq 'hrStorageFixedDisk') } ],
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1,248 +0,0 @@
|
|||
package CheckNwcHealth::Arista::Component::EnvironmentalSubsystem;
|
||||
our @ISA = qw(Monitoring::GLPlugin::SNMP::Item);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
$self->require_mib("MIB-2-MIB");
|
||||
$self->require_mib("ENTITY-STATE-MIB");
|
||||
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'ENTITY-STATE-MIB'}->{entStateLastChangedDefinition} = 'MIB-2-MIB::DateAndTime';
|
||||
$self->get_snmp_tables('ENTITY-MIB', [
|
||||
['entities', 'entPhysicalTable',
|
||||
'CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Entity',
|
||||
undef,
|
||||
['entPhysicalClass', 'entPhysicalDescr', 'entPhysicalName']
|
||||
],
|
||||
]);
|
||||
$self->get_snmp_tables('ENTITY-SENSOR-MIB', [
|
||||
['sensorvalues', 'entPhySensorTable', 'Monitoring::GLPlugin::SNMP::TableItem'],
|
||||
]);
|
||||
$self->get_snmp_tables('ENTITY-STATE-MIB', [
|
||||
['sensorstates', 'entStateTable', 'Monitoring::GLPlugin::SNMP::TableItem'],
|
||||
]);
|
||||
$self->get_snmp_tables('ARISTA-ENTITY-SENSOR-MIB', [
|
||||
['sensorthresholds', 'aristaEntSensorThresholdTable', 'Monitoring::GLPlugin::SNMP::TableItem'],
|
||||
]);
|
||||
$self->merge_tables("entities", "sensorvalues", "sensorstates", "sensorthresholds");
|
||||
foreach (@{$self->{entities}}) {
|
||||
$_->rebless();
|
||||
$_->finish() if $_->can('finish');
|
||||
}
|
||||
@{$self->{entities}} = grep {
|
||||
! exists $_->{valid} || $_->{valid};
|
||||
} @{$self->{entities}};
|
||||
}
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
$self->{powerSupplyList} = [map {
|
||||
$_->{entPhysicalDescr};
|
||||
} grep {
|
||||
$_->{entPhysicalClass} eq 'powerSupply';
|
||||
} @{$self->{entities}}];
|
||||
#
|
||||
# Check if we lost a power supply. (pulling ps -> entry in snmp disappears)
|
||||
#
|
||||
$self->opts->override_opt('lookback', 1800) if ! $self->opts->lookback;
|
||||
$self->valdiff({name => 'powersupplies', lastarray => 1},
|
||||
qw(powerSupplyList));
|
||||
if (scalar(@{$self->{delta_found_powerSupplyList}}) > 0) {
|
||||
$self->add_ok(sprintf '%d new power supply (%s)',
|
||||
scalar(@{$self->{delta_found_powerSupplyList}}),
|
||||
join(", ", @{$self->{delta_found_powerSupplyList}}));
|
||||
}
|
||||
if (scalar(@{$self->{delta_lost_powerSupplyList}}) > 0) {
|
||||
$self->add_critical(sprintf '%d power supply missing (%s)',
|
||||
scalar(@{$self->{delta_lost_powerSupplyList}}),
|
||||
join(", ", @{$self->{delta_lost_powerSupplyList}}));
|
||||
}
|
||||
delete $self->{powerSupplyList};
|
||||
delete $self->{delta_found_powerSupplyList};
|
||||
delete $self->{delta_lost_powerSupplyList};
|
||||
$self->SUPER::check();
|
||||
}
|
||||
|
||||
package CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Entity;
|
||||
our @ISA = qw(Monitoring::GLPlugin::SNMP::TableItem);
|
||||
use strict;
|
||||
|
||||
|
||||
sub rebless {
|
||||
my ($self) = @_;
|
||||
bless $self,
|
||||
'CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Chassis' if
|
||||
$self->{entPhysicalClass} eq 'chassis';
|
||||
bless $self,
|
||||
'CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Container' if
|
||||
$self->{entPhysicalClass} eq 'container';
|
||||
bless $self,
|
||||
'CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Fan' if
|
||||
$self->{entPhysicalClass} eq 'fan';
|
||||
bless $self,
|
||||
'CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Module' if
|
||||
$self->{entPhysicalClass} eq 'module';
|
||||
bless $self,
|
||||
'CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Port' if
|
||||
$self->{entPhysicalClass} eq 'port';
|
||||
bless $self,
|
||||
'CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Powersupply' if
|
||||
$self->{entPhysicalClass} eq 'powerSupply';
|
||||
bless $self,
|
||||
'CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Sensor' if
|
||||
$self->{entPhysicalClass} eq 'sensor';
|
||||
}
|
||||
|
||||
sub check_state {
|
||||
my ($self) = @_;
|
||||
# An ifAdminStatus of 'up' is equivalent to setting the entStateAdmin
|
||||
# object to 'unlocked'. An ifAdminStatus of 'down' is equivalent to
|
||||
# setting the entStateAdmin object to either 'locked' or
|
||||
# 'shuttingDown', depending on a system's interpretation of 'down'.
|
||||
$self->add_info(sprintf "%s is %s (admin %s, oper %s)",
|
||||
$self->{entPhysicalDescr}, $self->{entStateUsage},
|
||||
$self->{entStateAdmin}, $self->{entStateOper});
|
||||
if ($self->{entStateAdmin} eq "unlocked") {
|
||||
if ($self->{entStateOper} eq "enabled") {
|
||||
if ($self->{entStateUsage} eq "idle") {
|
||||
$self->add_ok();
|
||||
} elsif ($self->{entStateUsage} eq "active") {
|
||||
$self->add_ok();
|
||||
} elsif ($self->{entStateUsage} eq "busy") {
|
||||
$self->add_warning();
|
||||
} else {
|
||||
$self->add_unknown();
|
||||
}
|
||||
} elsif ($self->{entStateOper} eq "disabled") {
|
||||
$self->add_critical();
|
||||
} else {
|
||||
$self->add_unknown();
|
||||
}
|
||||
} elsif ($self->{entStateAdmin} eq "locked") {
|
||||
$self->add_ok(); # admin disabled, ignore
|
||||
} elsif (defined $self->{entPhySensorOperStatus} and $self->{entStateAdmin} eq "unknown" and $self->{entStateOper} eq "unknown" and $self->{entPhySensorOperStatus} eq "unavailable") {
|
||||
# Fans und Powersupplies haben kein entPhySensor*-Gedoens
|
||||
# The value 'unavailable(2)' indicates that the agent presently cannot obtain the sensor value. The value 'nonoperational(3)' indicates that the agent believes the sensor is broken. The sensor could have a hard failure (disconnected wire), ...
|
||||
# Ich will meine Ruhe, also unavailable=ok. Sonst waers ja nonoperational
|
||||
$self->add_ok();
|
||||
} elsif ($self->{entStateOper} ne "enabled" and $self->{entStateStandby} eq "providingService" and exists $self->{entPhySensorValue} and $self->{entPhySensorValue}) {
|
||||
$self->add_critical();
|
||||
} else {
|
||||
$self->add_ok(); # admin disabled, ignore
|
||||
}
|
||||
}
|
||||
|
||||
package CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Chassis;
|
||||
our @ISA = qw(CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Entity);
|
||||
use strict;
|
||||
|
||||
package CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Container;
|
||||
our @ISA = qw(CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Entity);
|
||||
use strict;
|
||||
|
||||
package CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Fan;
|
||||
our @ISA = qw(CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Entity);
|
||||
use strict;
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
$self->check_state();
|
||||
}
|
||||
|
||||
package CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Module;
|
||||
our @ISA = qw(CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Entity);
|
||||
use strict;
|
||||
|
||||
package CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Port;
|
||||
our @ISA = qw(CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Entity);
|
||||
use strict;
|
||||
|
||||
package CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Powersupply;
|
||||
our @ISA = qw(CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Entity);
|
||||
use strict;
|
||||
|
||||
sub finish {
|
||||
my ($self) = @_;
|
||||
$self->{entStateLastChangedAgo} = time - $self->{entStateLastChanged};
|
||||
}
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
$self->check_state();
|
||||
}
|
||||
|
||||
sub check_state {
|
||||
my ($self) = @_;
|
||||
$self->SUPER::check_state();
|
||||
if ($self->{entStateAdmin} eq "locked" &&
|
||||
$self->{entStateOper} eq "disabled" &&
|
||||
$self->{entStateStandby} eq "providingService" &&
|
||||
$self->{entStateUsage} eq "active") {
|
||||
# pull the power cable -> entStateAdmin: locked, entStateOper: disabled,
|
||||
# entStateStandby: providingService, entStateUsage: active
|
||||
$self->add_warning_mitigation(sprintf "%s is down (pulled cable?)", $self->{entPhysicalDescr});
|
||||
} elsif ($self->{entStateOper} eq "unknown" and $self->{entStateAdmin} eq "unknown" and $self->{entStateStandby} eq "providingService") {
|
||||
# pull the power supply, put it back.
|
||||
$self->add_critical_mitigation(sprintf "%s is in an unknown state", $self->{entPhysicalDescr});
|
||||
}
|
||||
}
|
||||
|
||||
package CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Sensor;
|
||||
our @ISA = qw(CheckNwcHealth::Arista::Component::EnvironmentalSubsystem::Entity);
|
||||
use strict;
|
||||
|
||||
sub finish {
|
||||
my ($self) = @_;
|
||||
|
||||
$self->{valid} = ($self->{entPhySensorValue} == -1000000000 || $self->{entPhySensorValue} == 1000000000)
|
||||
? 0 : 1;
|
||||
foreach (qw(entPhySensorValue
|
||||
aristaEntSensorThresholdLowWarning aristaEntSensorThresholdHighWarning
|
||||
aristaEntSensorThresholdLowCritical aristaEntSensorThresholdHighCritical)) {
|
||||
delete $self->{$_} if defined $self->{$_} && $_ ne 'entPhySensorValue' &&
|
||||
($self->{$_} == -1000000000 || $self->{$_} == 1000000000);
|
||||
if ($self->{entPhySensorPrecision} && $self->{$_}) {
|
||||
$self->{$_} /= 10 ** $self->{entPhySensorPrecision};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
$self->check_state();
|
||||
my ($warn, $crit) = (undef, undef);
|
||||
if ($self->{aristaEntSensorStatusDescr} =~ /no thresholds/i) {
|
||||
} else {
|
||||
$warn =
|
||||
($self->{aristaEntSensorThresholdLowWarning} ?
|
||||
$self->{aristaEntSensorThresholdLowWarning} : '').':'.
|
||||
($self->{aristaEntSensorThresholdHighWarning} ?
|
||||
$self->{aristaEntSensorThresholdHighWarning} : '');
|
||||
$crit =
|
||||
($self->{aristaEntSensorThresholdLowCritical} ?
|
||||
$self->{aristaEntSensorThresholdLowCritical} : '').':'.
|
||||
($self->{aristaEntSensorThresholdHighCritical} ?
|
||||
$self->{aristaEntSensorThresholdHighCritical} : '');
|
||||
$warn = undef if $warn eq ':';
|
||||
$crit = undef if $crit eq ':';
|
||||
}
|
||||
$self->add_thresholds(metric => $self->{entPhysicalDescr}.'_'.$self->{entPhySensorUnitsDisplay},
|
||||
warning => $warn, critical => $crit);
|
||||
$self->add_perfdata(
|
||||
label => $self->{entPhysicalDescr}.'_'.$self->{entPhySensorUnitsDisplay},
|
||||
value => $self->{entPhySensorValue},
|
||||
warning => $warn, critical => $crit,
|
||||
);
|
||||
}
|
||||
|
||||
__END__
|
||||
Stecker gezogen
|
||||
[POWERSUPPLY_100721000]
|
||||
entPhysicalClass: powerSupply
|
||||
entPhysicalDescr: PowerSupply2
|
||||
entPhysicalName:
|
||||
entStateAdmin: unknown
|
||||
entStateLastChanged:
|
||||
entStateOper: unknown
|
||||
entStateStandby: providingService <-kein failover, der das hier sichert
|
||||
entStateUsage: active
|
||||
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
package CheckNwcHealth::BGP;
|
||||
our @ISA = qw(CheckNwcHealth::Device);
|
||||
use strict;
|
||||
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
package CheckNwcHealth::Barracuda;
|
||||
our @ISA = qw(CheckNwcHealth::Device);
|
||||
use strict;
|
||||
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::hardware::health/) {
|
||||
$self->bulk_is_baeh(5);
|
||||
$self->analyze_and_check_environmental_subsystem("CheckNwcHealth::Barracuda::Component::EnvironmentalSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::load/) {
|
||||
$self->analyze_and_check_cpu_subsystem("CheckNwcHealth::UCDMIB::Component::CpuSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::memory/) {
|
||||
$self->analyze_and_check_mem_subsystem("CheckNwcHealth::UCDMIB::Component::MemSubsystem");
|
||||
} elsif ($self->mode =~ /device::fw::policy::connections/) {
|
||||
$self->analyze_and_check_fw_subsystem("CheckNwcHealth::Barracuda::Component::FwSubsystem");
|
||||
} elsif ($self->mode =~ /device::ha::/) {
|
||||
$self->analyze_and_check_fw_subsystem("CheckNwcHealth::Barracuda::Component::HaSubsystem");
|
||||
} else {
|
||||
# Merkwuerdigerweise gibts ohne das hier einen Timeout bei
|
||||
# IP-FORWARD-MIB::inetCidrRouteTable und den route-Modi
|
||||
if ($self->mode() =~ /device::routes/) {
|
||||
$self->mult_snmp_max_msg_size(40);
|
||||
$self->bulk_is_baeh(5);
|
||||
} else {
|
||||
$self->reset_snmp_max_msg_size();
|
||||
}
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,110 +0,0 @@
|
|||
package CheckNwcHealth::Barracuda::Component::HaSubsystem;
|
||||
our @ISA = qw(Monitoring::GLPlugin::SNMP::Item);
|
||||
use strict;
|
||||
use constant { OK => 0, WARNING => 1, CRITICAL => 2, UNKNOWN => 3 };
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::ha::role/) {
|
||||
$self->get_snmp_tables('PHION-MIB', [
|
||||
['services', 'serverServicesTable', 'CheckNwcHealth::Barracuda::Component::HaSubsystem::Service'],
|
||||
]);
|
||||
if (! $self->opts->role()) {
|
||||
$self->opts->override_opt('role', 'active');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
$self->SUPER::check();
|
||||
#printf "info %s\n", $self->get_info();
|
||||
$self->add_ok(sprintf "%s node", $self->opts->role());
|
||||
my $num_services = scalar(@{$self->{services}});
|
||||
my $num_up_services = scalar(grep { $_->{serverServiceState} eq "started" } @{$self->{services}});
|
||||
if (! $num_services) {
|
||||
$self->add_unknown(sprintf "no failover service found. (only %s)",
|
||||
join(", ", map { $_->{serverServiceName} } @{$self->{services}}));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
package CheckNwcHealth::Barracuda::Component::HaSubsystem::Service;
|
||||
our @ISA = qw(Monitoring::GLPlugin::SNMP::TableItem);
|
||||
use strict;
|
||||
|
||||
sub finish {
|
||||
my ($self) = @_;
|
||||
my $type_signature = $self->{serverServiceName};
|
||||
if ($self->{serverServiceName} =~ /^\w+[-_:\/](\w+)/) {
|
||||
$type_signature = $1;
|
||||
}
|
||||
if ($type_signature =~ /FW/) {
|
||||
$self->{serverServiceType} = "FW";
|
||||
} elsif ($type_signature =~ /VPN/) {
|
||||
$self->{serverServiceType} = "VPN";
|
||||
} else {
|
||||
$self->{serverServiceType} = "DHCP";
|
||||
}
|
||||
}
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::ha::role/) {
|
||||
$self->add_info(sprintf "service %s is %s",
|
||||
$self->{serverServiceName},
|
||||
$self->{serverServiceState});
|
||||
if ($self->opts->role() eq "active") {
|
||||
if ($self->{serverServiceState} eq "started") {
|
||||
$self->add_ok();
|
||||
} elsif ($self->{serverServiceState} eq "stopped") {
|
||||
$self->add_warning();
|
||||
} elsif ($self->{serverServiceState} eq "blocked") {
|
||||
$self->add_critical();
|
||||
} else {
|
||||
$self->add_unknown();
|
||||
}
|
||||
} else {
|
||||
if ($self->{serverServiceState} eq "stopped") {
|
||||
$self->add_ok();
|
||||
} elsif ($self->{serverServiceState} eq "started") {
|
||||
$self->add_warning();
|
||||
} elsif ($self->{serverServiceState} eq "blocked") {
|
||||
$self->add_critical();
|
||||
} else {
|
||||
$self->add_unknown();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
__END__
|
||||
Irgendwann 2019....der einzige Unterschied zwischen zwei Clusterpartnern war
|
||||
die Liste der serverServiceState (bei gleichen serverServiceName)
|
||||
Sonst nix, absolut nix, beide snmpwalks gleich.
|
||||
Die Services hiessen SE1FWEXT, SE1FWEXT_FWEXT und SE1FWEXT_VPNEXT
|
||||
Nach vielem Hin und Her geht die Frage an den Hersteller, wie man den Cluster
|
||||
ueberwacht. Antwort:
|
||||
|
||||
- Cluster OK Grün
|
||||
o fwext-node1 gibt folgende Werte zurück: Server SE1FWEXT= 1:up Service SE1FWEXT_FWEXT=1:up Service SE1FWEXT_VPNEXT=1:up
|
||||
o fwext-node2 gibt folgende Werte zurück: Server SE1FWEXT= 1:up Service SE1FWEXT_FWEXT= stopped Service SE1FWEXT_VPNEXT=stopped
|
||||
|
||||
- Cluster Warning Gelb
|
||||
o fwext-node1 gibt folgende Werte zurück: Server SE1FWEXT= 1:up Service SE1FWEXT_FWEXT= stopped oder 0:down Service SE1FWEXT_VPNEXT= stopped oder 0:down
|
||||
o fwext-node2 gibt folgende Werte zurück: Server SE1FWEXT= 1:up Service SE1FWEXT_FWEXT=1:up Service SE1FWEXT_VPNEXT=1:up
|
||||
o Oder:
|
||||
o fwext-node1 gibt folgende Werte zurück: Server SE1FWEXT= 1:up Service SE1FWEXT_FWEXT=1:up Service SE1FWEXT_VPNEXT=1:up
|
||||
o fwext-node2 gibt folgende Werte zurück: Server SE1FWEXT= 1:up Service SE1FWEXT_FWEXT=0:down Service SE1FWEXT_VPNEXT=0:down
|
||||
|
||||
- Cluster Critical Rot
|
||||
o fwext-node1 gibt folgende Werte zurück: Server SE1FWEXT= 0:down oder 2:block
|
||||
o Oder:
|
||||
o fwext-node2 gibt folgende Werte zurück: Server SE1FWEXT= 0:down oder 2:block
|
||||
|
||||
Also diese drei Services hart ins Plugin eingebaut.
|
||||
|
||||
Irgendwann 2021 sollen weitere Cluster dazukommen. Nur, jetzt heissen die
|
||||
Services z.b. FZFW009_DH009, FZFW009_FW009 und FZFW009_VPN009.
|
||||
Schaut so aus, als koenten die Servernamen voellig willkuerlich vergeben werden.
|
||||
Bleibt nichts anderes uebrig, als nach FW und VPN zu suchen und nach Spuren von DHCP (oder weder FW noch VPN).
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
package CheckNwcHealth::Bintec;
|
||||
our @ISA = qw(CheckNwcHealth::Device);
|
||||
use strict;
|
||||
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
package CheckNwcHealth::Bintec::Bibo;
|
||||
our @ISA = qw(CheckNwcHealth::Bintec);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::hardware::health/) {
|
||||
$self->analyze_and_check_environmental_subsystem("CheckNwcHealth::Bintec::Bibo::Component::EnvironmentalSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::load/) {
|
||||
$self->analyze_and_check_cpu_subsystem("CheckNwcHealth::Bintec::Bibo::Component::CpuSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::memory/) {
|
||||
$self->analyze_and_check_mem_subsystem("CheckNwcHealth::Bintec::Bibo::Component::MemSubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
package CheckNwcHealth::Bluecat;
|
||||
our @ISA = qw(CheckNwcHealth::Device);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
if ($self->{productname} =~ /Bluecat Address Manager/i) {
|
||||
$self->rebless('CheckNwcHealth::Bluecat::AddressManager');
|
||||
} elsif ($self->{productname} =~ /Bluecat DNS\/DHCP Server/i) {
|
||||
$self->rebless('CheckNwcHealth::Bluecat::DnsDhcpServer');
|
||||
}
|
||||
if (ref($self) ne "CheckNwcHealth::Bluecat") {
|
||||
$self->init();
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
package CheckNwcHealth::Bluecat::AddressManager;
|
||||
our @ISA = qw(CheckNwcHealth::Device);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::hardware::health/) {
|
||||
$self->analyze_and_check_environmental_subsystem("CheckNwcHealth::HOSTRESOURCESMIB::Component::EnvironmentalSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::load/) {
|
||||
$self->analyze_and_check_cpu_subsystem("CheckNwcHealth::HOSTRESOURCESMIB::Component::CpuSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::memory/) {
|
||||
$self->analyze_and_check_mem_subsystem("CheckNwcHealth::HOSTRESOURCESMIB::Component::MemSubsystem");
|
||||
$self->analyze_and_check_jvm_subsystem("CheckNwcHealth::Bluecat::AddressManager::Component::MemSubsystem");
|
||||
} elsif ($self->mode =~ /device::ha::/) {
|
||||
$self->analyze_and_check_ha_subsystem("CheckNwcHealth::Bluecat::AddressManager::Component::HaSubsystem");
|
||||
} elsif ($self->mode =~ /device::mngmt::/) {
|
||||
$self->analyze_and_check_mgmt_subsystem("CheckNwcHealth::Bluecat::AddressManager::Component::MgmtSubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
|
||||
sub pretty_sysdesc {
|
||||
my ($self, $sysDescr) = @_;
|
||||
my $sw_version = $self->get_snmp_object('BAM-SNMP-MIB', 'version');
|
||||
my $start_time = $self->get_snmp_object('BAM-SNMP-MIB', 'startTime');
|
||||
return sprintf "%s, sw version %s, start time %s",
|
||||
$sysDescr, $sw_version, scalar localtime $start_time;
|
||||
}
|
||||
|
||||
|
|
@ -1,78 +0,0 @@
|
|||
package CheckNwcHealth::Bluecat::AddressManager::Component::HaSubsystem;
|
||||
our @ISA = qw(Monitoring::GLPlugin::SNMP::Item);
|
||||
use strict;
|
||||
use constant { OK => 0, WARNING => 1, CRITICAL => 2, UNKNOWN => 3 };
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::ha::status/) {
|
||||
$self->get_snmp_tables('BAM-SNMP-MIB', [
|
||||
["replications", "replicationStatusTable", 'CheckNwcHealth::Bluecat::AddressManager::Component::HaSubsystem::Replication'],
|
||||
]);
|
||||
$self->get_snmp_objects('BAM-SNMP-MIB', (qw(
|
||||
queueSize replication
|
||||
replicationNodeStatus replicationAverageLatency
|
||||
replicationWarningThreshold replicationBreakThreshold
|
||||
replicationLatencyWarningThreshold replicationLatencyCriticalThreshold
|
||||
)));
|
||||
} elsif ($self->mode =~ /device::ha::role/) {
|
||||
if (! $self->opts->role()) {
|
||||
$self->opts->override_opt('role', 'primary');
|
||||
}
|
||||
$self->get_snmp_objects('BAM-SNMP-MIB', (qw(replicationNodeStatus)));
|
||||
}
|
||||
}
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::ha::status/) {
|
||||
foreach (@{$self->{replications}}) {
|
||||
$_->{replicationLatencyCriticalThreshold} = $self->{replicationLatencyCriticalThreshold};
|
||||
$_->{replicationLatencyWarningThreshold} = $self->{replicationLatencyWarningThreshold};
|
||||
$_->check();
|
||||
}
|
||||
} elsif ($self->mode =~ /device::ha::role/) {
|
||||
$self->add_info(sprintf 'ha node status is %s',
|
||||
$self->{replicationNodeStatus},
|
||||
);
|
||||
if ($self->{replicationNodeStatus} eq 'unknown') {
|
||||
$self->add_message(
|
||||
defined $self->opts->mitigation() ? $self->opts->mitigation() : WARNING,
|
||||
'ha was not started');
|
||||
} else {
|
||||
if ($self->{replicationNodeStatus} ne $self->opts->role()) {
|
||||
$self->add_message(
|
||||
defined $self->opts->mitigation() ? $self->opts->mitigation() : WARNING,
|
||||
$self->{info});
|
||||
$self->add_message(
|
||||
defined $self->opts->mitigation() ? $self->opts->mitigation() : WARNING,
|
||||
sprintf "expected role %s", $self->opts->role())
|
||||
} else {
|
||||
$self->add_ok();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
package CheckNwcHealth::Bluecat::AddressManager::Component::HaSubsystem::Replication;
|
||||
our @ISA = qw(Monitoring::GLPlugin::SNMP::TableItem);
|
||||
use strict;
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
$self->add_info(sprintf '%s node %s has status %s, latency is %.2f',
|
||||
lc $self->{replicationRole}, $self->{hostname},
|
||||
lc $self->{replicationHealth}, $self->{currentLatency});
|
||||
$self->set_thresholds(metric => 'latency_'.lc $self->{replicationRole},
|
||||
warning => $self->{replicationLatencyWarningThreshold},
|
||||
critical => $self->{replicationLatencyCriticalThreshold},
|
||||
);
|
||||
$self->add_message($self->check_thresholds(
|
||||
metric => 'latency_'.lc $self->{replicationRole},
|
||||
value => $self->{currentLatency}));
|
||||
$self->add_perfdata(
|
||||
label => 'latency_'.lc $self->{replicationRole},
|
||||
value => $self->{currentLatency}
|
||||
);
|
||||
}
|
||||
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
package CheckNwcHealth::Bluecat::AddressManager::Component::MemSubsystem;
|
||||
our @ISA = qw(Monitoring::GLPlugin::SNMP::Item);
|
||||
use strict;
|
||||
use constant { OK => 0, WARNING => 1, CRITICAL => 2, UNKNOWN => 3 };
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
$self->get_snmp_objects('BAM-SNMP-MIB', (qw(
|
||||
freeMemory maxMemory usageThresholdExceeded
|
||||
)));
|
||||
$self->{jvm_usage} = 100 - 100 * $self->{freeMemory} / $self->{maxMemory};
|
||||
}
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
$self->add_info(sprintf 'jvm mem usage is %.2f%%',
|
||||
$self->{jvm_usage});
|
||||
$self->set_thresholds(metric => "jvm_memory_usage",
|
||||
warning => 80, critical => 90);
|
||||
$self->add_message($self->check_thresholds(
|
||||
metric => "jvm_memory_usage",
|
||||
value => $self->{jvm_usage}));
|
||||
$self->add_perfdata(
|
||||
label => 'jvm_memory_usage',
|
||||
value => $self->{jvm_usage},
|
||||
uom => '%',
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1,24 +0,0 @@
|
|||
package CheckNwcHealth::Bluecat::AddressManager::Component::MgmtSubsystem;
|
||||
our @ISA = qw(Monitoring::GLPlugin::SNMP::Item);
|
||||
use strict;
|
||||
use constant { OK => 0, WARNING => 1, CRITICAL => 2, UNKNOWN => 3 };
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
$self->get_snmp_objects('BAM-SNMP-MIB', (qw(lastSuccessfulBackupTime)));
|
||||
$self->{lastSuccessfulBackupAge} = int((time - $self->{lastSuccessfulBackupTime}) / 3600);
|
||||
}
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
$self->add_info(sprintf "last successful backup was %d hours ago (%s)",
|
||||
$self->{lastSuccessfulBackupAge},
|
||||
scalar localtime $self->{lastSuccessfulBackupTime}
|
||||
);
|
||||
$self->set_thresholds(metric => "backup_age",
|
||||
warning => 24*7,
|
||||
critical => 24*7*4,
|
||||
);
|
||||
$self->add_message($self->check_thresholds(metric => "backup_age",
|
||||
value => $self->{lastSuccessfulBackupAge}));
|
||||
}
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
package CheckNwcHealth::Bluecat::DnsDhcpServer;
|
||||
our @ISA = qw(CheckNwcHealth::Device);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::hardware::health/) {
|
||||
$self->analyze_and_check_environmental_subsystem("CheckNwcHealth::HOSTRESOURCESMIB::Component::EnvironmentalSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::load/) {
|
||||
$self->analyze_and_check_cpu_subsystem("CheckNwcHealth::HOSTRESOURCESMIB::Component::CpuSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::memory/) {
|
||||
$self->analyze_and_check_mem_subsystem("CheckNwcHealth::HOSTRESOURCESMIB::Component::MemSubsystem");
|
||||
} elsif ($self->mode =~ /device::ha::/) {
|
||||
$self->analyze_and_check_ha_subsystem("CheckNwcHealth::Bluecat::DnsDhcpServer::Component::HaSubsystem");
|
||||
} elsif ($self->mode =~ /device::process::/) {
|
||||
$self->analyze_and_check_process_subsystem("CheckNwcHealth::Bluecat::DnsDhcpServer::Component::ProcessSubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
|
||||
sub pretty_sysdesc {
|
||||
my ($self, $sysDescr) = @_;
|
||||
my $sw_version = $self->get_snmp_object('BCN-SYSTEM-MIB', 'bcnSysIdOSRelease');
|
||||
return sprintf "%s, sw version %s", $sysDescr, $sw_version;
|
||||
}
|
||||
|
||||
|
|
@ -1,41 +0,0 @@
|
|||
package CheckNwcHealth::Bluecat::DnsDhcpServer::Component::HaSubsystem;
|
||||
our @ISA = qw(Monitoring::GLPlugin::SNMP::Item);
|
||||
use strict;
|
||||
use constant { OK => 0, WARNING => 1, CRITICAL => 2, UNKNOWN => 3 };
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
$self->get_snmp_objects('ADONIS-DNS-MIB', qw(haServiceRunning));
|
||||
if ($self->mode =~ /device::ha::status/) {
|
||||
} elsif ($self->mode =~ /device::ha::role/) {
|
||||
$self->get_snmp_objects('ADONIS-DNS-MIB', qw(haServiceNodeType));
|
||||
if (! $self->opts->role()) {
|
||||
$self->opts->override_opt('role', 'active');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::ha::status/) {
|
||||
if ($self->{haServiceRunning} == 0) {
|
||||
$self->add_critical_mitigation("HA service is not running");
|
||||
} else {
|
||||
$self->add_ok("HA service is running");
|
||||
}
|
||||
} elsif ($self->mode =~ /device::ha::role/) {
|
||||
$self->{haServiceNodeType} = $self->{haServiceNodeType} == 1 ?
|
||||
"active" : "passive";
|
||||
if ($self->{haServiceRunning} == 1) {
|
||||
$self->add_info(sprintf 'ha node type is %s', $self->{haServiceNodeType});
|
||||
if ($self->opts->role() ne $self->{haServiceNodeType}) {
|
||||
$self->add_critical_mitigation();
|
||||
} else {
|
||||
$self->add_ok();
|
||||
}
|
||||
} else {
|
||||
$self->add_critical_mitigation("HA service is not running");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1,47 +0,0 @@
|
|||
package CheckNwcHealth::Bluecat::DnsDhcpServer::Component::ProcessSubsystem;
|
||||
our @ISA = qw(Monitoring::GLPlugin::SNMP::Item);
|
||||
use strict;
|
||||
use constant { OK => 0, WARNING => 1, CRITICAL => 2, UNKNOWN => 3 };
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
$self->get_snmp_objects('BCN-DNS-MIB', (qw(bcnDnsSerOperState)));
|
||||
$self->get_snmp_objects('BCN-DHCPV4-MIB', (qw(bcnDhcpv4SerOperState)));
|
||||
}
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
if ($self->{bcnDnsSerOperState}) {
|
||||
$self->add_info(sprintf "dns service is %s", $self->{bcnDnsSerOperState});
|
||||
$self->add_ok() if $self->{bcnDnsSerOperState} eq "running";
|
||||
$self->add_critical() if $self->{bcnDnsSerOperState} eq "notRunning";
|
||||
$self->add_warning() if $self->{bcnDnsSerOperState} eq "starting";
|
||||
$self->add_warning() if $self->{bcnDnsSerOperState} eq "stopping";
|
||||
$self->add_critical() if $self->{bcnDnsSerOperState} eq "fault";
|
||||
} else {
|
||||
$self->get_snmp_objects('ADONIS-DNS-MIB', (qw(dnsDaemonRunning)));
|
||||
if (exists $self->{dnsDaemonRunning}) {
|
||||
$self->add_info(sprintf "dns service is %s",
|
||||
$self->{dnsDaemonRunning} ? "running" : "not running");
|
||||
$self->add_ok() if $self->{dnsDaemonRunning} == 0;
|
||||
$self->add_critical() if $self->{dnsDaemonRunning} == 1;
|
||||
}
|
||||
}
|
||||
if ($self->{bcnDhcpv4SerOperState}) {
|
||||
$self->add_info(sprintf "dhcp service is %s", $self->{bcnDhcpv4SerOperState});
|
||||
$self->add_ok() if $self->{bcnDhcpv4SerOperState} eq "running";
|
||||
$self->add_critical() if $self->{bcnDhcpv4SerOperState} eq "notRunning";
|
||||
$self->add_warning() if $self->{bcnDhcpv4SerOperState} eq "starting";
|
||||
$self->add_warning() if $self->{bcnDhcpv4SerOperState} eq "stopping";
|
||||
$self->add_critical() if $self->{bcnDhcpv4SerOperState} eq "fault";
|
||||
} else {
|
||||
$self->get_snmp_objects('ADONIS-DNS-MIB', (qw(dhcpDaemonRunning)));
|
||||
if (exists $self->{dhcpDaemonRunning}) {
|
||||
$self->add_info(sprintf "dhcp service is %s",
|
||||
$self->{dhcpDaemonRunning} ? "running" : "not running");
|
||||
$self->add_ok() if $self->{dhcpDaemonRunning} == 0;
|
||||
$self->add_critical() if $self->{dhcpDaemonRunning} == 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
package CheckNwcHealth::CheckPoint::Firewall1;
|
||||
our @ISA = qw(CheckNwcHealth::CheckPoint);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::hardware::health/) {
|
||||
$self->analyze_and_check_environmental_subsystem("CheckNwcHealth::CheckPoint::Firewall1::Component::EnvironmentalSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::load/) {
|
||||
$self->analyze_and_check_cpu_subsystem("CheckNwcHealth::CheckPoint::Firewall1::Component::CpuSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::memory/) {
|
||||
$self->analyze_and_check_mem_subsystem("CheckNwcHealth::CheckPoint::Firewall1::Component::MemSubsystem");
|
||||
} elsif ($self->mode =~ /device::ha::/) {
|
||||
$self->analyze_and_check_ha_subsystem("CheckNwcHealth::CheckPoint::Firewall1::Component::HaSubsystem");
|
||||
} elsif ($self->mode =~ /device::fw::/) {
|
||||
$self->analyze_and_check_fw_subsystem("CheckNwcHealth::CheckPoint::Firewall1::Component::FwSubsystem");
|
||||
} elsif ($self->mode =~ /device::svn::/) {
|
||||
$self->analyze_and_check_svn_subsystem("CheckNwcHealth::CheckPoint::Firewall1::Component::SvnSubsystem");
|
||||
} elsif ($self->mode =~ /device::mngmt::/) {
|
||||
# not sure if this works fa25239716cb74c672f8dd390430dc4056caffa7
|
||||
$self->analyze_and_check_mngmt_subsystem("CheckNwcHealth::CheckPoint::Firewall1::Component::MngmtSubsystem");
|
||||
} elsif ($self->mode =~ /device::vpn::status/) {
|
||||
$self->analyze_and_check_config_subsystem("CheckNwcHealth::CheckPoint::Firewall1::Component::VpnSubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
package CheckNwcHealth::CheckPoint::Gaia;
|
||||
our @ISA = qw(CheckNwcHealth::CheckPoint::Firewall1);
|
||||
use strict;
|
||||
|
||||
sub xinit {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::hardware::health/) {
|
||||
$self->analyze_and_check_environmental_subsystem("CheckNwcHealth::CheckPoint::Firewall1::Component::EnvironmentalSubsystem");
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
package CheckNwcHealth::CheckPoint::VSX;
|
||||
our @ISA = qw(CheckNwcHealth::CheckPoint);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::hardware::health/) {
|
||||
$self->analyze_and_check_environmental_subsystem("CheckNwcHealth::CheckPoint::Firewall1::Component::EnvironmentalSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::load/) {
|
||||
$self->analyze_and_check_cpu_subsystem("CheckNwcHealth::CheckPoint::Firewall1::Component::CpuSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::memory/) {
|
||||
$self->analyze_and_check_mem_subsystem("CheckNwcHealth::CheckPoint::Firewall1::Component::MemSubsystem");
|
||||
} elsif ($self->mode =~ /device::ha::/) {
|
||||
$self->analyze_and_check_ha_subsystem("CheckNwcHealth::CheckPoint::Firewall1::Component::HaSubsystem");
|
||||
} elsif ($self->mode =~ /device::fw::/) {
|
||||
$self->analyze_and_check_fw_subsystem("CheckNwcHealth::CheckPoint::VSX::Component::FwSubsystem");
|
||||
} elsif ($self->mode =~ /device::svn::/) {
|
||||
$self->analyze_and_check_svn_subsystem("CheckNwcHealth::CheckPoint::Firewall1::Component::SvnSubsystem");
|
||||
} elsif ($self->mode =~ /device::mngmt::/) {
|
||||
# not sure if this works fa25239716cb74c672f8dd390430dc4056caffa7
|
||||
$self->analyze_and_check_mngmt_subsystem("CheckNwcHealth::CheckPoint::Firewall1::Component::MngmtSubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1,115 +0,0 @@
|
|||
package CheckNwcHealth::Cisco;
|
||||
our @ISA = qw(CheckNwcHealth::Device);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
my $sysobjectid = $self->get_snmp_object('MIB-2-MIB', 'sysObjectID', 0);
|
||||
$sysobjectid =~ s/^\.//g;
|
||||
if ($self->{productname} =~ /Cisco NX-OS/i) {
|
||||
$self->rebless('CheckNwcHealth::Cisco::NXOS');
|
||||
} elsif ($self->{productname} =~ /Cisco Controller/i ||
|
||||
$self->{productname} =~ /C9800 / ||
|
||||
$self->implements_mib('AIRESPACE-SWITCHING-MIB')) {
|
||||
# die AIRESPACE-WIRELESS-MIB haben manchmal auch stinknormale Switche,
|
||||
# das hat also nichts zu sagen. SWITCHING ist entscheidend.
|
||||
# juli 23, neues Modell C9800, hat kein AIRESPACE-SWITCHING-MIB, aber AIRESPACE-WIRELESS-MIB
|
||||
# und die LWAPP-MIB. Wird hier zu WLC erklärt, cpu/mem etc wird aber in der WLC.pm
|
||||
# dann wieder auf Cisco::IOS umgedengelt.
|
||||
$self->rebless('CheckNwcHealth::Cisco::WLC');
|
||||
} elsif ($self->{productname} =~ /Cisco.*(IronPort|AsyncOS)/i) {
|
||||
$self->rebless('CheckNwcHealth::Cisco::AsyncOS');
|
||||
} elsif ($self->{productname} =~ /Cisco.*Prime Network Control System/i) {
|
||||
$self->rebless('CheckNwcHealth::Cisco::PrimeNCS');
|
||||
} elsif ($self->{productname} =~ /UCOS /i) {
|
||||
$self->rebless('CheckNwcHealth::Cisco::UCOS');
|
||||
} elsif ($self->{productname} =~ /Cisco (PIX|Adaptive) Security Appliance/i) {
|
||||
$self->rebless('CheckNwcHealth::Cisco::ASA');
|
||||
} elsif ($self->implements_mib('VIPTELA-OPER-SYSTEM')) {
|
||||
$self->rebless('CheckNwcHealth::Cisco::Viptela');
|
||||
} elsif ($self->{productname} =~ /Cisco/i) {
|
||||
$self->rebless('CheckNwcHealth::Cisco::IOS');
|
||||
} elsif ($self->{productname} =~ /Fujitsu Intelligent Blade Panel 30\/12/i) {
|
||||
$self->rebless('CheckNwcHealth::Cisco::IOS');
|
||||
} elsif ($sysobjectid eq '1.3.6.1.4.1.9.1.1348') {
|
||||
$self->rebless('CheckNwcHealth::Cisco::CCM');
|
||||
} elsif ($sysobjectid eq '1.3.6.1.4.1.9.1.746') {
|
||||
$self->rebless('CheckNwcHealth::Cisco::CCM');
|
||||
} elsif ($sysobjectid =~ /1.3.6.1.4.1.9.6.1.83/) {
|
||||
$self->rebless('CheckNwcHealth::Cisco::SB');
|
||||
}
|
||||
if (ref($self) ne "CheckNwcHealth::Cisco") {
|
||||
if ($self->mode =~ /device::bgp/) {
|
||||
if ($self->implements_mib('CISCO-BGP4-MIB', 'cbgpPeer2Table')) {
|
||||
$self->analyze_and_check_interface_subsystem("CheckNwcHealth::Cisco::CISCOBGP4MIB::Component::PeerSubsystem");
|
||||
} else {
|
||||
$self->establish_snmp_secondary_session();
|
||||
if ($self->implements_mib('CISCO-BGP4-MIB', 'cbgpPeer2Table')) {
|
||||
$self->analyze_and_check_interface_subsystem("CheckNwcHealth::Cisco::CISCOBGP4MIB::Component::PeerSubsystem");
|
||||
} else {
|
||||
$self->establish_snmp_session();
|
||||
$self->debug("no CISCO-BGP4-MIB and/or no cbgpPeer2Table, fallback");
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
} elsif ($self->mode =~ /device::eigrp/) {
|
||||
if ($self->implements_mib('CISCO-EIGRP-MIB')) {
|
||||
$self->analyze_and_check_interface_subsystem("CheckNwcHealth::Cisco::EIGRPMIB::Component::PeerSubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
} elsif ($self->mode =~ /device::interfacex::errdisabled/) {
|
||||
# if ($self->implements_mib('CISCO-ERR-DISABLE-MIB')) {
|
||||
# Ist bloed, aber wenn keine Spur dieser Mib zu finden ist,
|
||||
# dann kann das schlichtweg bedeuten, dass kein Interface
|
||||
# disabled wurde.
|
||||
$self->analyze_and_check_interface_subsystem("CheckNwcHealth::Cisco::CISCOERRDISABLEMIB::Component::InterfaceSubsystem");
|
||||
} elsif ($self->mode =~ /device::interfaces::etherstats/) {
|
||||
if ($self->implements_mib('OLD-CISCO-INTERFACES-MIB')) {
|
||||
$self->analyze_and_check_interface_subsystem("CheckNwcHealth::Cisco::OLDCISCOINTERFACESMIB::Component::InterfaceSubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
} elsif ($self->mode =~ /device::interfaces::portsecurity/) {
|
||||
if ($self->implements_mib('CISCO-PORT-SECURITY-MIB')) {
|
||||
$self->analyze_and_check_interface_subsystem("CheckNwcHealth::Cisco::CISCOPORTSECURITYMIB::Component::InterfaceSubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
} elsif ($self->mode =~ /device::licenses::/) {
|
||||
if ($self->implements_mib('CISCO-SMART-LIC-MIB')) {
|
||||
$self->analyze_and_check_lic_subsystem("CheckNwcHealth::Cisco::CISCOSMARTLICMIB::Component::KeySubsystem");
|
||||
} elsif ($self->implements_mib('CISCO-LICENSE-MGMT-MIB')) {
|
||||
$self->analyze_and_check_lic_subsystem("CheckNwcHealth::Cisco::CISCOLICENSEMGMTMIB::Component::KeySubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
} elsif ($self->mode =~ /device::rtt::check/) {
|
||||
if ($self->implements_mib('CISCO-RTTMON-MIB')) {
|
||||
$self->analyze_and_check_lic_subsystem("CheckNwcHealth::Cisco::CISCORTTMONMIB::Component::RttSubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
} elsif ($self->mode =~ /device::sdwan::/) {
|
||||
#} elsif ($self->mode =~ /device::sdwan::session::availability/) {
|
||||
if ($self->implements_mib("CISCO-SDWAN-OPER-SYSTEM-MIB")) {
|
||||
$self->analyze_and_check_sdwan_subsystem("CheckNwcHealth::Cisco::CISCOSDWANMIB::Component::SdwanSubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
} else {
|
||||
$self->init();
|
||||
if ($self->mode =~ /device::interfaces::ifstack::status/ &&
|
||||
$self->{productname} =~ /IOS.*((12.0\(25\)SX3)|(12.0S)|(12.1E)|(12.2)|(12.2S)|(12.3))/) {
|
||||
# known bug in this ios release. CSCed67708
|
||||
my ($code, $msg) = $self->check_messages(join => ', ', join_all => ', ');
|
||||
if ($code == 1 && $msg =~ /^(([^,]+? has stack status active but no sub-layer interfaces(, )*)+)$/) {
|
||||
$self->override_opt('negate', {'warning' => 'ok'});
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
package CheckNwcHealth::Cisco::ASA;
|
||||
our @ISA = qw(CheckNwcHealth::Cisco);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::hardware::health/) {
|
||||
$self->analyze_and_check_environmental_subsystem("CheckNwcHealth::Cisco::CISCOENTITYALARMMIB::Component::AlarmSubsystem");
|
||||
$self->analyze_and_check_environmental_subsystem("CheckNwcHealth::Cisco::CISCOENTITYSENSORMIB::Component::SensorSubsystem");
|
||||
$self->analyze_and_check_environmental_subsystem("CheckNwcHealth::ENTITYSENSORMIB::Component::EnvironmentalSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::load/) {
|
||||
$self->analyze_and_check_cpu_subsystem("CheckNwcHealth::Cisco::IOS::Component::CpuSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::memory/) {
|
||||
$self->analyze_and_check_mem_subsystem("CheckNwcHealth::Cisco::IOS::Component::MemSubsystem");
|
||||
} elsif ($self->mode =~ /device::hsrp/) {
|
||||
$self->analyze_and_check_hsrp_subsystem("CheckNwcHealth::HSRP::Component::HSRPSubsystem");
|
||||
} elsif ($self->mode =~ /device::users/ || $self->mode =~ /device::connections/) {
|
||||
# das war frueher "users". seit 6c70c2627e53cce991181369456c03f630f90f71
|
||||
# ist count-connections kein alias von count-users mehr, sondern ein
|
||||
# eigenstaendiger mode. fuehrte dazu, dass count-connections hier unten
|
||||
# in no_such_mode reinlief. daher dieses users||connections.
|
||||
# weil es sich bei asa tatsaechlich eher um connections als users handelt,
|
||||
# waere es sauber, das users rauszuwerfen, allerdings wuerde das dann
|
||||
# bei denen krachen, die count-users verwenden.
|
||||
$self->analyze_and_check_connection_subsystem("CheckNwcHealth::Cisco::IOS::Component::ConnectionSubsystem");
|
||||
} elsif ($self->mode =~ /device::config/) {
|
||||
$self->analyze_and_check_config_subsystem("CheckNwcHealth::Cisco::IOS::Component::ConfigSubsystem");
|
||||
} elsif ($self->mode =~ /device::interfaces::nat::sessions::count/) {
|
||||
$self->analyze_and_check_config_subsystem("CheckNwcHealth::Cisco::IOS::Component::NatSubsystem");
|
||||
} elsif ($self->mode =~ /device::interfaces::nat::rejects/) {
|
||||
$self->analyze_and_check_config_subsystem("CheckNwcHealth::Cisco::IOS::Component::NatSubsystem");
|
||||
} elsif ($self->mode =~ /device::vpn::status/) {
|
||||
$self->analyze_and_check_config_subsystem("CheckNwcHealth::Cisco::CISCOIPSECFLOWMONITOR::Component::VpnSubsystem");
|
||||
} elsif ($self->mode =~ /device::vpn::sessions/) {
|
||||
$self->analyze_and_check_config_subsystem("CheckNwcHealth::Cisco::CISCOREMOTEACCESSMONITORMIB::Component::VpnSubsystem");
|
||||
} elsif ($self->mode =~ /device::ha::role/) {
|
||||
$self->analyze_and_check_config_subsystem("CheckNwcHealth::Cisco::IOS::Component::HaSubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
package CheckNwcHealth::Cisco::AsyncOS;
|
||||
our @ISA = qw(CheckNwcHealth::Cisco);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::hardware::health/) {
|
||||
$self->analyze_and_check_environmental_subsystem("CheckNwcHealth::Cisco::AsyncOS::Component::EnvironmentalSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::load/) {
|
||||
$self->analyze_and_check_cpu_subsystem("CheckNwcHealth::Cisco::AsyncOS::Component::CpuSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::memory/) {
|
||||
$self->analyze_and_check_mem_subsystem("CheckNwcHealth::Cisco::AsyncOS::Component::MemSubsystem");
|
||||
} elsif ($self->mode =~ /device::licenses::/) {
|
||||
$self->analyze_and_check_key_subsystem("CheckNwcHealth::Cisco::AsyncOS::Component::KeySubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
package CheckNwcHealth::Cisco::AsyncOS::Component::MemSubsystem;
|
||||
our @ISA = qw(Monitoring::GLPlugin::SNMP::Item);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
$self->get_snmp_objects('ASYNCOS-MAIL-MIB', (qw(
|
||||
perCentMemoryUtilization memoryAvailabilityStatus)));
|
||||
}
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
$self->add_info('checking memory');
|
||||
$self->add_info(sprintf 'memory usage is %.2f%%',
|
||||
$self->{perCentMemoryUtilization});
|
||||
$self->set_thresholds(warning => 80, critical => 90);
|
||||
$self->add_message($self->check_thresholds($self->{perCentMemoryUtilization}));
|
||||
if ($self->{memoryAvailabilityStatus}) {
|
||||
$self->add_info(sprintf "memoryAvailabilityStatus is %s",
|
||||
$self->{memoryAvailabilityStatus});
|
||||
if ($self->{memoryAvailabilityStatus} eq 'memoryShortage') {
|
||||
$self->add_warning();
|
||||
$self->set_thresholds(warning => $self->{perCentMemoryUtilization}, critical => 90);
|
||||
} elsif ($self->{memoryAvailabilityStatus} eq 'memoryFull') {
|
||||
$self->add_critical();
|
||||
$self->set_thresholds(warning => 80, critical => $self->{perCentMemoryUtilization});
|
||||
} else {
|
||||
$self->add_ok();
|
||||
}
|
||||
}
|
||||
$self->add_perfdata(
|
||||
label => 'memory_usage',
|
||||
value => $self->{perCentMemoryUtilization},
|
||||
uom => '%',
|
||||
);
|
||||
}
|
||||
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
package CheckNwcHealth::Cisco::CCM;
|
||||
our @ISA = qw(CheckNwcHealth::Cisco);
|
||||
use strict;
|
||||
|
||||
sub init {
|
||||
my ($self) = @_;
|
||||
if ($self->mode =~ /device::hardware::health/) {
|
||||
$self->analyze_and_check_environmental_subsystem("CheckNwcHealth::HOSTRESOURCESMIB::Component::EnvironmentalSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::load/) {
|
||||
$self->analyze_and_check_cpu_subsystem("CheckNwcHealth::HOSTRESOURCESMIB::Component::CpuSubsystem");
|
||||
} elsif ($self->mode =~ /device::hardware::memory/) {
|
||||
$self->analyze_and_check_mem_subsystem("CheckNwcHealth::HOSTRESOURCESMIB::Component::MemSubsystem");
|
||||
} elsif ($self->mode =~ /device::phone::cm/) {
|
||||
$self->analyze_and_check_cm_subsystem("CheckNwcHealth::Cisco::CCM::Component::CmSubsystem");
|
||||
} elsif ($self->mode =~ /device::phone/) {
|
||||
$self->analyze_and_check_phone_subsystem("CheckNwcHealth::Cisco::CCM::Component::PhoneSubsystem");
|
||||
} else {
|
||||
$self->no_such_mode();
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue