Compare commits

..

4 commits

Author SHA1 Message Date
3503b7a1c2 Adding symlinks 2020-10-26 19:46:17 +01:00
5c7d0029b2 d/control: Update 2020-10-26 19:31:22 +01:00
08024408fb d/copyright: Auto update 2020-10-26 19:31:06 +01:00
803d4b93cd Adding check_interfaces 2020-10-26 18:11:07 +01:00
716 changed files with 19401 additions and 33501 deletions

View file

@ -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

View file

@ -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

View file

@ -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 }}

View file

@ -1,36 +0,0 @@
name: Packaging Test
on:
push:
branches:
- $default-branch
- development
- master
# Run tests for any PRs
pull_request:
env:
SOURCE_DIR: ./
ARTIFACTS_DIR: debian/build/release/
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
env:
DEBIAN_FRONTEND: "noninteractive"
- name: Remove github artefacts
run: |
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
with:
artifacts_directory: debian/build/release/
os_distribution: testing
- name: Debug
run: |
ls -la

View file

@ -1,71 +0,0 @@
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: Release Process
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
env:
DEBIAN_FRONTEND: "noninteractive"
- name: Remove github artefacts
run: |
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
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"
- name: Upload the artifacts
uses: skx/github-action-publish-binaries@release-2.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
releaseId: ${{ needs.create-release.outputs.release-id }}
args: debian/build/release/*

View file

@ -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

View file

@ -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

View file

@ -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.

View file

@ -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 $< $@

View file

@ -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

View file

@ -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]

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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.

View file

@ -1 +0,0 @@
check_es_system-1.12.1/

View file

@ -1,14 +0,0 @@
PLUGIN := check_esxi_hardware
CLEANFILES := check_esxi_hardware
DOCFILES := README.md
include ../common.mk
check_esxi_hardware:
cp $@.py $@
chmod 755 $@
install::
install -d $(DESTDIR)$(PLUGINDIR)
ln -s $(PLUGINDIR)/$(PLUGIN) $(DESTDIR)$(PLUGINDIR)/$(PLUGIN).py

View file

@ -1,11 +0,0 @@
check_esxi_hardware
=========
Monitoring plugin to check the hardware on VMware ESX/ESXi servers.
This is the public git repository for development of the plugin.
Documentation + Production Ready Plugin
-------------
Please refer to https://www.claudiokuenzler.com/monitoring-plugins/check_esxi_hardware.php

File diff suppressed because it is too large Load diff

View file

@ -1,6 +0,0 @@
Uploaders: Jan Wagner <waja@cyconet.org>
Recommends: python3-minimal, python-pywbem
Version: 20221230
Homepage: https://github.com/Napsty/check_esxi_hardware
Watch: https://github.com/Napsty/check_esxi_hardware/tags .*/v?(\d\S+)\.tar\.gz
Description: Plugin for checking global health of VMware ESX/ESXi host

View file

@ -1,12 +0,0 @@
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/>

16
check_interfaces/Makefile Normal file
View file

@ -0,0 +1,16 @@
PLUGIN := check_interfaces
CLEANFILES := check_interfaces
include ../common.mk
check_interfaces:
#set -e; for i in guess sub; do if [ ! -e src/config.$$i.bak ]; then cp src/config.$$i src/config.$$i.bak; fi; done
cp /usr/share/misc/config.* src
cd src && ./configure --disable-maintainer-mode --prefix=/usr --with-nagios-user=nagios --with-nagios-group=nagios
make -C src
#sed 's,^# nagios: +epn,# nagios: -epn\n,' src/plugins-scripts/check_interfaces > $@
cp src/check_interfaces $@
clean::
[ ! -f src/Makefile ] || make -C src distclean
set -e; for i in guess sub; do if [ -e src/config.$$i.bak ]; then mv src/config.$$i.bak src/config.$$i; fi; done

View file

@ -1,7 +1,7 @@
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc., <http://fsf.org/>
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
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.
@ -290,8 +290,8 @@ 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}
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
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
@ -329,7 +329,7 @@ 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
<signature of Ty Coon>, 1 April 1989
Ty Coon, President of Vice
This General Public License does not permit incorporating your program into

View file

@ -0,0 +1,39 @@
CC=@CC@
prefix=@prefix@
exec_prefix=@exec_prefix@
INSTALL=@INSTALL@
DESTDIR=@libexecdir@
OBJS=snmp_bulkget.o utils.o
TARGET=check_interfaces
CPPFLAGS=@CPPFLAGS@
LDFLAGS=@LDFLAGS@ -lrt
CFLAGS=@CFLAGS@ @DEFS@
# shared library flags (assumes gcc)
# DLFLAGS=-fPIC -shared
BUILDLIBS=@SNMP_LIBS@ @LIBS@
.PHONY: debug clean all install
all: build strip
build: $(TARGET)
$(TARGET): $(OBJS)
$(CC) -o $(TARGET) $(OBJS) $(LDFLAGS) $(BUILDLIBS)
strip:
strip $(TARGET)
debug: CFLAGS += -DDEBUG -g -O0
debug: LDFLAGS += -g -O0
debug: build
clean:
rm $(OBJS) $(TARGET)
install: all
$(INSTALL) -t $(DESTDIR) $(TARGET)

View file

@ -0,0 +1,115 @@
check_interfaces
================
This plugin uses the bulk-get mode of SNMPv2 by default - pass it the option -m NONBULK to work with SNMPv1. Support for SNMPv3 with and without privacy is included.
64 bit counters will be used if they are supported by the device.
### Installation
In order to compile this plugin you will need the `NET SNMP Development` package
(libsnmp-dev under Debian) as well as `autoconf` and the standard compilation tools.
Download and extract the tarball from https://www.netways.org/projects/check-interfaces/files
autoconf (only needed if the configure script has not been created)
./configure
Running "make" should successfully compile the plugin, and "make install" will install them under
the configured path.
make
make install
### Usage
(see also check_interface --help)
check_interface -c public -h 192.168.0.1 -r 'FastEth' -p '$SERVICEPERFDATA$' -t $LASTSERVICECHECK$ -a
Options;
-h address of device
-c|--community community (default public)
-r|--regex interface list regexp
Regex to match interfaces (important, this is a Regular Expression
not a simple wildcard string, see below)
-e|--errors number of in errors (CRC errors for cisco) to consider a warning (default 50)
Only warn if errors increase by more than this amount between checks
-f|--out-errors number of out errors (collisions for cisco) to consider a warning
Defaults to the same value as for errors
-p|--perfdata last check perfdata
Performance data from previous check (used to calculate traffic)
-P|--prefix prefix interface names with this label
-t|--lastcheck last checktime (unixtime)
Last service check time in unixtime (also used to calculate traffic)
-b|--bandwidth bandwidth warn level in %
-s|--speed override speed detection with this value (bits per sec)
-x|--trim cut this number of characters from the start of interface descriptions
Useful for nortel switches
-j|--auth-proto SNMPv3 Auth Protocol (SHA|MD5)
-J|--auth-phrase SNMPv3 Auth Phrase
-k|--priv-proto SNMPv3 Privacy Protocol (AES|DES) (optional)
-K|--priv-phrase SNMPv3 Privacy Phrase
-u|--user SNMPv3 User
-d|--down-is-ok disables critical alerts for down interfaces
i.e do not consider a down interface to be critical
-a|--aliases retrieves the interface description
This alias does not always deliver useful information
-A|--match-aliases also test the Alias against the Regexes
-D|--debug-print list administrative down interfaces in perfdata
-N|--if-names use ifName instead of ifDescr
--timeout sets the SNMP timeout (in ms)
-m|--mode special operating mode (default,cisco,nonbulk,bintec)
Workarounds for various hardware
### Modes
default use SNMPv2 bulk-gets to retrieve the interface list (recommended for devices with many interfaces)
cisco retrieve CRC errors and collisions instead of in errors and out errors
bintec work with non-RFC Bintec devices
nonbulk use a traditional tree-walk and SNMPv1 instead of bulk-gets (less efficient, but works with most devices)
### Counter Overflows
The plugin will query the uptime of the device and compensate for counter overflows.
Note however that a 1Gbit interface with a 32 bit counter will overflow every 34 seconds
if the interface is operating at full capacity - in this case you will need to query the
device at least once a minute. With 64 bit counters these problems go away.
Also be aware that the counter values themselves are passed unaltered in the performance
data field - if you graph the data then the grapher also needs to be overflow aware.
### Large Plugin Output
Be aware that this plugin may generate large outputs. Your version of Nagios / Icinga may cut off the output and cause you problems with various graphing tools; for best results restrict the list of interfaces using the -r option
### Regular Expressions
The following patterns can be used to match strings
. anything
^ beginning of string
$ end of string (WARNING: you need to use $$ in a Nagios configuration file!)
(abc|def) either abc or def
[0-9a-z] a range
* the previous pattern multiple times
Examples;
Eth match any strings containing "Eth"
^FastEth match any strings beginning with "FastEth"
Eth(0|2)$ match Eth0 or Eth2
Eth(0|2) as above but would also match Eth20, Eth21, Eth22 etc
If unsure of a pattern, you should test it on the command line thus;
check_interface -c public -h 192.168.0.1 -r 'Eth(0|2)$'

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,77 @@
# This file was generated.
# It contains the lists of macros which have been traced.
# It can be safely removed.
@request = (
bless( [
'0',
1,
[
'/usr/share/autoconf'
],
[
'/usr/share/autoconf/autoconf/autoconf.m4f',
'configure.ac'
],
{
'_AM_COND_ELSE' => 1,
'_LT_AC_TAGCONFIG' => 1,
'AC_CANONICAL_SYSTEM' => 1,
'AC_CONFIG_SUBDIRS' => 1,
'AC_CONFIG_AUX_DIR' => 1,
'_AM_SUBST_NOTMAKE' => 1,
'sinclude' => 1,
'_AM_COND_IF' => 1,
'AM_MAINTAINER_MODE' => 1,
'AC_FC_FREEFORM' => 1,
'AC_CONFIG_LIBOBJ_DIR' => 1,
'AM_ENABLE_MULTILIB' => 1,
'LT_INIT' => 1,
'AC_CANONICAL_TARGET' => 1,
'AM_PROG_CC_C_O' => 1,
'AM_PROG_MOC' => 1,
'AC_CONFIG_FILES' => 1,
'AC_CONFIG_LINKS' => 1,
'AC_SUBST' => 1,
'AM_NLS' => 1,
'AC_REQUIRE_AUX_FILE' => 1,
'AM_INIT_AUTOMAKE' => 1,
'LT_SUPPORTED_TAG' => 1,
'AC_INIT' => 1,
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
'AC_FC_PP_SRCEXT' => 1,
'AM_AUTOMAKE_VERSION' => 1,
'_m4_warn' => 1,
'm4_pattern_forbid' => 1,
'AM_GNU_GETTEXT' => 1,
'AC_CANONICAL_HOST' => 1,
'AM_PROG_FC_C_O' => 1,
'AC_LIBSOURCE' => 1,
'_AM_MAKEFILE_INCLUDE' => 1,
'AM_XGETTEXT_OPTION' => 1,
'AM_PROG_CXX_C_O' => 1,
'AM_POT_TOOLS' => 1,
'm4_pattern_allow' => 1,
'm4_sinclude' => 1,
'LT_CONFIG_LTDL_DIR' => 1,
'_AM_COND_ENDIF' => 1,
'AC_CANONICAL_BUILD' => 1,
'm4_include' => 1,
'AM_PROG_AR' => 1,
'AM_PATH_GUILE' => 1,
'AC_PROG_LIBTOOL' => 1,
'include' => 1,
'AC_DEFINE_TRACE_LITERAL' => 1,
'AM_PROG_F77_C_O' => 1,
'AC_FC_SRCEXT' => 1,
'AM_SILENT_RULES' => 1,
'AM_MAKEFILE_INCLUDE' => 1,
'AH_OUTPUT' => 1,
'AC_FC_PP_DEFINE' => 1,
'AM_CONDITIONAL' => 1,
'AC_CONFIG_HEADERS' => 1,
'AC_SUBST_TRACE' => 1
}
], 'Autom4te::Request' )
);

View file

@ -0,0 +1,266 @@
m4trace:configure.ac:1: -1- AC_INIT([check_interfaces], [1.4])
m4trace:configure.ac:1: -1- m4_pattern_forbid([^_?A[CHUM]_])
m4trace:configure.ac:1: -1- m4_pattern_forbid([_AC_])
m4trace:configure.ac:1: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
m4trace:configure.ac:1: -1- m4_pattern_allow([^AS_FLAGS$])
m4trace:configure.ac:1: -1- m4_pattern_forbid([^_?m4_])
m4trace:configure.ac:1: -1- m4_pattern_forbid([^dnl$])
m4trace:configure.ac:1: -1- m4_pattern_forbid([^_?AS_])
m4trace:configure.ac:1: -1- AC_SUBST([SHELL])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([SHELL])
m4trace:configure.ac:1: -1- m4_pattern_allow([^SHELL$])
m4trace:configure.ac:1: -1- AC_SUBST([PATH_SEPARATOR])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PATH_SEPARATOR])
m4trace:configure.ac:1: -1- m4_pattern_allow([^PATH_SEPARATOR$])
m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME], ['AC_PACKAGE_NAME'])])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_NAME])
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_NAME$])
m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME], ['AC_PACKAGE_TARNAME'])])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_TARNAME])
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION], ['AC_PACKAGE_VERSION'])])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_VERSION])
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_VERSION$])
m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING], ['AC_PACKAGE_STRING'])])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_STRING])
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_STRING$])
m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT])
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_URL], [m4_ifdef([AC_PACKAGE_URL], ['AC_PACKAGE_URL'])])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_URL])
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_URL$])
m4trace:configure.ac:1: -1- AC_SUBST([exec_prefix], [NONE])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([exec_prefix])
m4trace:configure.ac:1: -1- m4_pattern_allow([^exec_prefix$])
m4trace:configure.ac:1: -1- AC_SUBST([prefix], [NONE])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([prefix])
m4trace:configure.ac:1: -1- m4_pattern_allow([^prefix$])
m4trace:configure.ac:1: -1- AC_SUBST([program_transform_name], [s,x,x,])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([program_transform_name])
m4trace:configure.ac:1: -1- m4_pattern_allow([^program_transform_name$])
m4trace:configure.ac:1: -1- AC_SUBST([bindir], ['${exec_prefix}/bin'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([bindir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^bindir$])
m4trace:configure.ac:1: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([sbindir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^sbindir$])
m4trace:configure.ac:1: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([libexecdir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^libexecdir$])
m4trace:configure.ac:1: -1- AC_SUBST([datarootdir], ['${prefix}/share'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([datarootdir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^datarootdir$])
m4trace:configure.ac:1: -1- AC_SUBST([datadir], ['${datarootdir}'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([datadir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^datadir$])
m4trace:configure.ac:1: -1- AC_SUBST([sysconfdir], ['${prefix}/etc'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([sysconfdir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^sysconfdir$])
m4trace:configure.ac:1: -1- AC_SUBST([sharedstatedir], ['${prefix}/com'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([sharedstatedir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^sharedstatedir$])
m4trace:configure.ac:1: -1- AC_SUBST([localstatedir], ['${prefix}/var'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([localstatedir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^localstatedir$])
m4trace:configure.ac:1: -1- AC_SUBST([includedir], ['${prefix}/include'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([includedir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^includedir$])
m4trace:configure.ac:1: -1- AC_SUBST([oldincludedir], ['/usr/include'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([oldincludedir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^oldincludedir$])
m4trace:configure.ac:1: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME],
['${datarootdir}/doc/${PACKAGE_TARNAME}'],
['${datarootdir}/doc/${PACKAGE}'])])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([docdir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^docdir$])
m4trace:configure.ac:1: -1- AC_SUBST([infodir], ['${datarootdir}/info'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([infodir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^infodir$])
m4trace:configure.ac:1: -1- AC_SUBST([htmldir], ['${docdir}'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([htmldir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^htmldir$])
m4trace:configure.ac:1: -1- AC_SUBST([dvidir], ['${docdir}'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([dvidir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^dvidir$])
m4trace:configure.ac:1: -1- AC_SUBST([pdfdir], ['${docdir}'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([pdfdir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^pdfdir$])
m4trace:configure.ac:1: -1- AC_SUBST([psdir], ['${docdir}'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([psdir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^psdir$])
m4trace:configure.ac:1: -1- AC_SUBST([libdir], ['${exec_prefix}/lib'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([libdir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^libdir$])
m4trace:configure.ac:1: -1- AC_SUBST([localedir], ['${datarootdir}/locale'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([localedir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^localedir$])
m4trace:configure.ac:1: -1- AC_SUBST([mandir], ['${datarootdir}/man'])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([mandir])
m4trace:configure.ac:1: -1- m4_pattern_allow([^mandir$])
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME])
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_NAME$])
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */
@%:@undef PACKAGE_NAME])
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME])
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */
@%:@undef PACKAGE_TARNAME])
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION])
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_VERSION$])
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */
@%:@undef PACKAGE_VERSION])
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING])
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_STRING$])
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */
@%:@undef PACKAGE_STRING])
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT])
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */
@%:@undef PACKAGE_BUGREPORT])
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_URL])
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_URL$])
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_URL], [/* Define to the home page for this package. */
@%:@undef PACKAGE_URL])
m4trace:configure.ac:1: -1- AC_SUBST([DEFS])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([DEFS])
m4trace:configure.ac:1: -1- m4_pattern_allow([^DEFS$])
m4trace:configure.ac:1: -1- AC_SUBST([ECHO_C])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([ECHO_C])
m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_C$])
m4trace:configure.ac:1: -1- AC_SUBST([ECHO_N])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([ECHO_N])
m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_N$])
m4trace:configure.ac:1: -1- AC_SUBST([ECHO_T])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([ECHO_T])
m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_T$])
m4trace:configure.ac:1: -1- AC_SUBST([LIBS])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([LIBS])
m4trace:configure.ac:1: -1- m4_pattern_allow([^LIBS$])
m4trace:configure.ac:1: -1- AC_SUBST([build_alias])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([build_alias])
m4trace:configure.ac:1: -1- m4_pattern_allow([^build_alias$])
m4trace:configure.ac:1: -1- AC_SUBST([host_alias])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([host_alias])
m4trace:configure.ac:1: -1- m4_pattern_allow([^host_alias$])
m4trace:configure.ac:1: -1- AC_SUBST([target_alias])
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([target_alias])
m4trace:configure.ac:1: -1- m4_pattern_allow([^target_alias$])
m4trace:configure.ac:3: -1- AC_SUBST([CC])
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CC])
m4trace:configure.ac:3: -1- m4_pattern_allow([^CC$])
m4trace:configure.ac:3: -1- AC_SUBST([CFLAGS])
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CFLAGS])
m4trace:configure.ac:3: -1- m4_pattern_allow([^CFLAGS$])
m4trace:configure.ac:3: -1- AC_SUBST([LDFLAGS])
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([LDFLAGS])
m4trace:configure.ac:3: -1- m4_pattern_allow([^LDFLAGS$])
m4trace:configure.ac:3: -1- AC_SUBST([LIBS])
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([LIBS])
m4trace:configure.ac:3: -1- m4_pattern_allow([^LIBS$])
m4trace:configure.ac:3: -1- AC_SUBST([CPPFLAGS])
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CPPFLAGS])
m4trace:configure.ac:3: -1- m4_pattern_allow([^CPPFLAGS$])
m4trace:configure.ac:3: -1- AC_SUBST([CC])
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CC])
m4trace:configure.ac:3: -1- m4_pattern_allow([^CC$])
m4trace:configure.ac:3: -1- AC_SUBST([CC])
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CC])
m4trace:configure.ac:3: -1- m4_pattern_allow([^CC$])
m4trace:configure.ac:3: -1- AC_SUBST([CC])
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CC])
m4trace:configure.ac:3: -1- m4_pattern_allow([^CC$])
m4trace:configure.ac:3: -1- AC_SUBST([CC])
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CC])
m4trace:configure.ac:3: -1- m4_pattern_allow([^CC$])
m4trace:configure.ac:3: -1- AC_SUBST([ac_ct_CC])
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([ac_ct_CC])
m4trace:configure.ac:3: -1- m4_pattern_allow([^ac_ct_CC$])
m4trace:configure.ac:3: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext])
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([EXEEXT])
m4trace:configure.ac:3: -1- m4_pattern_allow([^EXEEXT$])
m4trace:configure.ac:3: -1- AC_SUBST([OBJEXT], [$ac_cv_objext])
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([OBJEXT])
m4trace:configure.ac:3: -1- m4_pattern_allow([^OBJEXT$])
m4trace:configure.ac:4: -1- AC_REQUIRE_AUX_FILE([install-sh])
m4trace:configure.ac:4: -1- AC_SUBST([INSTALL_PROGRAM])
m4trace:configure.ac:4: -1- AC_SUBST_TRACE([INSTALL_PROGRAM])
m4trace:configure.ac:4: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
m4trace:configure.ac:4: -1- AC_SUBST([INSTALL_SCRIPT])
m4trace:configure.ac:4: -1- AC_SUBST_TRACE([INSTALL_SCRIPT])
m4trace:configure.ac:4: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
m4trace:configure.ac:4: -1- AC_SUBST([INSTALL_DATA])
m4trace:configure.ac:4: -1- AC_SUBST_TRACE([INSTALL_DATA])
m4trace:configure.ac:4: -1- m4_pattern_allow([^INSTALL_DATA$])
m4trace:configure.ac:10: -1- AC_SUBST([NETSNMPCONFIG])
m4trace:configure.ac:10: -1- AC_SUBST_TRACE([NETSNMPCONFIG])
m4trace:configure.ac:10: -1- m4_pattern_allow([^NETSNMPCONFIG$])
m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_NET_SNMP_NET_SNMP_CONFIG_H], [/* Define to 1 if you have the <net-snmp/net-snmp-config.h> header file. */
@%:@undef HAVE_NET_SNMP_NET_SNMP_CONFIG_H])
m4trace:configure.ac:34: -1- AC_SUBST([CPP])
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([CPP])
m4trace:configure.ac:34: -1- m4_pattern_allow([^CPP$])
m4trace:configure.ac:34: -1- AC_SUBST([CPPFLAGS])
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([CPPFLAGS])
m4trace:configure.ac:34: -1- m4_pattern_allow([^CPPFLAGS$])
m4trace:configure.ac:34: -1- AC_SUBST([CPP])
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([CPP])
m4trace:configure.ac:34: -1- m4_pattern_allow([^CPP$])
m4trace:configure.ac:34: -1- AC_SUBST([GREP])
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([GREP])
m4trace:configure.ac:34: -1- m4_pattern_allow([^GREP$])
m4trace:configure.ac:34: -1- AC_SUBST([EGREP])
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([EGREP])
m4trace:configure.ac:34: -1- m4_pattern_allow([^EGREP$])
m4trace:configure.ac:34: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
m4trace:configure.ac:34: -1- m4_pattern_allow([^STDC_HEADERS$])
m4trace:configure.ac:34: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
@%:@undef STDC_HEADERS])
m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
@%:@undef HAVE_SYS_TYPES_H])
m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */
@%:@undef HAVE_SYS_STAT_H])
m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
@%:@undef HAVE_STDLIB_H])
m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
@%:@undef HAVE_STRING_H])
m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */
@%:@undef HAVE_MEMORY_H])
m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */
@%:@undef HAVE_STRINGS_H])
m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
@%:@undef HAVE_INTTYPES_H])
m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
@%:@undef HAVE_STDINT_H])
m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
@%:@undef HAVE_UNISTD_H])
m4trace:configure.ac:34: -1- AC_DEFINE_TRACE_LITERAL([HAVE_NET_SNMP_NET_SNMP_CONFIG_H])
m4trace:configure.ac:34: -1- m4_pattern_allow([^HAVE_NET_SNMP_NET_SNMP_CONFIG_H$])
m4trace:configure.ac:36: -1- AH_OUTPUT([HAVE_LIBNETSNMP], [/* Define to 1 if you have the `netsnmp\' library (-lnetsnmp). */
@%:@undef HAVE_LIBNETSNMP])
m4trace:configure.ac:36: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBNETSNMP])
m4trace:configure.ac:36: -1- m4_pattern_allow([^HAVE_LIBNETSNMP$])
m4trace:configure.ac:50: -2- AC_DEFINE_TRACE_LITERAL([HAVE_POW])
m4trace:configure.ac:50: -2- m4_pattern_allow([^HAVE_POW$])
m4trace:configure.ac:53: -2- AC_DEFINE_TRACE_LITERAL([HAVE_GETADDRINFO])
m4trace:configure.ac:53: -2- m4_pattern_allow([^HAVE_GETADDRINFO$])
m4trace:configure.ac:56: -1- AC_SUBST([SNMP_LIBS])
m4trace:configure.ac:56: -1- AC_SUBST_TRACE([SNMP_LIBS])
m4trace:configure.ac:56: -1- m4_pattern_allow([^SNMP_LIBS$])
m4trace:configure.ac:57: -1- AC_CONFIG_FILES([Makefile])
m4trace:configure.ac:58: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
m4trace:configure.ac:58: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
m4trace:configure.ac:58: -1- m4_pattern_allow([^LIB@&t@OBJS$])
m4trace:configure.ac:58: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
m4trace:configure.ac:58: -1- AC_SUBST_TRACE([LTLIBOBJS])
m4trace:configure.ac:58: -1- m4_pattern_allow([^LTLIBOBJS$])
m4trace:configure.ac:58: -1- AC_SUBST_TRACE([top_builddir])
m4trace:configure.ac:58: -1- AC_SUBST_TRACE([top_build_prefix])
m4trace:configure.ac:58: -1- AC_SUBST_TRACE([srcdir])
m4trace:configure.ac:58: -1- AC_SUBST_TRACE([abs_srcdir])
m4trace:configure.ac:58: -1- AC_SUBST_TRACE([top_srcdir])
m4trace:configure.ac:58: -1- AC_SUBST_TRACE([abs_top_srcdir])
m4trace:configure.ac:58: -1- AC_SUBST_TRACE([builddir])
m4trace:configure.ac:58: -1- AC_SUBST_TRACE([abs_builddir])
m4trace:configure.ac:58: -1- AC_SUBST_TRACE([abs_top_builddir])
m4trace:configure.ac:58: -1- AC_SUBST_TRACE([INSTALL])

4759
check_interfaces/check_interfaces-1.4/configure vendored Executable file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,58 @@
AC_INIT(check_interfaces, 1.4)
AC_PREFIX_DEFAULT(/usr/local/nagios)
AC_PROG_CC
AC_PROG_INSTALL
if test "$cross_compiling" != "yes";
then
dnl look for net-snmp-config
AC_PATH_PROG(NETSNMPCONFIG, net-snmp-config)
if test "$ac_cv_path_netsnmpconfig" == "no";
then
AC_MSG_WARN([could not find net-snmp-config - did you install the development package for net-snmp? ])
else
SNMP_CFLAGS=`$NETSNMPCONFIG --cflags`
SNMP_LIBS=`$NETSNMPCONFIG --libs`
CFLAGS="$CFLAGS $SNMP_CFLAGS"
fi
fi
AC_ARG_WITH(snmp-headers,
AS_HELP_STRING([--with-snmp-headers=DIR], [Net-SNMP Include files location]),
[SNMP_HDR_DIR="$withval"]
[CPPFLAGS="$CPPFLAGS -I$withval"])
dnl if specified override SNMP_LIBS
AC_ARG_WITH(snmp-libs,
AS_HELP_STRING([--with-snmp-libs=DIR], [Net-SNMP Shared Library files location]),
[SNMP_LIBS="-lnetsnmp"]
[CFLAGS="$CFLAGS -L$withval"])
AC_CHECK_HEADERS([net-snmp/net-snmp-config.h])
AC_CHECK_LIB(netsnmp, snmp_open)
if test "$ac_cv_header_net_snmp_net_snmp_config_h" != "yes";
then
AC_MSG_ERROR([Net-SNMP Headers Missing])
fi
if test "$ac_cv_lib_netsnmp_snmp_open" != "yes";
then
AC_MSG_ERROR([Net-SNMP library unusable - either it is missing or there are unfulfilled dependencies (e.g. libcrypto)])
fi
dnl look for the pow() function
AC_SEARCH_LIBS(pow, [c m], AC_DEFINE([HAVE_POW]))
dnl look for the getaddrinfo() function
AC_SEARCH_LIBS(getaddrinfo, [c], AC_DEFINE([HAVE_GETADDRINFO]))
AC_SUBST([SNMP_LIBS])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT

View file

@ -0,0 +1,507 @@
#!/bin/sh
# install - install a program, script, or datafile
scriptversion=2006-10-14.15
# This originates from X11R5 (mit/util/scripts/install.sh), which was
# later released in X11R6 (xc/config/util/install.sh) with the
# following copyright and license.
#
# Copyright (C) 1994 X Consortium
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
# Except as contained in this notice, the name of the X Consortium shall not
# be used in advertising or otherwise to promote the sale, use or other deal-
# ings in this Software without prior written authorization from the X Consor-
# tium.
#
#
# FSF changes to this file are in the public domain.
#
# Calling this script install-sh is preferred over install.sh, to prevent
# `make' implicit rules from creating a file called install from it
# when there is no Makefile.
#
# This script is compatible with the BSD install script, but was written
# from scratch.
nl='
'
IFS=" "" $nl"
# set DOITPROG to echo to test this script
# Don't use :- since 4.3BSD and earlier shells don't like it.
doit="${DOITPROG-}"
if test -z "$doit"; then
doit_exec=exec
else
doit_exec=$doit
fi
# Put in absolute file names if you don't have them in your path;
# or use environment vars.
mvprog="${MVPROG-mv}"
cpprog="${CPPROG-cp}"
chmodprog="${CHMODPROG-chmod}"
chownprog="${CHOWNPROG-chown}"
chgrpprog="${CHGRPPROG-chgrp}"
stripprog="${STRIPPROG-strip}"
rmprog="${RMPROG-rm}"
mkdirprog="${MKDIRPROG-mkdir}"
posix_glob=
posix_mkdir=
# Desired mode of installed file.
mode=0755
chmodcmd=$chmodprog
chowncmd=
chgrpcmd=
stripcmd=
rmcmd="$rmprog -f"
mvcmd="$mvprog"
src=
dst=
dir_arg=
dstarg=
no_target_directory=
usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
or: $0 [OPTION]... SRCFILES... DIRECTORY
or: $0 [OPTION]... -t DIRECTORY SRCFILES...
or: $0 [OPTION]... -d DIRECTORIES...
In the 1st form, copy SRCFILE to DSTFILE.
In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
In the 4th, create DIRECTORIES.
Options:
-c (ignored)
-d create directories instead of installing files.
-g GROUP $chgrpprog installed files to GROUP.
-m MODE $chmodprog installed files to MODE.
-o USER $chownprog installed files to USER.
-s $stripprog installed files.
-t DIRECTORY install into DIRECTORY.
-T report an error if DSTFILE is a directory.
--help display this help and exit.
--version display version info and exit.
Environment variables override the default commands:
CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG
"
while test $# -ne 0; do
case $1 in
-c) shift
continue;;
-d) dir_arg=true
shift
continue;;
-g) chgrpcmd="$chgrpprog $2"
shift
shift
continue;;
--help) echo "$usage"; exit $?;;
-m) mode=$2
shift
shift
case $mode in
*' '* | *' '* | *'
'* | *'*'* | *'?'* | *'['*)
echo "$0: invalid mode: $mode" >&2
exit 1;;
esac
continue;;
-o) chowncmd="$chownprog $2"
shift
shift
continue;;
-s) stripcmd=$stripprog
shift
continue;;
-t) dstarg=$2
shift
shift
continue;;
-T) no_target_directory=true
shift
continue;;
--version) echo "$0 $scriptversion"; exit $?;;
--) shift
break;;
-*) echo "$0: invalid option: $1" >&2
exit 1;;
*) break;;
esac
done
if test $# -ne 0 && test -z "$dir_arg$dstarg"; then
# When -d is used, all remaining arguments are directories to create.
# When -t is used, the destination is already specified.
# Otherwise, the last argument is the destination. Remove it from $@.
for arg
do
if test -n "$dstarg"; then
# $@ is not empty: it contains at least $arg.
set fnord "$@" "$dstarg"
shift # fnord
fi
shift # arg
dstarg=$arg
done
fi
if test $# -eq 0; then
if test -z "$dir_arg"; then
echo "$0: no input file specified." >&2
exit 1
fi
# It's OK to call `install-sh -d' without argument.
# This can happen when creating conditional directories.
exit 0
fi
if test -z "$dir_arg"; then
trap '(exit $?); exit' 1 2 13 15
# Set umask so as not to create temps with too-generous modes.
# However, 'strip' requires both read and write access to temps.
case $mode in
# Optimize common cases.
*644) cp_umask=133;;
*755) cp_umask=22;;
*[0-7])
if test -z "$stripcmd"; then
u_plus_rw=
else
u_plus_rw='% 200'
fi
cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
*)
if test -z "$stripcmd"; then
u_plus_rw=
else
u_plus_rw=,u+rw
fi
cp_umask=$mode$u_plus_rw;;
esac
fi
for src
do
# Protect names starting with `-'.
case $src in
-*) src=./$src ;;
esac
if test -n "$dir_arg"; then
dst=$src
dstdir=$dst
test -d "$dstdir"
dstdir_status=$?
else
# Waiting for this to be detected by the "$cpprog $src $dsttmp" command
# might cause directories to be created, which would be especially bad
# if $src (and thus $dsttmp) contains '*'.
if test ! -f "$src" && test ! -d "$src"; then
echo "$0: $src does not exist." >&2
exit 1
fi
if test -z "$dstarg"; then
echo "$0: no destination specified." >&2
exit 1
fi
dst=$dstarg
# Protect names starting with `-'.
case $dst in
-*) dst=./$dst ;;
esac
# If destination is a directory, append the input filename; won't work
# if double slashes aren't ignored.
if test -d "$dst"; then
if test -n "$no_target_directory"; then
echo "$0: $dstarg: Is a directory" >&2
exit 1
fi
dstdir=$dst
dst=$dstdir/`basename "$src"`
dstdir_status=0
else
# Prefer dirname, but fall back on a substitute if dirname fails.
dstdir=`
(dirname "$dst") 2>/dev/null ||
expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
X"$dst" : 'X\(//\)[^/]' \| \
X"$dst" : 'X\(//\)$' \| \
X"$dst" : 'X\(/\)' \| . 2>/dev/null ||
echo X"$dst" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
}
/^X\(\/\/\)[^/].*/{
s//\1/
q
}
/^X\(\/\/\)$/{
s//\1/
q
}
/^X\(\/\).*/{
s//\1/
q
}
s/.*/./; q'
`
test -d "$dstdir"
dstdir_status=$?
fi
fi
obsolete_mkdir_used=false
if test $dstdir_status != 0; then
case $posix_mkdir in
'')
# Create intermediate dirs using mode 755 as modified by the umask.
# This is like FreeBSD 'install' as of 1997-10-28.
umask=`umask`
case $stripcmd.$umask in
# Optimize common cases.
*[2367][2367]) mkdir_umask=$umask;;
.*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;
*[0-7])
mkdir_umask=`expr $umask + 22 \
- $umask % 100 % 40 + $umask % 20 \
- $umask % 10 % 4 + $umask % 2
`;;
*) mkdir_umask=$umask,go-w;;
esac
# With -d, create the new directory with the user-specified mode.
# Otherwise, rely on $mkdir_umask.
if test -n "$dir_arg"; then
mkdir_mode=-m$mode
else
mkdir_mode=
fi
posix_mkdir=false
case $umask in
*[123567][0-7][0-7])
# POSIX mkdir -p sets u+wx bits regardless of umask, which
# is incompatible with FreeBSD 'install' when (umask & 300) != 0.
;;
*)
tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0
if (umask $mkdir_umask &&
exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1
then
if test -z "$dir_arg" || {
# Check for POSIX incompatibilities with -m.
# HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
# other-writeable bit of parent directory when it shouldn't.
# FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
ls_ld_tmpdir=`ls -ld "$tmpdir"`
case $ls_ld_tmpdir in
d????-?r-*) different_mode=700;;
d????-?--*) different_mode=755;;
*) false;;
esac &&
$mkdirprog -m$different_mode -p -- "$tmpdir" && {
ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
}
}
then posix_mkdir=:
fi
rmdir "$tmpdir/d" "$tmpdir"
else
# Remove any dirs left behind by ancient mkdir implementations.
rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null
fi
trap '' 0;;
esac;;
esac
if
$posix_mkdir && (
umask $mkdir_umask &&
$doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
)
then :
else
# The umask is ridiculous, or mkdir does not conform to POSIX,
# or it failed possibly due to a race condition. Create the
# directory the slow way, step by step, checking for races as we go.
case $dstdir in
/*) prefix=/ ;;
-*) prefix=./ ;;
*) prefix= ;;
esac
case $posix_glob in
'')
if (set -f) 2>/dev/null; then
posix_glob=true
else
posix_glob=false
fi ;;
esac
oIFS=$IFS
IFS=/
$posix_glob && set -f
set fnord $dstdir
shift
$posix_glob && set +f
IFS=$oIFS
prefixes=
for d
do
test -z "$d" && continue
prefix=$prefix$d
if test -d "$prefix"; then
prefixes=
else
if $posix_mkdir; then
(umask=$mkdir_umask &&
$doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
# Don't fail if two instances are running concurrently.
test -d "$prefix" || exit 1
else
case $prefix in
*\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
*) qprefix=$prefix;;
esac
prefixes="$prefixes '$qprefix'"
fi
fi
prefix=$prefix/
done
if test -n "$prefixes"; then
# Don't fail if two instances are running concurrently.
(umask $mkdir_umask &&
eval "\$doit_exec \$mkdirprog $prefixes") ||
test -d "$dstdir" || exit 1
obsolete_mkdir_used=true
fi
fi
fi
if test -n "$dir_arg"; then
{ test -z "$chowncmd" || $doit $chowncmd "$dst"; } &&
{ test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } &&
{ test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false ||
test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1
else
# Make a couple of temp file names in the proper directory.
dsttmp=$dstdir/_inst.$$_
rmtmp=$dstdir/_rm.$$_
# Trap to clean up those temp files at exit.
trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
# Copy the file name to the temp name.
(umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") &&
# and set any options; do chmod last to preserve setuid bits.
#
# If any of these fail, we abort the whole thing. If we want to
# ignore errors from any of these, just make sure not to ignore
# errors from the above "$doit $cpprog $src $dsttmp" command.
#
{ test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \
&& { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \
&& { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \
&& { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
# Now rename the file to the real destination.
{ $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null \
|| {
# The rename failed, perhaps because mv can't rename something else
# to itself, or perhaps because mv is so ancient that it does not
# support -f.
# Now remove or move aside any old file at destination location.
# We try this two ways since rm can't unlink itself on some
# systems and the destination file might be busy for other
# reasons. In this case, the final cleanup might fail but the new
# file should still install successfully.
{
if test -f "$dst"; then
$doit $rmcmd -f "$dst" 2>/dev/null \
|| { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null \
&& { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }; }\
|| {
echo "$0: cannot unlink or rename $dst" >&2
(exit 1); exit 1
}
else
:
fi
} &&
# Now rename the file to the real destination.
$doit $mvcmd "$dsttmp" "$dst"
}
} || exit 1
trap '' 0
fi
done
# Local variables:
# eval: (add-hook 'write-file-hooks 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
# time-stamp-end: "$"
# End:

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,182 @@
#include <limits.h>
#ifdef HAVE_GETADDRINFO
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#endif /* HAVE_GETADDRINFO */
#include <net-snmp/net-snmp-config.h>
#include <net-snmp/net-snmp-includes.h>
/*
* defines
* MAX_STRING = allocate memory for this length of output string
*/
#define MAX_STRING 65536
#define MAX_DESCR_LEN 60
#define UPTIME_TOLERANCE_IN_SECS 30
#define OFLO32 4294967295ULL
#define OFLO64 18446744073709551615ULL
/* default timeout is 30s */
#define DFLT_TIMEOUT 30000000UL
/* should a timeout return critical(2) or unknown(3)? */
#define EXITCODE_TIMEOUT 3
#define MEMCPY(a, b, c) memcpy(a, b, (sizeof(a)>c)?c:sizeof(a))
#define TERMSTR(a, b) a[(((sizeof(a)-1)<b)?(sizeof(a)-1):b)] = '\0'
#ifndef U64
#define U64
typedef unsigned long long u64;
#endif
/*
* structs
*/
struct ifStruct {
int ignore;
int admin_down;
int print_all_flag;
int index;
int status;
int err_disable;
char descr[MAX_DESCR_LEN];
char alias[MAX_DESCR_LEN];
char name[MAX_DESCR_LEN];
u64 inOctets;
u64 outOctets;
unsigned long inDiscards;
unsigned long outDiscards;
unsigned long inErrors;
unsigned long outErrors;
unsigned long inUcast;
unsigned long outUcast;
u64 speed;
};
struct OIDStruct {
oid name[MAX_OID_LEN];
size_t name_len;
};
/*
* text strings to output in the perfdata
*/
static char *if_vars_default[] = {
"inOctets",
"outOctets",
"inDiscards",
"outDiscards",
"inErrors",
"outErrors",
"inUcast",
"outUcast",
"speed" };
static char *if_vars_cisco[] = {
"inOctets",
"outOctets",
"inDiscards",
"outDiscards",
"inCRCs",
"outCollisions",
"inUcast",
"outUcast",
"speed" };
/*
* OIDs, hardcoded to remove the dependency on MIBs
*/
static char *oid_if_bulkget[] = {".1.3.6.1.2.1.1.3", ".1.3.6.1.2.1.2.1", ".1.3.6.1.2.1.2.2.1.2", 0}; /* "uptime", "ifNumber", "ifDescr" */
static char *oid_if_get[] = {".1.3.6.1.2.1.1.3.0", ".1.3.6.1.2.1.2.1.0", ".1.3.6.1.2.1.2.2.1.2.1", 0}; /* "uptime", "ifNumber", "ifDescr" */
static char *oid_if_bintec[] = {".1.3.6.1.2.1.1.3.0", ".1.3.6.1.2.1.2.1.0", ".1.3.6.1.2.1.2.2.1.2.0", 0}; /* "uptime", "ifNumber", "ifDescr" */
static char *oid_alias_bulkget[] = {".1.3.6.1.2.1.31.1.1.1.18", 0}; /* "alias" */
static char *oid_alias_get[] = {".1.3.6.1.2.1.31.1.1.1.18.1", 0}; /* "alias" */
static char *oid_alias_bintec[] = {".1.3.6.1.2.1.31.1.1.1.18.0", 0}; /* "alias" */
static char *oid_vals_default[] = {
".1.3.6.1.2.1.2.2.1.7", /* ifAdminStatus */
".1.3.6.1.2.1.2.2.1.8", /* ifOperStatus */
".1.3.6.1.2.1.2.2.1.10", /* ifInOctets */
".1.3.6.1.2.1.2.2.1.13", /* ifInDiscards */
".1.3.6.1.2.1.2.2.1.14", /* ifInErrors */
".1.3.6.1.2.1.2.2.1.16", /* ifOutOctets */
".1.3.6.1.2.1.2.2.1.19", /* ifOutDiscards */
".1.3.6.1.2.1.2.2.1.20", /* ifOutErrors */
0
};
static char *oid_vals_cisco[] = {
".1.3.6.1.2.1.2.2.1.7", /* ifAdminStatus */
".1.3.6.1.2.1.2.2.1.8", /* ifOperStatus */
".1.3.6.1.2.1.2.2.1.10", /* ifInOctets */
".1.3.6.1.2.1.2.2.1.13", /* ifInDiscards */
".1.3.6.1.4.1.9.2.2.1.1.12", /* locIfInCRC */
".1.3.6.1.2.1.2.2.1.16", /* ifOutOctets */
".1.3.6.1.2.1.2.2.1.19", /* ifOutDiscards */
".1.3.6.1.4.1.9.2.2.1.1.25", /* locIfCollisions */
0
};
static char *oid_extended[] = {
".1.3.6.1.2.1.31.1.1.1.6", /* ifHCInOctets */
".1.3.6.1.2.1.31.1.1.1.10",/* ifHCOutOctets */
".1.3.6.1.2.1.2.2.1.11", /* ifInUcastPkts */
".1.3.6.1.2.1.2.2.1.17", /* ifOutUcastPkts */
".1.3.6.1.2.1.2.2.1.5", /* ifSpeed */
".1.3.6.1.2.1.31.1.1.1.15",/* ifHighSpeed */
".1.3.6.1.2.1.31.1.1.1.18",/* alias */
".1.3.6.1.2.1.31.1.1.1.1", /* name */
0
};
static char *oid_extended_cisco[] = {
".1.3.6.1.4.1.9.5.1.4.1.1.23", /* portAdditionalOperStatus */
0
};
static char default_community[] = "public";
/*
* operating modes
*/
const char *modes[] = { "default", "cisco", "nonbulk", "bintec", NULL };
enum mode_enum { DEFAULT, CISCO, NONBULK, BINTEC };
/*
* prototypes
*/
void print64(struct counter64*, unsigned long*);
u64 convertto64(struct counter64 *, unsigned long *);
u64 subtract64(u64, u64);
netsnmp_session *start_session(netsnmp_session *, char *, char *);
netsnmp_session *start_session_v3(netsnmp_session *, char *, char *, char *, char *, char *, char *);
int usage(char *);
int parse_perfdata(char *, struct ifStruct *, char *);
void set_value(struct ifStruct *, char *, char *, u64, char *);
int parseoids(int, char *, struct OIDStruct *);
int create_request(netsnmp_session *, struct OIDStruct **, char **, int, netsnmp_pdu **);

View file

@ -0,0 +1,202 @@
#include <stdarg.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "utils.h"
/*
* Add a string
*/
int addstrold(char **strp, size_t *strs, const char *format, ...)
{
va_list val;
size_t written;
va_start(val, format);
written = vsnprintf(*strp, *strs, format, val);
va_end(val);
if (written >= *strs)
{
// buffer full
*strs = 0;
return(1);
}
*strs = (*strs - written);
*strp = (*strp + written);
return(0);
}
int addstr(String *str, const char *format, ...)
{
va_list val;
size_t written;
size_t available;
char *pos;
available = str->max - str->len;
pos = str->text + str->len;
va_start(val, format);
written = vsnprintf(pos, available, format, val);
va_end(val);
if (written >= available)
{
/* buffer full */
str->text[(str->max)] = 0;
str->len = str->max;
return(1);
}
str->len = str->len + written;
return(0);
}
/*
* Replace troublesome characters in a string with underscores
* - only use for strings we already know the size of */
void strcpy_nospaces(char *dest, char *src)
{
static unsigned char allowed[256] = "_________________________________!_#_%__()*+,-.-0123456789_____?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[_]^__abcdefghijklmnopqrstuvwxyz{_}__________________________________________________________________________________________________________________________________";
while(*src)
{
*(dest++) = allowed[(unsigned char) *(src++)];
}
*dest = 0;
}
/*
* convert a (possibly large) integer to a string with unit suffix
*
* add the following check to configure.ac
* AC_SEARCH_LIBS(pow, [c m], AC_DEFINE([HAVE_POW]))
*/
int gauge_to_si(u64 bignum, char **str)
{
int i = 0;
u64 tmpll;
static char units[] = "kMGTPE";
tmpll = bignum;
while ((tmpll /= 1000ULL) && (i < (sizeof(units) - 1)))
{
i++;
}
#ifdef HAVE_POW
if (i)
{
return asprintf(str, "%0.2f%c", ((double)bignum / pow(1000, i)), units[i-1]);
}
else
{
return asprintf(str, "%Ld", bignum);
}
#else
return asprintf(str, "%Ld", bignum);
#endif
}
static
struct timespec benchmark_start_time;
static
char *benchmark_task;
void benchmark_start(char const *format, ...)
{
{
va_list args;
va_start(args, format);
int benchmark_task_length = vsnprintf(NULL, 0u, format, args);
va_end(args);
benchmark_task = (char*)malloc(benchmark_task_length + 1);
benchmark_task[benchmark_task_length] = 0;
}
{
va_list args;
va_start(args, format);
vsprintf(benchmark_task, format, args);
va_end(args);
}
fprintf(stderr, "[Starting benchmark] %s\n", benchmark_task);
clock_gettime(CLOCK_MONOTONIC, &benchmark_start_time);
}
void benchmark_end(void)
{
{
struct timespec benchmark_end_time;
clock_gettime(CLOCK_MONOTONIC, &benchmark_end_time);
fprintf(
stderr,
"[Finished benchmark after %f ms] %s\n",
((double)benchmark_end_time.tv_sec * 1000.0 + (double)benchmark_end_time.tv_nsec / 1000000.0)
- ((double)benchmark_start_time.tv_sec * 1000.0 + (double)benchmark_start_time.tv_nsec / 1000000.0),
benchmark_task
);
}
free(benchmark_task);
}
char *implode(char const *glue, char **pieces)
{
size_t total_len = 0u;
char **walk_pieces = pieces;
while (*walk_pieces != NULL) {
total_len += strlen(*walk_pieces++);
}
ptrdiff_t walk_pieces_diff = walk_pieces - pieces;
if (walk_pieces_diff >= 2) {
total_len += strlen(glue) * (size_t)(walk_pieces_diff - 1);
}
char *result = (char*)malloc(total_len + 1u);
if (walk_pieces_diff > 0) {
strcpy(result, *pieces);
if (walk_pieces_diff >= 2) {
char *walk_result = result;
walk_pieces = pieces + 1;
while (*walk_pieces != NULL) {
while (*walk_result) {
++walk_result;
}
strcpy(walk_result, glue);
while (*walk_result) {
++walk_result;
}
strcpy(walk_result, *walk_pieces++);
}
}
} else {
*result = 0;
}
return result;
}

View file

@ -0,0 +1,33 @@
/* asprintf */
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <stdio.h>
#include <stdarg.h>
#ifdef HAVE_POW
#include <math.h>
#endif
#ifndef U64
#define U64
typedef unsigned long long u64;
#endif
struct stringStruct {
size_t max;
size_t len;
char * text; /* pointer to an allocation of max + 1 */
};
typedef struct stringStruct String;
int addstrold(char **, size_t *, const char *, ...);
int addstr(String *, const char *, ...);
void strcpy_nospaces(char *, char *);
int gauge_to_si(u64, char **);
void benchmark_start(char const *, ...);
void benchmark_end(void);
char *implode(char const *, char **);

5
check_interfaces/control Normal file
View file

@ -0,0 +1,5 @@
Homepage: https://github.com/NETWAYS/check_interfaces
Uploaders: Jan Wagner <waja@cyconet.org>
Description: This plugin uses the bulk-get mode of SNMPv2 by default
Build-Depends: autotools-dev, libsnmp-dev
Version: 1.4

View file

@ -0,0 +1,19 @@
AUTHOR: NETWAYS GmbH, William Preston <support@netways.de>
License: GPL v2
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.
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
check_interfaces/src Symbolic link
View file

@ -0,0 +1 @@
check_interfaces-1.4/

194
check_ipsec/check_ipsec Normal file
View 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
View 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

View file

@ -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".

View file

@ -1,3 +0,0 @@
#/usr/bin/make -f
include ../common.mk

View file

@ -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

View file

@ -1,4 +0,0 @@
Uploaders: Jan Wagner <waja@cyconet.org>
Description: plugin checking keepalived status
Recommends: procps
Version: 0.0.1

View file

@ -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".

View file

@ -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"
}
```

View file

@ -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)

View file

@ -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

View file

@ -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',
},
};

View file

@ -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'} = {
};

View file

@ -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'} = {
};

View file

@ -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'} = {
};

View file

@ -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'} = {
};

View file

@ -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'} = {
};

View file

@ -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'} = {
};

View file

@ -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',
},
};

View file

@ -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',
}
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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'} = {
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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'} = {
};

View file

@ -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'} = {
};

View file

@ -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;
},
};

View file

@ -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'} = {
};

View file

@ -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',
},
};

View file

@ -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',
},
};

View file

@ -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'} = {
};

View file

@ -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;

View file

@ -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();
}
}

View file

@ -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();
}
}

View file

@ -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();
}
}

View file

@ -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();
}
}

View file

@ -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));
}
}

View file

@ -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') } ],
]);
}

View file

@ -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

View file

@ -1,4 +0,0 @@
package CheckNwcHealth::BGP;
our @ISA = qw(CheckNwcHealth::Device);
use strict;

View file

@ -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();
}
}

Some files were not shown because too many files have changed in this diff Show more