mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Bintec be.IP plus support (#12993)
* Introduce OS flag to support devices that deliver OIDs out of order * Add MIB for Bintec Be.IP Plus * Add YAML definitions for Bintec Be.IP Plus * Add Bintec be.IP plus test files * Rename bintec mib files mib-standards.mib was deleted, because it included definitions that also existed in separate files * Add test data * Remove standard mib files from bintec dir * Add regex to parse Bintec Be.IP Plus OS version * Update test data for Bintec Be.IP Plus * Calculate Bintec Be.IP Plus CPU load from inverse of idle time * Improve Bintec Be.IP Plus discovery and tests * Use MIB instead of numerical OIDs where possible * Update tests to comply with updated discovery * Remove unused MIBs * Remove json props that let tests fail * Update Settings.md * Remove `snmp_out_of_order_oids` definition from bintec-beip-plus * Add `-Cc` snmp param for prots module * Add `-Cc` snmp param for arp-table module * remove snmp_out_of_order_oids * Remove snmp_out_of_order_oids * Update snmp.inc.php Co-authored-by: Tony Murray <murraytony@gmail.com>
This commit is contained in:
13
includes/definitions/bintec-beip-plus.yaml
Normal file
13
includes/definitions/bintec-beip-plus.yaml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
os: bintec-beip-plus
|
||||||
|
snmp_bulk: false
|
||||||
|
text: 'Bintec Be.IP Plus'
|
||||||
|
type: network
|
||||||
|
icon: bintec
|
||||||
|
mib_dir: bintec
|
||||||
|
over:
|
||||||
|
- { graph: device_bits, text: 'Device Traffic' }
|
||||||
|
- { graph: device_processor, text: 'CPU Usage' }
|
||||||
|
- { graph: device_mempool, text: 'Memory Usage' }
|
||||||
|
discovery:
|
||||||
|
- sysObjectID:
|
||||||
|
- .1.3.6.1.4.1.272.4.201.66.69.50.48
|
29
includes/definitions/discovery/bintec-beip-plus.yaml
Normal file
29
includes/definitions/discovery/bintec-beip-plus.yaml
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
modules:
|
||||||
|
os:
|
||||||
|
version: BIANCA-BRICK-MIB::biboAdmSWVersion.0
|
||||||
|
version_regex: '/(?<version>[V]{1}[.0-9]+)/'
|
||||||
|
serial: BIANCA-BRICK-MIB::biboABrdSerialNo.0.0.0
|
||||||
|
hardware:
|
||||||
|
- BIANCA-BRICK-MIB::biboABrdPartNo.0.0.0
|
||||||
|
- BIANCA-BRICK-MIB::biboABrdHWRelease.0.0.0
|
||||||
|
hardware_template: '{{ BIANCA-BRICK-MIB::biboABrdPartNo.0.0.0 }} {{ BIANCA-BRICK-MIB::biboABrdHWRelease.0.0.0 }}'
|
||||||
|
mempools:
|
||||||
|
data:
|
||||||
|
-
|
||||||
|
oid: BIANCA-BRICK-MIBRES-MIB::memoryTable
|
||||||
|
total: BIANCA-BRICK-MIBRES-MIB::memoryTotal
|
||||||
|
used: BIANCA-BRICK-MIBRES-MIB::memoryInuse
|
||||||
|
descr: Main Memory
|
||||||
|
skip_values:
|
||||||
|
-
|
||||||
|
oid: BIANCA-BRICK-MIBRES-MIB::memoryType
|
||||||
|
op: '!='
|
||||||
|
value: 'dram' # Only include DRAM in mempools
|
||||||
|
processors:
|
||||||
|
data:
|
||||||
|
-
|
||||||
|
oid: BIANCA-BRICK-MIBRES-MIB::cpuLoadIdle60s
|
||||||
|
num_oid: '.1.3.6.1.4.1.272.4.17.4.1.1.18.1.0'
|
||||||
|
precision: -1
|
||||||
|
descr: 'Load Average'
|
||||||
|
type: bintec-cpu
|
@@ -31,8 +31,13 @@ foreach (DeviceCache::getPrimary()->getVrfContexts() as $context_name) {
|
|||||||
if (file_exists(Config::get('install_dir') . "/includes/discovery/arp-table/{$device['os']}.inc.php")) {
|
if (file_exists(Config::get('install_dir') . "/includes/discovery/arp-table/{$device['os']}.inc.php")) {
|
||||||
include Config::get('install_dir') . "/includes/discovery/arp-table/{$device['os']}.inc.php";
|
include Config::get('install_dir') . "/includes/discovery/arp-table/{$device['os']}.inc.php";
|
||||||
} else {
|
} else {
|
||||||
|
$netToMediaPhysAddressSnmpFlags = '-OQUsetX';
|
||||||
|
if ($device['os'] == 'bintec-beip-plus') {
|
||||||
|
$netToMediaPhysAddressSnmpFlags = ['-OQUsetX', '-Cc'];
|
||||||
|
}
|
||||||
|
|
||||||
$arp_data = snmpwalk_group($device, 'ipNetToPhysicalPhysAddress', 'IP-MIB');
|
$arp_data = snmpwalk_group($device, 'ipNetToPhysicalPhysAddress', 'IP-MIB');
|
||||||
$arp_data = snmpwalk_group($device, 'ipNetToMediaPhysAddress', 'IP-MIB', 1, $arp_data);
|
$arp_data = snmpwalk_group($device, 'ipNetToMediaPhysAddress', 'IP-MIB', 1, $arp_data, null, null, $netToMediaPhysAddressSnmpFlags);
|
||||||
}
|
}
|
||||||
|
|
||||||
$sql = 'SELECT * from `ipv4_mac` WHERE `device_id`=? AND `context_name`=?';
|
$sql = 'SELECT * from `ipv4_mac` WHERE `device_id`=? AND `context_name`=?';
|
||||||
|
@@ -5,12 +5,21 @@ use App\Models\PortGroup;
|
|||||||
use LibreNMS\Config;
|
use LibreNMS\Config;
|
||||||
use LibreNMS\Util\StringHelpers;
|
use LibreNMS\Util\StringHelpers;
|
||||||
|
|
||||||
|
$descrSnmpFlags = '-OQUs';
|
||||||
|
$typeSnmpFlags = '-OQUs';
|
||||||
|
$operStatusSnmpFlags = '-OQUs';
|
||||||
|
if ($device['os'] == 'bintec-beip-plus') {
|
||||||
|
$descrSnmpFlags = ['-OQUs', '-Cc'];
|
||||||
|
$typeSnmpFlags = ['-OQUs', '-Cc'];
|
||||||
|
$operStatusSnmpFlags = ['-OQUs', '-Cc'];
|
||||||
|
}
|
||||||
|
|
||||||
$port_stats = [];
|
$port_stats = [];
|
||||||
$port_stats = snmpwalk_cache_oid($device, 'ifDescr', $port_stats, 'IF-MIB');
|
$port_stats = snmpwalk_cache_oid($device, 'ifDescr', $port_stats, 'IF-MIB', null, $descrSnmpFlags);
|
||||||
$port_stats = snmpwalk_cache_oid($device, 'ifName', $port_stats, 'IF-MIB');
|
$port_stats = snmpwalk_cache_oid($device, 'ifName', $port_stats, 'IF-MIB');
|
||||||
$port_stats = snmpwalk_cache_oid($device, 'ifAlias', $port_stats, 'IF-MIB');
|
$port_stats = snmpwalk_cache_oid($device, 'ifAlias', $port_stats, 'IF-MIB');
|
||||||
$port_stats = snmpwalk_cache_oid($device, 'ifType', $port_stats, 'IF-MIB');
|
$port_stats = snmpwalk_cache_oid($device, 'ifType', $port_stats, 'IF-MIB', null, $typeSnmpFlags);
|
||||||
$port_stats = snmpwalk_cache_oid($device, 'ifOperStatus', $port_stats, 'IF-MIB');
|
$port_stats = snmpwalk_cache_oid($device, 'ifOperStatus', $port_stats, 'IF-MIB', null, $operStatusSnmpFlags);
|
||||||
|
|
||||||
// Get correct eth0 port status for AirFiber 5XHD devices
|
// Get correct eth0 port status for AirFiber 5XHD devices
|
||||||
if ($device['os'] == 'airos-af-ltu') {
|
if ($device['os'] == 'airos-af-ltu') {
|
||||||
|
@@ -650,12 +650,13 @@ function snmpwalk_cache_triple_oid($device, $oid, $array, $mib = null, $mibdir =
|
|||||||
* @param int $depth how many indexes to group
|
* @param int $depth how many indexes to group
|
||||||
* @param array $array optionally insert the entries into an existing array (helpful for grouping multiple walks)
|
* @param array $array optionally insert the entries into an existing array (helpful for grouping multiple walks)
|
||||||
* @param string $mibdir custom mib dir to search for mib
|
* @param string $mibdir custom mib dir to search for mib
|
||||||
|
* @param mixed $snmpFlags flags to use for the snmp command
|
||||||
* @return array grouped array of data
|
* @return array grouped array of data
|
||||||
*/
|
*/
|
||||||
function snmpwalk_group($device, $oid, $mib = '', $depth = 1, $array = [], $mibdir = null, $strIndexing = null)
|
function snmpwalk_group($device, $oid, $mib = '', $depth = 1, $array = [], $mibdir = null, $strIndexing = null, $snmpFlags = '-OQUsetX')
|
||||||
{
|
{
|
||||||
d_echo("communityStringIndexing $strIndexing\n");
|
d_echo("communityStringIndexing $strIndexing\n");
|
||||||
$cmd = gen_snmpwalk_cmd($device, $oid, '-OQUsetX', $mib, $mibdir, $strIndexing);
|
$cmd = gen_snmpwalk_cmd($device, $oid, $snmpFlags, $mib, $mibdir, $strIndexing);
|
||||||
$data = rtrim(external_exec($cmd));
|
$data = rtrim(external_exec($cmd));
|
||||||
|
|
||||||
$line = strtok($data, "\n");
|
$line = strtok($data, "\n");
|
||||||
|
3018
mibs/bintec/BIANCA-BRICK-MIB
Normal file
3018
mibs/bintec/BIANCA-BRICK-MIB
Normal file
File diff suppressed because it is too large
Load Diff
460
mibs/bintec/BIANCA-BRICK-MIBRES-MIB
Normal file
460
mibs/bintec/BIANCA-BRICK-MIBRES-MIB
Normal file
@@ -0,0 +1,460 @@
|
|||||||
|
-- This file is corresponding to Release 10.2.3.100 from 2018/07/18 00:00:00
|
||||||
|
|
||||||
|
|
||||||
|
-- (C)opyright 1991-2014 bintec elmeg GmbH, All Rights Reserved
|
||||||
|
-- $RCSfile: mib-resource,v $
|
||||||
|
-- $Revision: 1.6 $
|
||||||
|
|
||||||
|
BIANCA-BRICK-MIBRES-MIB DEFINITIONS ::= BEGIN
|
||||||
|
|
||||||
|
IMPORTS
|
||||||
|
Counter, enterprises
|
||||||
|
FROM RFC1155-SMI
|
||||||
|
|
||||||
|
Unsigned32
|
||||||
|
FROM SNMPv2-SMI
|
||||||
|
|
||||||
|
DisplayString
|
||||||
|
FROM RFC1158-MIB
|
||||||
|
|
||||||
|
OBJECT-TYPE
|
||||||
|
FROM RFC-1212
|
||||||
|
|
||||||
|
resource
|
||||||
|
FROM BINTEC-MIB;
|
||||||
|
|
||||||
|
resourceMIB MODULE-IDENTITY
|
||||||
|
LAST-UPDATED "201204120000Z"
|
||||||
|
ORGANIZATION "bintec elmeg GmbH"
|
||||||
|
CONTACT-INFO
|
||||||
|
"EMail: info@bintec-elmeg.com
|
||||||
|
Web: www.bintec-elmeg.com
|
||||||
|
"
|
||||||
|
DESCRIPTION
|
||||||
|
"The MIB module for resource administration entities.
|
||||||
|
"
|
||||||
|
::= { resource 255 }
|
||||||
|
|
||||||
|
-- System Resources
|
||||||
|
|
||||||
|
cpuTable OBJECT-TYPE
|
||||||
|
SYNTAX SEQUENCE OF CpuEntry
|
||||||
|
MAX-ACCESS not-accessible
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"The CpuTable contains information about
|
||||||
|
the processor statistics in the system."
|
||||||
|
::= { resource 1 }
|
||||||
|
|
||||||
|
cpuEntry OBJECT-TYPE
|
||||||
|
SYNTAX CpuEntry
|
||||||
|
MAX-ACCESS not-accessible
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
""
|
||||||
|
INDEX { cpuNumber }
|
||||||
|
::= { cpuTable 1 }
|
||||||
|
|
||||||
|
CpuEntry ::=
|
||||||
|
SEQUENCE {
|
||||||
|
cpuNumber INTEGER,
|
||||||
|
cpuDescr DisplayString,
|
||||||
|
cpuTotalUser INTEGER,
|
||||||
|
cpuTotalSystem INTEGER,
|
||||||
|
cpuTotalStreams INTEGER,
|
||||||
|
cpuTotalIdle INTEGER,
|
||||||
|
cpuLoadUser INTEGER,
|
||||||
|
cpuLoadSystem INTEGER,
|
||||||
|
cpuLoadStreams INTEGER,
|
||||||
|
cpuLoadIdle INTEGER,
|
||||||
|
cpuLoadUser10s INTEGER,
|
||||||
|
cpuLoadSystem10s INTEGER,
|
||||||
|
cpuLoadStreams10s INTEGER,
|
||||||
|
cpuLoadIdle10s INTEGER,
|
||||||
|
cpuLoadUser60s INTEGER,
|
||||||
|
cpuLoadSystem60s INTEGER,
|
||||||
|
cpuLoadStreams60s INTEGER,
|
||||||
|
cpuLoadIdle60s INTEGER
|
||||||
|
}
|
||||||
|
|
||||||
|
cpuNumber OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"CPU Number."
|
||||||
|
::= { cpuEntry 1 }
|
||||||
|
|
||||||
|
cpuDescr OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Description of CPU."
|
||||||
|
::= { cpuEntry 2 }
|
||||||
|
|
||||||
|
cpuTotalUser OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Total time in seconds spent in user mode since booting."
|
||||||
|
::= { cpuEntry 3 }
|
||||||
|
|
||||||
|
cpuTotalSystem OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Total time in seconds spent in sytem mode since booting."
|
||||||
|
::= { cpuEntry 4 }
|
||||||
|
|
||||||
|
cpuTotalStreams OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Total time in seconds spent with streams processing since booting."
|
||||||
|
::= { cpuEntry 5 }
|
||||||
|
|
||||||
|
cpuTotalIdle OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Total idle time in seconds since booting."
|
||||||
|
::= { cpuEntry 6 }
|
||||||
|
|
||||||
|
cpuLoadUser OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER (0..100)
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Percentage of time spent in user mode for the last second."
|
||||||
|
::= { cpuEntry 7 }
|
||||||
|
|
||||||
|
cpuLoadSystem OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER (0..100)
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Percentage of time spent in system mode for the last second."
|
||||||
|
::= { cpuEntry 8 }
|
||||||
|
|
||||||
|
cpuLoadStreams OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER (0..100)
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Percentage of time spent with streams processing for the last second."
|
||||||
|
::= { cpuEntry 9 }
|
||||||
|
|
||||||
|
cpuLoadIdle OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER (0..100)
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Percentage of idle time for the last second."
|
||||||
|
::= { cpuEntry 10 }
|
||||||
|
|
||||||
|
cpuLoadUser10s OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER (0..100)
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Percentage of time spent in user mode for the last 10 seconds."
|
||||||
|
::= { cpuEntry 11 }
|
||||||
|
|
||||||
|
cpuLoadSystem10s OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER (0..100)
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Percentage of time spent in system mode for the last 10 seconds."
|
||||||
|
::= { cpuEntry 12 }
|
||||||
|
|
||||||
|
cpuLoadStreams10s OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER (0..100)
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Percentage of time spent with streams processing for the last 10 seconds."
|
||||||
|
::= { cpuEntry 13 }
|
||||||
|
|
||||||
|
cpuLoadIdle10s OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER (0..100)
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Percentage of idle time measured for the last 10 seconds."
|
||||||
|
::= { cpuEntry 14 }
|
||||||
|
|
||||||
|
cpuLoadUser60s OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER (0..100)
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Percentage of time spent in user mode for the last 60 seconds."
|
||||||
|
::= { cpuEntry 15 }
|
||||||
|
|
||||||
|
cpuLoadSystem60s OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER (0..100)
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Percentage of time spent in system mode for the last 60 seconds."
|
||||||
|
::= { cpuEntry 16 }
|
||||||
|
|
||||||
|
cpuLoadStreams60s OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER (0..100)
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Percentage of time spent with streams processing for the last 60 seconds."
|
||||||
|
::= { cpuEntry 17 }
|
||||||
|
|
||||||
|
cpuLoadIdle60s OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER (0..100)
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Percentage of idle time measured for the last 60 seconds."
|
||||||
|
::= { cpuEntry 18 }
|
||||||
|
|
||||||
|
memoryTable OBJECT-TYPE
|
||||||
|
SYNTAX SEQUENCE OF MemoryEntry
|
||||||
|
MAX-ACCESS not-accessible
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"The memoryTable contains information about
|
||||||
|
the different memory in the system."
|
||||||
|
::= { resource 2 }
|
||||||
|
|
||||||
|
memoryEntry OBJECT-TYPE
|
||||||
|
SYNTAX MemoryEntry
|
||||||
|
MAX-ACCESS not-accessible
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
""
|
||||||
|
INDEX { memoryType }
|
||||||
|
::= { memoryTable 1 }
|
||||||
|
|
||||||
|
MemoryEntry ::=
|
||||||
|
SEQUENCE {
|
||||||
|
memoryType INTEGER,
|
||||||
|
memoryDescr DisplayString,
|
||||||
|
memoryBlockSize INTEGER,
|
||||||
|
memoryTotal INTEGER,
|
||||||
|
memoryInuse INTEGER,
|
||||||
|
memoryDramUse INTEGER,
|
||||||
|
memoryNAllocs INTEGER,
|
||||||
|
memoryNFrees INTEGER,
|
||||||
|
memoryNFails INTEGER
|
||||||
|
}
|
||||||
|
|
||||||
|
memoryType OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER { flash(1), dram(2), dpool(3) }
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Type of memory:
|
||||||
|
flash (1) : Non volatile memory
|
||||||
|
dram (2) : Dynamic memory
|
||||||
|
dpool (3) : Dynamic pool
|
||||||
|
"
|
||||||
|
::= { memoryEntry 1 }
|
||||||
|
|
||||||
|
memoryDescr OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Description of memory."
|
||||||
|
::= { memoryEntry 2 }
|
||||||
|
|
||||||
|
memoryBlockSize OBJECT-TYPE
|
||||||
|
SYNTAX Unsigned32
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Allocation size for memories from dpools."
|
||||||
|
::= { memoryEntry 3 }
|
||||||
|
|
||||||
|
memoryTotal OBJECT-TYPE
|
||||||
|
SYNTAX Unsigned32
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Amount of available units of this memory type measured in
|
||||||
|
units for dpools and bytes for flash/dram."
|
||||||
|
::= { memoryEntry 4 }
|
||||||
|
|
||||||
|
memoryInuse OBJECT-TYPE
|
||||||
|
SYNTAX Unsigned32
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Used units of this memory type measured in units for dpools
|
||||||
|
and bytes for flash/dram."
|
||||||
|
::= { memoryEntry 5 }
|
||||||
|
|
||||||
|
memoryDramUse OBJECT-TYPE
|
||||||
|
SYNTAX Unsigned32
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"dpools might take memory from dram. This variable gives the
|
||||||
|
amount in bytes taken from a dram memory."
|
||||||
|
::= { memoryEntry 6 }
|
||||||
|
|
||||||
|
memoryNAllocs OBJECT-TYPE
|
||||||
|
SYNTAX Unsigned32
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Number of memory allocations."
|
||||||
|
::= { memoryEntry 7 }
|
||||||
|
|
||||||
|
memoryNFrees OBJECT-TYPE
|
||||||
|
SYNTAX Unsigned32
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Number of memory free operations."
|
||||||
|
::= { memoryEntry 8 }
|
||||||
|
|
||||||
|
memoryNFails OBJECT-TYPE
|
||||||
|
SYNTAX Unsigned32
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Number of failed memory operations."
|
||||||
|
::= { memoryEntry 9 }
|
||||||
|
|
||||||
|
dspTable OBJECT-TYPE
|
||||||
|
SYNTAX SEQUENCE OF DspEntry
|
||||||
|
MAX-ACCESS not-accessible
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"The DspTable contains information about
|
||||||
|
Digital Signal processors in the system."
|
||||||
|
::= { resource 3 }
|
||||||
|
|
||||||
|
dspEntry OBJECT-TYPE
|
||||||
|
SYNTAX DspEntry
|
||||||
|
MAX-ACCESS not-accessible
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
""
|
||||||
|
INDEX { dspSlot, dspUnit }
|
||||||
|
::= { dspTable 1 }
|
||||||
|
|
||||||
|
DspEntry ::=
|
||||||
|
SEQUENCE {
|
||||||
|
dspSlot INTEGER,
|
||||||
|
dspUnit INTEGER,
|
||||||
|
dspDescr DisplayString,
|
||||||
|
dspCapabilities BITS,
|
||||||
|
dspTotalChannels INTEGER,
|
||||||
|
dspUsedChannels INTEGER
|
||||||
|
}
|
||||||
|
|
||||||
|
dspSlot OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER (0..512)
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"DSP Slot Number."
|
||||||
|
::= { dspEntry 1 }
|
||||||
|
|
||||||
|
dspUnit OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER (0..9999)
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"DSP Unit Number."
|
||||||
|
::= { dspEntry 2 }
|
||||||
|
|
||||||
|
dspDescr OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Description of DSP."
|
||||||
|
::= { dspEntry 3 }
|
||||||
|
|
||||||
|
dspCapabilities OBJECT-TYPE
|
||||||
|
SYNTAX BITS {
|
||||||
|
g711(0),
|
||||||
|
g722(1),
|
||||||
|
g723(2),
|
||||||
|
g728(3),
|
||||||
|
g726(4),
|
||||||
|
g729(5),
|
||||||
|
ilbc(6),
|
||||||
|
clear(7),
|
||||||
|
t30(8),
|
||||||
|
t38(9),
|
||||||
|
dtmf(10)
|
||||||
|
}
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"This bitfield describes what the DSP supports."
|
||||||
|
::= { dspEntry 4 }
|
||||||
|
|
||||||
|
dspTotalChannels OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER (1..1000)
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Total number of channels of this DSP."
|
||||||
|
::= { dspEntry 5 }
|
||||||
|
|
||||||
|
dspUsedChannels OBJECT-TYPE
|
||||||
|
SYNTAX INTEGER (1..1000)
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Number of used channels of this DSP."
|
||||||
|
::= { dspEntry 6 }
|
||||||
|
|
||||||
|
END
|
118
mibs/bintec/BINTEC-MIB
Normal file
118
mibs/bintec/BINTEC-MIB
Normal file
@@ -0,0 +1,118 @@
|
|||||||
|
-- This file is corresponding to Release 10.2.3.100 from 2018/07/18 00:00:00
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
-- (C)opyright 2004-2014 bintec elmeg GmbH
|
||||||
|
-- $RCSfile: mib-standards,v $
|
||||||
|
-- $Revision: 1.19 $
|
||||||
|
-- $Date: 2017-03-10 16:15:21 $
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
-- INFO for importing MIB files into SNMP manager
|
||||||
|
--
|
||||||
|
-- if MIBcompiler dont like multiple modules or redefinitions of standard MIBs
|
||||||
|
-- listed in this file, remove everything with except of last BINTEC-MIB:
|
||||||
|
-- keep only lines from:
|
||||||
|
-- from : BINTEC-MIB DEFINITIONS ::= BEGIN
|
||||||
|
-- to : END
|
||||||
|
|
||||||
|
BINTEC-MIB DEFINITIONS ::= BEGIN
|
||||||
|
|
||||||
|
IMPORTS enterprises FROM SNMPv2-SMI;
|
||||||
|
|
||||||
|
bintec OBJECT IDENTIFIER ::= { enterprises 272 }
|
||||||
|
bibo OBJECT IDENTIFIER ::= { bintec 4 }
|
||||||
|
|
||||||
|
isdn OBJECT IDENTIFIER
|
||||||
|
::= { bibo 2 }
|
||||||
|
|
||||||
|
biboip OBJECT IDENTIFIER
|
||||||
|
::= { bibo 5 }
|
||||||
|
|
||||||
|
atm OBJECT IDENTIFIER
|
||||||
|
::= { bibo 16 }
|
||||||
|
|
||||||
|
sys OBJECT IDENTIFIER
|
||||||
|
::= { bibo 17 }
|
||||||
|
|
||||||
|
admin-2 OBJECT IDENTIFIER
|
||||||
|
::= { bibo 22 }
|
||||||
|
|
||||||
|
vpn OBJECT IDENTIFIER
|
||||||
|
::= { bibo 23 }
|
||||||
|
|
||||||
|
ipsec OBJECT IDENTIFIER
|
||||||
|
::= { bibo 26 }
|
||||||
|
|
||||||
|
qos OBJECT IDENTIFIER
|
||||||
|
::= { bibo 27 }
|
||||||
|
|
||||||
|
adsl OBJECT IDENTIFIER
|
||||||
|
::= { bibo 30 }
|
||||||
|
|
||||||
|
voip OBJECT IDENTIFIER
|
||||||
|
::= { bibo 33 }
|
||||||
|
|
||||||
|
security OBJECT IDENTIFIER
|
||||||
|
::= { bibo 38 }
|
||||||
|
|
||||||
|
vif OBJECT IDENTIFIER
|
||||||
|
::= { bibo 39 }
|
||||||
|
|
||||||
|
tty OBJECT IDENTIFIER
|
||||||
|
::= { bibo 41 }
|
||||||
|
|
||||||
|
ssh OBJECT IDENTIFIER
|
||||||
|
::= { bibo 44 }
|
||||||
|
|
||||||
|
phy OBJECT IDENTIFIER
|
||||||
|
::= { bibo 45 }
|
||||||
|
|
||||||
|
wlan OBJECT IDENTIFIER
|
||||||
|
::= { bibo 46 }
|
||||||
|
|
||||||
|
ima OBJECT IDENTIFIER
|
||||||
|
::= { bibo 54 }
|
||||||
|
|
||||||
|
usb OBJECT IDENTIFIER
|
||||||
|
::= { bibo 55 }
|
||||||
|
|
||||||
|
resource OBJECT IDENTIFIER
|
||||||
|
::= { sys 4 }
|
||||||
|
|
||||||
|
gui OBJECT IDENTIFIER
|
||||||
|
::= { bibo 69 }
|
||||||
|
|
||||||
|
PhysAddress ::=
|
||||||
|
OCTET STRING (SIZE(6))
|
||||||
|
|
||||||
|
DisplayString ::=
|
||||||
|
OCTET STRING (SIZE(0..255))
|
||||||
|
|
||||||
|
MacAddress ::=
|
||||||
|
OCTET STRING (SIZE(6))
|
||||||
|
|
||||||
|
BridgeId ::=
|
||||||
|
OCTET STRING (SIZE(8))
|
||||||
|
|
||||||
|
Timeout ::=
|
||||||
|
INTEGER (0..4294967295)
|
||||||
|
|
||||||
|
Date ::=
|
||||||
|
INTEGER (0..4294967295)
|
||||||
|
|
||||||
|
HexValue ::=
|
||||||
|
INTEGER (0..4294967295)
|
||||||
|
|
||||||
|
BitValue ::=
|
||||||
|
INTEGER (0..4294967295)
|
||||||
|
|
||||||
|
-- dont use, only for internal signaling, use standard BITS
|
||||||
|
BitField ::= -- alias type to distinguish BITS from OCTET STR
|
||||||
|
BITS
|
||||||
|
|
||||||
|
InetAddressV6 ::= -- alias type to output in IPv6 ::-format
|
||||||
|
OCTET STRING (SIZE(0..16))
|
||||||
|
|
||||||
|
|
||||||
|
END
|
22
mibs/bintec/RFC1158-MIB
Normal file
22
mibs/bintec/RFC1158-MIB
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
-- This file is corresponding to Release 10.2.3.100 from 2018/07/18 00:00:00
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
-- (C)opyright 2004-2014 bintec elmeg GmbH
|
||||||
|
-- $RCSfile: mib-standards,v $
|
||||||
|
-- $Revision: 1.19 $
|
||||||
|
-- $Date: 2017-03-10 16:15:21 $
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
-- INFO for importing MIB files into SNMP manager
|
||||||
|
--
|
||||||
|
-- if MIBcompiler dont like multiple modules or redefinitions of standard MIBs
|
||||||
|
-- listed in this file, remove everything with except of last BINTEC-MIB:
|
||||||
|
-- keep only lines from:
|
||||||
|
-- from : BINTEC-MIB DEFINITIONS ::= BEGIN
|
||||||
|
-- to : END
|
||||||
|
|
||||||
|
RFC1158-MIB DEFINITIONS ::= BEGIN
|
||||||
|
DisplayString ::=
|
||||||
|
OCTET STRING (SIZE(0..255))
|
||||||
|
END
|
708
tests/data/bintec-beip-plus.json
Normal file
708
tests/data/bintec-beip-plus.json
Normal file
@@ -0,0 +1,708 @@
|
|||||||
|
{
|
||||||
|
"os": {
|
||||||
|
"discovery": {
|
||||||
|
"devices": [
|
||||||
|
{
|
||||||
|
"sysName": "<private>",
|
||||||
|
"sysObjectID": ".1.3.6.1.4.1.272.4.201.66.69.50.48.0.0",
|
||||||
|
"sysDescr": "be.IP plus",
|
||||||
|
"sysContact": "<private>",
|
||||||
|
"version": "V.10.2.9.102",
|
||||||
|
"hardware": "be.IP plus 1.0",
|
||||||
|
"features": null,
|
||||||
|
"os": "bintec-beip-plus",
|
||||||
|
"type": "network",
|
||||||
|
"serial": "BE2CAM019320050",
|
||||||
|
"icon": "bintec.png",
|
||||||
|
"location": "<private>"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"poller": "matches discovery"
|
||||||
|
},
|
||||||
|
"ports": {
|
||||||
|
"discovery": {
|
||||||
|
"ports": [
|
||||||
|
{
|
||||||
|
"port_descr_type": null,
|
||||||
|
"port_descr_descr": null,
|
||||||
|
"port_descr_circuit": null,
|
||||||
|
"port_descr_speed": null,
|
||||||
|
"port_descr_notes": null,
|
||||||
|
"ifDescr": "REFUSE",
|
||||||
|
"ifName": "REFUSE",
|
||||||
|
"portName": null,
|
||||||
|
"ifIndex": 0,
|
||||||
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
|
"ifConnectorPresent": null,
|
||||||
|
"ifPromiscuousMode": null,
|
||||||
|
"ifOperStatus": "up",
|
||||||
|
"ifOperStatus_prev": null,
|
||||||
|
"ifAdminStatus": null,
|
||||||
|
"ifAdminStatus_prev": null,
|
||||||
|
"ifDuplex": null,
|
||||||
|
"ifMtu": null,
|
||||||
|
"ifType": "other",
|
||||||
|
"ifAlias": "REFUSE",
|
||||||
|
"ifPhysAddress": null,
|
||||||
|
"ifHardType": null,
|
||||||
|
"ifLastChange": 0,
|
||||||
|
"ifVlan": "",
|
||||||
|
"ifTrunk": null,
|
||||||
|
"counter_in": null,
|
||||||
|
"counter_out": null,
|
||||||
|
"ignore": 0,
|
||||||
|
"disabled": 0,
|
||||||
|
"detailed": 0,
|
||||||
|
"deleted": 0,
|
||||||
|
"pagpOperationMode": null,
|
||||||
|
"pagpPortState": null,
|
||||||
|
"pagpPartnerDeviceId": null,
|
||||||
|
"pagpPartnerLearnMethod": null,
|
||||||
|
"pagpPartnerIfIndex": null,
|
||||||
|
"pagpPartnerGroupIfIndex": null,
|
||||||
|
"pagpPartnerDeviceName": null,
|
||||||
|
"pagpEthcOperationMode": null,
|
||||||
|
"pagpDeviceId": null,
|
||||||
|
"pagpGroupIfIndex": null,
|
||||||
|
"ifInUcastPkts": null,
|
||||||
|
"ifInUcastPkts_prev": null,
|
||||||
|
"ifInUcastPkts_delta": null,
|
||||||
|
"ifInUcastPkts_rate": null,
|
||||||
|
"ifOutUcastPkts": null,
|
||||||
|
"ifOutUcastPkts_prev": null,
|
||||||
|
"ifOutUcastPkts_delta": null,
|
||||||
|
"ifOutUcastPkts_rate": null,
|
||||||
|
"ifInErrors": null,
|
||||||
|
"ifInErrors_prev": null,
|
||||||
|
"ifInErrors_delta": null,
|
||||||
|
"ifInErrors_rate": null,
|
||||||
|
"ifOutErrors": null,
|
||||||
|
"ifOutErrors_prev": null,
|
||||||
|
"ifOutErrors_delta": null,
|
||||||
|
"ifOutErrors_rate": null,
|
||||||
|
"ifInOctets": null,
|
||||||
|
"ifInOctets_prev": null,
|
||||||
|
"ifInOctets_delta": null,
|
||||||
|
"ifInOctets_rate": null,
|
||||||
|
"ifOutOctets": null,
|
||||||
|
"ifOutOctets_prev": null,
|
||||||
|
"ifOutOctets_delta": null,
|
||||||
|
"ifOutOctets_rate": null,
|
||||||
|
"poll_prev": null,
|
||||||
|
"ifInNUcastPkts": null,
|
||||||
|
"ifInNUcastPkts_prev": null,
|
||||||
|
"ifInNUcastPkts_delta": null,
|
||||||
|
"ifInNUcastPkts_rate": null,
|
||||||
|
"ifOutNUcastPkts": null,
|
||||||
|
"ifOutNUcastPkts_prev": null,
|
||||||
|
"ifOutNUcastPkts_delta": null,
|
||||||
|
"ifOutNUcastPkts_rate": null,
|
||||||
|
"ifInDiscards": null,
|
||||||
|
"ifInDiscards_prev": null,
|
||||||
|
"ifInDiscards_delta": null,
|
||||||
|
"ifInDiscards_rate": null,
|
||||||
|
"ifOutDiscards": null,
|
||||||
|
"ifOutDiscards_prev": null,
|
||||||
|
"ifOutDiscards_delta": null,
|
||||||
|
"ifOutDiscards_rate": null,
|
||||||
|
"ifInUnknownProtos": null,
|
||||||
|
"ifInUnknownProtos_prev": null,
|
||||||
|
"ifInUnknownProtos_delta": null,
|
||||||
|
"ifInUnknownProtos_rate": null,
|
||||||
|
"ifInBroadcastPkts": null,
|
||||||
|
"ifInBroadcastPkts_prev": null,
|
||||||
|
"ifInBroadcastPkts_delta": null,
|
||||||
|
"ifInBroadcastPkts_rate": null,
|
||||||
|
"ifOutBroadcastPkts": null,
|
||||||
|
"ifOutBroadcastPkts_prev": null,
|
||||||
|
"ifOutBroadcastPkts_delta": null,
|
||||||
|
"ifOutBroadcastPkts_rate": null,
|
||||||
|
"ifInMulticastPkts": null,
|
||||||
|
"ifInMulticastPkts_prev": null,
|
||||||
|
"ifInMulticastPkts_delta": null,
|
||||||
|
"ifInMulticastPkts_rate": null,
|
||||||
|
"ifOutMulticastPkts": null,
|
||||||
|
"ifOutMulticastPkts_prev": null,
|
||||||
|
"ifOutMulticastPkts_delta": null,
|
||||||
|
"ifOutMulticastPkts_rate": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"port_descr_type": null,
|
||||||
|
"port_descr_descr": null,
|
||||||
|
"port_descr_circuit": null,
|
||||||
|
"port_descr_speed": null,
|
||||||
|
"port_descr_notes": null,
|
||||||
|
"ifDescr": "LOCAL",
|
||||||
|
"ifName": "LOCAL",
|
||||||
|
"portName": null,
|
||||||
|
"ifIndex": 1,
|
||||||
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
|
"ifConnectorPresent": null,
|
||||||
|
"ifPromiscuousMode": null,
|
||||||
|
"ifOperStatus": "up",
|
||||||
|
"ifOperStatus_prev": null,
|
||||||
|
"ifAdminStatus": null,
|
||||||
|
"ifAdminStatus_prev": null,
|
||||||
|
"ifDuplex": null,
|
||||||
|
"ifMtu": null,
|
||||||
|
"ifType": "other",
|
||||||
|
"ifAlias": "LOCAL",
|
||||||
|
"ifPhysAddress": null,
|
||||||
|
"ifHardType": null,
|
||||||
|
"ifLastChange": 0,
|
||||||
|
"ifVlan": "",
|
||||||
|
"ifTrunk": null,
|
||||||
|
"counter_in": null,
|
||||||
|
"counter_out": null,
|
||||||
|
"ignore": 0,
|
||||||
|
"disabled": 0,
|
||||||
|
"detailed": 0,
|
||||||
|
"deleted": 0,
|
||||||
|
"pagpOperationMode": null,
|
||||||
|
"pagpPortState": null,
|
||||||
|
"pagpPartnerDeviceId": null,
|
||||||
|
"pagpPartnerLearnMethod": null,
|
||||||
|
"pagpPartnerIfIndex": null,
|
||||||
|
"pagpPartnerGroupIfIndex": null,
|
||||||
|
"pagpPartnerDeviceName": null,
|
||||||
|
"pagpEthcOperationMode": null,
|
||||||
|
"pagpDeviceId": null,
|
||||||
|
"pagpGroupIfIndex": null,
|
||||||
|
"ifInUcastPkts": null,
|
||||||
|
"ifInUcastPkts_prev": null,
|
||||||
|
"ifInUcastPkts_delta": null,
|
||||||
|
"ifInUcastPkts_rate": null,
|
||||||
|
"ifOutUcastPkts": null,
|
||||||
|
"ifOutUcastPkts_prev": null,
|
||||||
|
"ifOutUcastPkts_delta": null,
|
||||||
|
"ifOutUcastPkts_rate": null,
|
||||||
|
"ifInErrors": null,
|
||||||
|
"ifInErrors_prev": null,
|
||||||
|
"ifInErrors_delta": null,
|
||||||
|
"ifInErrors_rate": null,
|
||||||
|
"ifOutErrors": null,
|
||||||
|
"ifOutErrors_prev": null,
|
||||||
|
"ifOutErrors_delta": null,
|
||||||
|
"ifOutErrors_rate": null,
|
||||||
|
"ifInOctets": null,
|
||||||
|
"ifInOctets_prev": null,
|
||||||
|
"ifInOctets_delta": null,
|
||||||
|
"ifInOctets_rate": null,
|
||||||
|
"ifOutOctets": null,
|
||||||
|
"ifOutOctets_prev": null,
|
||||||
|
"ifOutOctets_delta": null,
|
||||||
|
"ifOutOctets_rate": null,
|
||||||
|
"poll_prev": null,
|
||||||
|
"ifInNUcastPkts": null,
|
||||||
|
"ifInNUcastPkts_prev": null,
|
||||||
|
"ifInNUcastPkts_delta": null,
|
||||||
|
"ifInNUcastPkts_rate": null,
|
||||||
|
"ifOutNUcastPkts": null,
|
||||||
|
"ifOutNUcastPkts_prev": null,
|
||||||
|
"ifOutNUcastPkts_delta": null,
|
||||||
|
"ifOutNUcastPkts_rate": null,
|
||||||
|
"ifInDiscards": null,
|
||||||
|
"ifInDiscards_prev": null,
|
||||||
|
"ifInDiscards_delta": null,
|
||||||
|
"ifInDiscards_rate": null,
|
||||||
|
"ifOutDiscards": null,
|
||||||
|
"ifOutDiscards_prev": null,
|
||||||
|
"ifOutDiscards_delta": null,
|
||||||
|
"ifOutDiscards_rate": null,
|
||||||
|
"ifInUnknownProtos": null,
|
||||||
|
"ifInUnknownProtos_prev": null,
|
||||||
|
"ifInUnknownProtos_delta": null,
|
||||||
|
"ifInUnknownProtos_rate": null,
|
||||||
|
"ifInBroadcastPkts": null,
|
||||||
|
"ifInBroadcastPkts_prev": null,
|
||||||
|
"ifInBroadcastPkts_delta": null,
|
||||||
|
"ifInBroadcastPkts_rate": null,
|
||||||
|
"ifOutBroadcastPkts": null,
|
||||||
|
"ifOutBroadcastPkts_prev": null,
|
||||||
|
"ifOutBroadcastPkts_delta": null,
|
||||||
|
"ifOutBroadcastPkts_rate": null,
|
||||||
|
"ifInMulticastPkts": null,
|
||||||
|
"ifInMulticastPkts_prev": null,
|
||||||
|
"ifInMulticastPkts_delta": null,
|
||||||
|
"ifInMulticastPkts_rate": null,
|
||||||
|
"ifOutMulticastPkts": null,
|
||||||
|
"ifOutMulticastPkts_prev": null,
|
||||||
|
"ifOutMulticastPkts_delta": null,
|
||||||
|
"ifOutMulticastPkts_rate": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"port_descr_type": null,
|
||||||
|
"port_descr_descr": null,
|
||||||
|
"port_descr_circuit": null,
|
||||||
|
"port_descr_speed": null,
|
||||||
|
"port_descr_notes": null,
|
||||||
|
"ifDescr": "IGNORE",
|
||||||
|
"ifName": "IGNORE",
|
||||||
|
"portName": null,
|
||||||
|
"ifIndex": 2,
|
||||||
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
|
"ifConnectorPresent": null,
|
||||||
|
"ifPromiscuousMode": null,
|
||||||
|
"ifOperStatus": "up",
|
||||||
|
"ifOperStatus_prev": null,
|
||||||
|
"ifAdminStatus": null,
|
||||||
|
"ifAdminStatus_prev": null,
|
||||||
|
"ifDuplex": null,
|
||||||
|
"ifMtu": null,
|
||||||
|
"ifType": "other",
|
||||||
|
"ifAlias": "IGNORE",
|
||||||
|
"ifPhysAddress": null,
|
||||||
|
"ifHardType": null,
|
||||||
|
"ifLastChange": 0,
|
||||||
|
"ifVlan": "",
|
||||||
|
"ifTrunk": null,
|
||||||
|
"counter_in": null,
|
||||||
|
"counter_out": null,
|
||||||
|
"ignore": 0,
|
||||||
|
"disabled": 0,
|
||||||
|
"detailed": 0,
|
||||||
|
"deleted": 0,
|
||||||
|
"pagpOperationMode": null,
|
||||||
|
"pagpPortState": null,
|
||||||
|
"pagpPartnerDeviceId": null,
|
||||||
|
"pagpPartnerLearnMethod": null,
|
||||||
|
"pagpPartnerIfIndex": null,
|
||||||
|
"pagpPartnerGroupIfIndex": null,
|
||||||
|
"pagpPartnerDeviceName": null,
|
||||||
|
"pagpEthcOperationMode": null,
|
||||||
|
"pagpDeviceId": null,
|
||||||
|
"pagpGroupIfIndex": null,
|
||||||
|
"ifInUcastPkts": null,
|
||||||
|
"ifInUcastPkts_prev": null,
|
||||||
|
"ifInUcastPkts_delta": null,
|
||||||
|
"ifInUcastPkts_rate": null,
|
||||||
|
"ifOutUcastPkts": null,
|
||||||
|
"ifOutUcastPkts_prev": null,
|
||||||
|
"ifOutUcastPkts_delta": null,
|
||||||
|
"ifOutUcastPkts_rate": null,
|
||||||
|
"ifInErrors": null,
|
||||||
|
"ifInErrors_prev": null,
|
||||||
|
"ifInErrors_delta": null,
|
||||||
|
"ifInErrors_rate": null,
|
||||||
|
"ifOutErrors": null,
|
||||||
|
"ifOutErrors_prev": null,
|
||||||
|
"ifOutErrors_delta": null,
|
||||||
|
"ifOutErrors_rate": null,
|
||||||
|
"ifInOctets": null,
|
||||||
|
"ifInOctets_prev": null,
|
||||||
|
"ifInOctets_delta": null,
|
||||||
|
"ifInOctets_rate": null,
|
||||||
|
"ifOutOctets": null,
|
||||||
|
"ifOutOctets_prev": null,
|
||||||
|
"ifOutOctets_delta": null,
|
||||||
|
"ifOutOctets_rate": null,
|
||||||
|
"poll_prev": null,
|
||||||
|
"ifInNUcastPkts": null,
|
||||||
|
"ifInNUcastPkts_prev": null,
|
||||||
|
"ifInNUcastPkts_delta": null,
|
||||||
|
"ifInNUcastPkts_rate": null,
|
||||||
|
"ifOutNUcastPkts": null,
|
||||||
|
"ifOutNUcastPkts_prev": null,
|
||||||
|
"ifOutNUcastPkts_delta": null,
|
||||||
|
"ifOutNUcastPkts_rate": null,
|
||||||
|
"ifInDiscards": null,
|
||||||
|
"ifInDiscards_prev": null,
|
||||||
|
"ifInDiscards_delta": null,
|
||||||
|
"ifInDiscards_rate": null,
|
||||||
|
"ifOutDiscards": null,
|
||||||
|
"ifOutDiscards_prev": null,
|
||||||
|
"ifOutDiscards_delta": null,
|
||||||
|
"ifOutDiscards_rate": null,
|
||||||
|
"ifInUnknownProtos": null,
|
||||||
|
"ifInUnknownProtos_prev": null,
|
||||||
|
"ifInUnknownProtos_delta": null,
|
||||||
|
"ifInUnknownProtos_rate": null,
|
||||||
|
"ifInBroadcastPkts": null,
|
||||||
|
"ifInBroadcastPkts_prev": null,
|
||||||
|
"ifInBroadcastPkts_delta": null,
|
||||||
|
"ifInBroadcastPkts_rate": null,
|
||||||
|
"ifOutBroadcastPkts": null,
|
||||||
|
"ifOutBroadcastPkts_prev": null,
|
||||||
|
"ifOutBroadcastPkts_delta": null,
|
||||||
|
"ifOutBroadcastPkts_rate": null,
|
||||||
|
"ifInMulticastPkts": null,
|
||||||
|
"ifInMulticastPkts_prev": null,
|
||||||
|
"ifInMulticastPkts_delta": null,
|
||||||
|
"ifInMulticastPkts_rate": null,
|
||||||
|
"ifOutMulticastPkts": null,
|
||||||
|
"ifOutMulticastPkts_prev": null,
|
||||||
|
"ifOutMulticastPkts_delta": null,
|
||||||
|
"ifOutMulticastPkts_rate": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"poller": {
|
||||||
|
"ports": [
|
||||||
|
{
|
||||||
|
"port_descr_type": null,
|
||||||
|
"port_descr_descr": null,
|
||||||
|
"port_descr_circuit": null,
|
||||||
|
"port_descr_speed": null,
|
||||||
|
"port_descr_notes": null,
|
||||||
|
"ifDescr": "REFUSE",
|
||||||
|
"ifName": "REFUSE",
|
||||||
|
"portName": null,
|
||||||
|
"ifIndex": 0,
|
||||||
|
"ifSpeed": 0,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
|
"ifConnectorPresent": null,
|
||||||
|
"ifPromiscuousMode": null,
|
||||||
|
"ifOperStatus": "up",
|
||||||
|
"ifOperStatus_prev": "up",
|
||||||
|
"ifAdminStatus": "up",
|
||||||
|
"ifAdminStatus_prev": null,
|
||||||
|
"ifDuplex": null,
|
||||||
|
"ifMtu": 8192,
|
||||||
|
"ifType": "other",
|
||||||
|
"ifAlias": "REFUSE",
|
||||||
|
"ifPhysAddress": null,
|
||||||
|
"ifHardType": null,
|
||||||
|
"ifLastChange": 0,
|
||||||
|
"ifVlan": "",
|
||||||
|
"ifTrunk": null,
|
||||||
|
"counter_in": null,
|
||||||
|
"counter_out": null,
|
||||||
|
"ignore": 0,
|
||||||
|
"disabled": 0,
|
||||||
|
"detailed": 0,
|
||||||
|
"deleted": 0,
|
||||||
|
"pagpOperationMode": null,
|
||||||
|
"pagpPortState": null,
|
||||||
|
"pagpPartnerDeviceId": null,
|
||||||
|
"pagpPartnerLearnMethod": null,
|
||||||
|
"pagpPartnerIfIndex": null,
|
||||||
|
"pagpPartnerGroupIfIndex": null,
|
||||||
|
"pagpPartnerDeviceName": null,
|
||||||
|
"pagpEthcOperationMode": null,
|
||||||
|
"pagpDeviceId": null,
|
||||||
|
"pagpGroupIfIndex": null,
|
||||||
|
"ifInUcastPkts": 0,
|
||||||
|
"ifInUcastPkts_prev": 0,
|
||||||
|
"ifInUcastPkts_delta": null,
|
||||||
|
"ifInUcastPkts_rate": null,
|
||||||
|
"ifOutUcastPkts": 0,
|
||||||
|
"ifOutUcastPkts_prev": 0,
|
||||||
|
"ifOutUcastPkts_delta": null,
|
||||||
|
"ifOutUcastPkts_rate": null,
|
||||||
|
"ifInErrors": 0,
|
||||||
|
"ifInErrors_prev": 0,
|
||||||
|
"ifInErrors_delta": null,
|
||||||
|
"ifInErrors_rate": null,
|
||||||
|
"ifOutErrors": 0,
|
||||||
|
"ifOutErrors_prev": 0,
|
||||||
|
"ifOutErrors_delta": null,
|
||||||
|
"ifOutErrors_rate": null,
|
||||||
|
"ifInOctets": 0,
|
||||||
|
"ifInOctets_prev": 0,
|
||||||
|
"ifInOctets_delta": null,
|
||||||
|
"ifInOctets_rate": null,
|
||||||
|
"ifOutOctets": 0,
|
||||||
|
"ifOutOctets_prev": 0,
|
||||||
|
"ifOutOctets_delta": null,
|
||||||
|
"ifOutOctets_rate": null,
|
||||||
|
"poll_prev": null,
|
||||||
|
"ifInNUcastPkts": 0,
|
||||||
|
"ifInNUcastPkts_prev": 0,
|
||||||
|
"ifInNUcastPkts_delta": null,
|
||||||
|
"ifInNUcastPkts_rate": null,
|
||||||
|
"ifOutNUcastPkts": 0,
|
||||||
|
"ifOutNUcastPkts_prev": 0,
|
||||||
|
"ifOutNUcastPkts_delta": null,
|
||||||
|
"ifOutNUcastPkts_rate": null,
|
||||||
|
"ifInDiscards": 0,
|
||||||
|
"ifInDiscards_prev": 0,
|
||||||
|
"ifInDiscards_delta": null,
|
||||||
|
"ifInDiscards_rate": null,
|
||||||
|
"ifOutDiscards": 0,
|
||||||
|
"ifOutDiscards_prev": 0,
|
||||||
|
"ifOutDiscards_delta": null,
|
||||||
|
"ifOutDiscards_rate": null,
|
||||||
|
"ifInUnknownProtos": 0,
|
||||||
|
"ifInUnknownProtos_prev": 0,
|
||||||
|
"ifInUnknownProtos_delta": null,
|
||||||
|
"ifInUnknownProtos_rate": null,
|
||||||
|
"ifInBroadcastPkts": 0,
|
||||||
|
"ifInBroadcastPkts_prev": 0,
|
||||||
|
"ifInBroadcastPkts_delta": null,
|
||||||
|
"ifInBroadcastPkts_rate": null,
|
||||||
|
"ifOutBroadcastPkts": 0,
|
||||||
|
"ifOutBroadcastPkts_prev": 0,
|
||||||
|
"ifOutBroadcastPkts_delta": null,
|
||||||
|
"ifOutBroadcastPkts_rate": null,
|
||||||
|
"ifInMulticastPkts": 0,
|
||||||
|
"ifInMulticastPkts_prev": 0,
|
||||||
|
"ifInMulticastPkts_delta": null,
|
||||||
|
"ifInMulticastPkts_rate": null,
|
||||||
|
"ifOutMulticastPkts": 0,
|
||||||
|
"ifOutMulticastPkts_prev": 0,
|
||||||
|
"ifOutMulticastPkts_delta": null,
|
||||||
|
"ifOutMulticastPkts_rate": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"port_descr_type": null,
|
||||||
|
"port_descr_descr": null,
|
||||||
|
"port_descr_circuit": null,
|
||||||
|
"port_descr_speed": null,
|
||||||
|
"port_descr_notes": null,
|
||||||
|
"ifDescr": "LOCAL",
|
||||||
|
"ifName": "LOCAL",
|
||||||
|
"portName": null,
|
||||||
|
"ifIndex": 1,
|
||||||
|
"ifSpeed": 0,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
|
"ifConnectorPresent": null,
|
||||||
|
"ifPromiscuousMode": null,
|
||||||
|
"ifOperStatus": "up",
|
||||||
|
"ifOperStatus_prev": "up",
|
||||||
|
"ifAdminStatus": "up",
|
||||||
|
"ifAdminStatus_prev": null,
|
||||||
|
"ifDuplex": null,
|
||||||
|
"ifMtu": 8192,
|
||||||
|
"ifType": "other",
|
||||||
|
"ifAlias": "LOCAL",
|
||||||
|
"ifPhysAddress": null,
|
||||||
|
"ifHardType": null,
|
||||||
|
"ifLastChange": 0,
|
||||||
|
"ifVlan": "",
|
||||||
|
"ifTrunk": null,
|
||||||
|
"counter_in": null,
|
||||||
|
"counter_out": null,
|
||||||
|
"ignore": 0,
|
||||||
|
"disabled": 0,
|
||||||
|
"detailed": 0,
|
||||||
|
"deleted": 0,
|
||||||
|
"pagpOperationMode": null,
|
||||||
|
"pagpPortState": null,
|
||||||
|
"pagpPartnerDeviceId": null,
|
||||||
|
"pagpPartnerLearnMethod": null,
|
||||||
|
"pagpPartnerIfIndex": null,
|
||||||
|
"pagpPartnerGroupIfIndex": null,
|
||||||
|
"pagpPartnerDeviceName": null,
|
||||||
|
"pagpEthcOperationMode": null,
|
||||||
|
"pagpDeviceId": null,
|
||||||
|
"pagpGroupIfIndex": null,
|
||||||
|
"ifInUcastPkts": 0,
|
||||||
|
"ifInUcastPkts_prev": 0,
|
||||||
|
"ifInUcastPkts_delta": null,
|
||||||
|
"ifInUcastPkts_rate": null,
|
||||||
|
"ifOutUcastPkts": 0,
|
||||||
|
"ifOutUcastPkts_prev": 0,
|
||||||
|
"ifOutUcastPkts_delta": null,
|
||||||
|
"ifOutUcastPkts_rate": null,
|
||||||
|
"ifInErrors": 0,
|
||||||
|
"ifInErrors_prev": 0,
|
||||||
|
"ifInErrors_delta": null,
|
||||||
|
"ifInErrors_rate": null,
|
||||||
|
"ifOutErrors": 0,
|
||||||
|
"ifOutErrors_prev": 0,
|
||||||
|
"ifOutErrors_delta": null,
|
||||||
|
"ifOutErrors_rate": null,
|
||||||
|
"ifInOctets": 0,
|
||||||
|
"ifInOctets_prev": 0,
|
||||||
|
"ifInOctets_delta": null,
|
||||||
|
"ifInOctets_rate": null,
|
||||||
|
"ifOutOctets": 0,
|
||||||
|
"ifOutOctets_prev": 0,
|
||||||
|
"ifOutOctets_delta": null,
|
||||||
|
"ifOutOctets_rate": null,
|
||||||
|
"poll_prev": null,
|
||||||
|
"ifInNUcastPkts": 0,
|
||||||
|
"ifInNUcastPkts_prev": 0,
|
||||||
|
"ifInNUcastPkts_delta": null,
|
||||||
|
"ifInNUcastPkts_rate": null,
|
||||||
|
"ifOutNUcastPkts": 0,
|
||||||
|
"ifOutNUcastPkts_prev": 0,
|
||||||
|
"ifOutNUcastPkts_delta": null,
|
||||||
|
"ifOutNUcastPkts_rate": null,
|
||||||
|
"ifInDiscards": 0,
|
||||||
|
"ifInDiscards_prev": 0,
|
||||||
|
"ifInDiscards_delta": null,
|
||||||
|
"ifInDiscards_rate": null,
|
||||||
|
"ifOutDiscards": 0,
|
||||||
|
"ifOutDiscards_prev": 0,
|
||||||
|
"ifOutDiscards_delta": null,
|
||||||
|
"ifOutDiscards_rate": null,
|
||||||
|
"ifInUnknownProtos": 0,
|
||||||
|
"ifInUnknownProtos_prev": 0,
|
||||||
|
"ifInUnknownProtos_delta": null,
|
||||||
|
"ifInUnknownProtos_rate": null,
|
||||||
|
"ifInBroadcastPkts": 0,
|
||||||
|
"ifInBroadcastPkts_prev": 0,
|
||||||
|
"ifInBroadcastPkts_delta": null,
|
||||||
|
"ifInBroadcastPkts_rate": null,
|
||||||
|
"ifOutBroadcastPkts": 0,
|
||||||
|
"ifOutBroadcastPkts_prev": 0,
|
||||||
|
"ifOutBroadcastPkts_delta": null,
|
||||||
|
"ifOutBroadcastPkts_rate": null,
|
||||||
|
"ifInMulticastPkts": 0,
|
||||||
|
"ifInMulticastPkts_prev": 0,
|
||||||
|
"ifInMulticastPkts_delta": null,
|
||||||
|
"ifInMulticastPkts_rate": null,
|
||||||
|
"ifOutMulticastPkts": 0,
|
||||||
|
"ifOutMulticastPkts_prev": 0,
|
||||||
|
"ifOutMulticastPkts_delta": null,
|
||||||
|
"ifOutMulticastPkts_rate": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"port_descr_type": null,
|
||||||
|
"port_descr_descr": null,
|
||||||
|
"port_descr_circuit": null,
|
||||||
|
"port_descr_speed": null,
|
||||||
|
"port_descr_notes": null,
|
||||||
|
"ifDescr": "IGNORE",
|
||||||
|
"ifName": "IGNORE",
|
||||||
|
"portName": null,
|
||||||
|
"ifIndex": 2,
|
||||||
|
"ifSpeed": 0,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
|
"ifConnectorPresent": null,
|
||||||
|
"ifPromiscuousMode": null,
|
||||||
|
"ifOperStatus": "up",
|
||||||
|
"ifOperStatus_prev": "up",
|
||||||
|
"ifAdminStatus": "up",
|
||||||
|
"ifAdminStatus_prev": null,
|
||||||
|
"ifDuplex": null,
|
||||||
|
"ifMtu": 8192,
|
||||||
|
"ifType": "other",
|
||||||
|
"ifAlias": "IGNORE",
|
||||||
|
"ifPhysAddress": null,
|
||||||
|
"ifHardType": null,
|
||||||
|
"ifLastChange": 0,
|
||||||
|
"ifVlan": "",
|
||||||
|
"ifTrunk": null,
|
||||||
|
"counter_in": null,
|
||||||
|
"counter_out": null,
|
||||||
|
"ignore": 0,
|
||||||
|
"disabled": 0,
|
||||||
|
"detailed": 0,
|
||||||
|
"deleted": 0,
|
||||||
|
"pagpOperationMode": null,
|
||||||
|
"pagpPortState": null,
|
||||||
|
"pagpPartnerDeviceId": null,
|
||||||
|
"pagpPartnerLearnMethod": null,
|
||||||
|
"pagpPartnerIfIndex": null,
|
||||||
|
"pagpPartnerGroupIfIndex": null,
|
||||||
|
"pagpPartnerDeviceName": null,
|
||||||
|
"pagpEthcOperationMode": null,
|
||||||
|
"pagpDeviceId": null,
|
||||||
|
"pagpGroupIfIndex": null,
|
||||||
|
"ifInUcastPkts": 0,
|
||||||
|
"ifInUcastPkts_prev": 0,
|
||||||
|
"ifInUcastPkts_delta": null,
|
||||||
|
"ifInUcastPkts_rate": null,
|
||||||
|
"ifOutUcastPkts": 0,
|
||||||
|
"ifOutUcastPkts_prev": 0,
|
||||||
|
"ifOutUcastPkts_delta": null,
|
||||||
|
"ifOutUcastPkts_rate": null,
|
||||||
|
"ifInErrors": 0,
|
||||||
|
"ifInErrors_prev": 0,
|
||||||
|
"ifInErrors_delta": null,
|
||||||
|
"ifInErrors_rate": null,
|
||||||
|
"ifOutErrors": 0,
|
||||||
|
"ifOutErrors_prev": 0,
|
||||||
|
"ifOutErrors_delta": null,
|
||||||
|
"ifOutErrors_rate": null,
|
||||||
|
"ifInOctets": 0,
|
||||||
|
"ifInOctets_prev": 0,
|
||||||
|
"ifInOctets_delta": null,
|
||||||
|
"ifInOctets_rate": null,
|
||||||
|
"ifOutOctets": 0,
|
||||||
|
"ifOutOctets_prev": 0,
|
||||||
|
"ifOutOctets_delta": null,
|
||||||
|
"ifOutOctets_rate": null,
|
||||||
|
"poll_prev": null,
|
||||||
|
"ifInNUcastPkts": 0,
|
||||||
|
"ifInNUcastPkts_prev": 0,
|
||||||
|
"ifInNUcastPkts_delta": null,
|
||||||
|
"ifInNUcastPkts_rate": null,
|
||||||
|
"ifOutNUcastPkts": 0,
|
||||||
|
"ifOutNUcastPkts_prev": 0,
|
||||||
|
"ifOutNUcastPkts_delta": null,
|
||||||
|
"ifOutNUcastPkts_rate": null,
|
||||||
|
"ifInDiscards": 0,
|
||||||
|
"ifInDiscards_prev": 0,
|
||||||
|
"ifInDiscards_delta": null,
|
||||||
|
"ifInDiscards_rate": null,
|
||||||
|
"ifOutDiscards": 0,
|
||||||
|
"ifOutDiscards_prev": 0,
|
||||||
|
"ifOutDiscards_delta": null,
|
||||||
|
"ifOutDiscards_rate": null,
|
||||||
|
"ifInUnknownProtos": 0,
|
||||||
|
"ifInUnknownProtos_prev": 0,
|
||||||
|
"ifInUnknownProtos_delta": null,
|
||||||
|
"ifInUnknownProtos_rate": null,
|
||||||
|
"ifInBroadcastPkts": 0,
|
||||||
|
"ifInBroadcastPkts_prev": 0,
|
||||||
|
"ifInBroadcastPkts_delta": null,
|
||||||
|
"ifInBroadcastPkts_rate": null,
|
||||||
|
"ifOutBroadcastPkts": 0,
|
||||||
|
"ifOutBroadcastPkts_prev": 0,
|
||||||
|
"ifOutBroadcastPkts_delta": null,
|
||||||
|
"ifOutBroadcastPkts_rate": null,
|
||||||
|
"ifInMulticastPkts": 0,
|
||||||
|
"ifInMulticastPkts_prev": 0,
|
||||||
|
"ifInMulticastPkts_delta": null,
|
||||||
|
"ifInMulticastPkts_rate": null,
|
||||||
|
"ifOutMulticastPkts": 0,
|
||||||
|
"ifOutMulticastPkts_prev": 0,
|
||||||
|
"ifOutMulticastPkts_delta": null,
|
||||||
|
"ifOutMulticastPkts_rate": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"processors": {
|
||||||
|
"discovery": {
|
||||||
|
"processors": [
|
||||||
|
{
|
||||||
|
"entPhysicalIndex": 0,
|
||||||
|
"hrDeviceIndex": 0,
|
||||||
|
"processor_oid": ".1.3.6.1.4.1.272.4.17.4.1.1.18.1.0",
|
||||||
|
"processor_index": "1.0",
|
||||||
|
"processor_type": "bintec-cpu",
|
||||||
|
"processor_usage": 5,
|
||||||
|
"processor_descr": "Load Average",
|
||||||
|
"processor_precision": -1,
|
||||||
|
"processor_perc_warn": 75
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"poller": "matches discovery"
|
||||||
|
},
|
||||||
|
"mempools": {
|
||||||
|
"discovery": {
|
||||||
|
"mempools": [
|
||||||
|
{
|
||||||
|
"mempool_index": "2.1",
|
||||||
|
"entPhysicalIndex": null,
|
||||||
|
"mempool_type": "bintec-beip-plus",
|
||||||
|
"mempool_class": "system",
|
||||||
|
"mempool_precision": 1,
|
||||||
|
"mempool_descr": "Main Memory",
|
||||||
|
"mempool_perc": 44,
|
||||||
|
"mempool_perc_oid": null,
|
||||||
|
"mempool_used": 59092461,
|
||||||
|
"mempool_used_oid": ".1.3.6.1.4.1.272.4.17.4.2.1.5.2.1",
|
||||||
|
"mempool_free": 75059731,
|
||||||
|
"mempool_free_oid": null,
|
||||||
|
"mempool_total": 134152192,
|
||||||
|
"mempool_total_oid": null,
|
||||||
|
"mempool_largestfree": null,
|
||||||
|
"mempool_lowestfree": null,
|
||||||
|
"mempool_deleted": 0,
|
||||||
|
"mempool_perc_warn": 90
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"poller": "matches discovery"
|
||||||
|
}
|
||||||
|
}
|
661
tests/snmpsim/bintec-beip-plus.snmprec
Normal file
661
tests/snmpsim/bintec-beip-plus.snmprec
Normal file
@@ -0,0 +1,661 @@
|
|||||||
|
1.3.6.1.2.1.1.1.0|4|be.IP plus
|
||||||
|
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.272.4.201.66.69.50.48.0.0
|
||||||
|
1.3.6.1.2.1.1.3.0|67|53679363
|
||||||
|
1.3.6.1.2.1.1.4.0|4|<private>
|
||||||
|
1.3.6.1.2.1.1.5.0|4|<private>
|
||||||
|
1.3.6.1.2.1.1.6.0|4|<private>
|
||||||
|
1.3.6.1.2.1.2.2.1.1.0|2|0
|
||||||
|
1.3.6.1.2.1.2.2.1.1.1|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.1.2|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.1.1000000|2|1000000
|
||||||
|
1.3.6.1.2.1.2.2.1.1.1010000|2|1010000
|
||||||
|
1.3.6.1.2.1.2.2.1.1.1020000|2|1020000
|
||||||
|
1.3.6.1.2.1.2.2.1.1.1030000|2|1030000
|
||||||
|
1.3.6.1.2.1.2.2.1.1.7100000|2|7100000
|
||||||
|
1.3.6.1.2.1.2.2.1.1.35600000|2|35600000
|
||||||
|
1.3.6.1.2.1.2.2.1.1.35600004|2|35600004
|
||||||
|
1.3.6.1.2.1.2.2.1.1.38100001|2|38100001
|
||||||
|
1.3.6.1.2.1.2.2.1.1.38100002|2|38100002
|
||||||
|
1.3.6.1.2.1.2.2.1.1.38100003|2|38100003
|
||||||
|
1.3.6.1.2.1.2.2.1.1.38100004|2|38100004
|
||||||
|
1.3.6.1.2.1.2.2.1.1.38100005|2|38100005
|
||||||
|
1.3.6.1.2.1.2.2.1.1.38100006|2|38100006
|
||||||
|
1.3.6.1.2.1.2.2.1.1.38100007|2|38100007
|
||||||
|
1.3.6.1.2.1.2.2.1.1.39000000|2|39000000
|
||||||
|
1.3.6.1.2.1.2.2.1.2.0|4|REFUSE
|
||||||
|
1.3.6.1.2.1.2.2.1.2.1|4|LOCAL
|
||||||
|
1.3.6.1.2.1.2.2.1.2.2|4|IGNORE
|
||||||
|
1.3.6.1.2.1.2.2.1.3.0|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.3.1|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.3.2|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.3.1000000|2|6
|
||||||
|
1.3.6.1.2.1.2.2.1.3.1010000|2|6
|
||||||
|
1.3.6.1.2.1.2.2.1.3.1020000|2|6
|
||||||
|
1.3.6.1.2.1.2.2.1.3.1030000|2|6
|
||||||
|
1.3.6.1.2.1.2.2.1.3.7100000|2|71
|
||||||
|
1.3.6.1.2.1.2.2.1.3.35600000|2|6
|
||||||
|
1.3.6.1.2.1.2.2.1.3.35600004|2|135
|
||||||
|
1.3.6.1.2.1.2.2.1.3.38100001|2|131
|
||||||
|
1.3.6.1.2.1.2.2.1.3.38100002|2|131
|
||||||
|
1.3.6.1.2.1.2.2.1.3.38100003|2|131
|
||||||
|
1.3.6.1.2.1.2.2.1.3.38100004|2|131
|
||||||
|
1.3.6.1.2.1.2.2.1.3.38100005|2|131
|
||||||
|
1.3.6.1.2.1.2.2.1.3.38100006|2|131
|
||||||
|
1.3.6.1.2.1.2.2.1.3.38100007|2|131
|
||||||
|
1.3.6.1.2.1.2.2.1.3.39000000|2|6
|
||||||
|
1.3.6.1.2.1.2.2.1.4.0|2|8192
|
||||||
|
1.3.6.1.2.1.2.2.1.4.1|2|8192
|
||||||
|
1.3.6.1.2.1.2.2.1.4.2|2|8192
|
||||||
|
1.3.6.1.2.1.2.2.1.4.1000000|2|1504
|
||||||
|
1.3.6.1.2.1.2.2.1.4.1010000|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.1020000|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.1030000|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.7100000|2|1504
|
||||||
|
1.3.6.1.2.1.2.2.1.4.35600000|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.35600004|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.38100001|2|1418
|
||||||
|
1.3.6.1.2.1.2.2.1.4.38100002|2|1411
|
||||||
|
1.3.6.1.2.1.2.2.1.4.38100003|2|1411
|
||||||
|
1.3.6.1.2.1.2.2.1.4.38100004|2|1418
|
||||||
|
1.3.6.1.2.1.2.2.1.4.38100005|2|1418
|
||||||
|
1.3.6.1.2.1.2.2.1.4.38100006|2|1411
|
||||||
|
1.3.6.1.2.1.2.2.1.4.38100007|2|1418
|
||||||
|
1.3.6.1.2.1.2.2.1.4.39000000|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.5.0|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.5.1|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.5.2|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.5.1000000|66|1000000000
|
||||||
|
1.3.6.1.2.1.2.2.1.5.1010000|66|10000000
|
||||||
|
1.3.6.1.2.1.2.2.1.5.1020000|66|1000000000
|
||||||
|
1.3.6.1.2.1.2.2.1.5.1030000|66|1000000000
|
||||||
|
1.3.6.1.2.1.2.2.1.5.7100000|66|10000000
|
||||||
|
1.3.6.1.2.1.2.2.1.5.35600000|66|10000000
|
||||||
|
1.3.6.1.2.1.2.2.1.5.35600004|66|10000000
|
||||||
|
1.3.6.1.2.1.2.2.1.5.38100001|66|10000000
|
||||||
|
1.3.6.1.2.1.2.2.1.5.38100002|66|10000000
|
||||||
|
1.3.6.1.2.1.2.2.1.5.38100003|66|10000000
|
||||||
|
1.3.6.1.2.1.2.2.1.5.38100004|66|10000000
|
||||||
|
1.3.6.1.2.1.2.2.1.5.38100005|66|10000000
|
||||||
|
1.3.6.1.2.1.2.2.1.5.38100006|66|10000000
|
||||||
|
1.3.6.1.2.1.2.2.1.5.38100007|66|10000000
|
||||||
|
1.3.6.1.2.1.2.2.1.5.39000000|66|1000000000
|
||||||
|
1.3.6.1.2.1.2.2.1.6.0|4|
|
||||||
|
1.3.6.1.2.1.2.2.1.6.1|4|
|
||||||
|
1.3.6.1.2.1.2.2.1.6.2|4|
|
||||||
|
1.3.6.1.2.1.2.2.1.6.1000000|4x|00094FC2A12C
|
||||||
|
1.3.6.1.2.1.2.2.1.6.1010000|4x|00094FC2A12D
|
||||||
|
1.3.6.1.2.1.2.2.1.6.1020000|4x|00094FC2A12E
|
||||||
|
1.3.6.1.2.1.2.2.1.6.1030000|4x|00094FC2A12F
|
||||||
|
1.3.6.1.2.1.2.2.1.6.7100000|4x|00094FC2A135
|
||||||
|
1.3.6.1.2.1.2.2.1.6.35600000|4x|00094F42C468
|
||||||
|
1.3.6.1.2.1.2.2.1.6.35600004|4x|00094FC2A134
|
||||||
|
1.3.6.1.2.1.2.2.1.6.38100001|4|
|
||||||
|
1.3.6.1.2.1.2.2.1.6.38100002|4|
|
||||||
|
1.3.6.1.2.1.2.2.1.6.38100003|4|
|
||||||
|
1.3.6.1.2.1.2.2.1.6.38100004|4|
|
||||||
|
1.3.6.1.2.1.2.2.1.6.38100005|4|
|
||||||
|
1.3.6.1.2.1.2.2.1.6.38100006|4|
|
||||||
|
1.3.6.1.2.1.2.2.1.6.38100007|4|
|
||||||
|
1.3.6.1.2.1.2.2.1.6.39000000|4x|00094FC2A12C
|
||||||
|
1.3.6.1.2.1.2.2.1.7.0|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.1|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.2|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.1000000|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.1010000|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.1020000|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.1030000|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.7100000|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.35600000|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.35600004|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.38100001|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.38100002|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.38100003|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.38100004|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.38100005|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.38100006|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.38100007|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.39000000|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.8.0|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.8.1|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.8.2|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.8.1000000|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.8.1010000|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.1020000|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.8.1030000|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.7100000|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.35600000|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.35600004|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.38100001|2|5
|
||||||
|
1.3.6.1.2.1.2.2.1.8.38100002|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.8.38100003|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.8.38100004|2|5
|
||||||
|
1.3.6.1.2.1.2.2.1.8.38100005|2|5
|
||||||
|
1.3.6.1.2.1.2.2.1.8.38100006|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.8.38100007|2|5
|
||||||
|
1.3.6.1.2.1.2.2.1.8.39000000|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.9.0|67|0
|
||||||
|
1.3.6.1.2.1.2.2.1.9.1|67|0
|
||||||
|
1.3.6.1.2.1.2.2.1.9.2|67|0
|
||||||
|
1.3.6.1.2.1.2.2.1.9.1000000|67|692
|
||||||
|
1.3.6.1.2.1.2.2.1.9.1010000|67|689
|
||||||
|
1.3.6.1.2.1.2.2.1.9.1020000|67|690
|
||||||
|
1.3.6.1.2.1.2.2.1.9.1030000|67|52183720
|
||||||
|
1.3.6.1.2.1.2.2.1.9.7100000|67|1628
|
||||||
|
1.3.6.1.2.1.2.2.1.9.35600000|67|412
|
||||||
|
1.3.6.1.2.1.2.2.1.9.35600004|67|692
|
||||||
|
1.3.6.1.2.1.2.2.1.9.38100001|67|17731966
|
||||||
|
1.3.6.1.2.1.2.2.1.9.38100002|67|45150167
|
||||||
|
1.3.6.1.2.1.2.2.1.9.38100003|67|51090761
|
||||||
|
1.3.6.1.2.1.2.2.1.9.38100004|67|787
|
||||||
|
1.3.6.1.2.1.2.2.1.9.38100005|67|787
|
||||||
|
1.3.6.1.2.1.2.2.1.9.38100006|67|50325108
|
||||||
|
1.3.6.1.2.1.2.2.1.9.38100007|67|787
|
||||||
|
1.3.6.1.2.1.2.2.1.9.39000000|67|1124
|
||||||
|
1.3.6.1.2.1.2.2.1.10.0|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.10.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.10.2|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.10.1000000|65|1439752171
|
||||||
|
1.3.6.1.2.1.2.2.1.10.1010000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.10.1020000|65|3569741759
|
||||||
|
1.3.6.1.2.1.2.2.1.10.1030000|65|531162566
|
||||||
|
1.3.6.1.2.1.2.2.1.10.7100000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.10.35600000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.10.35600004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.10.38100001|65|9634896
|
||||||
|
1.3.6.1.2.1.2.2.1.10.38100002|65|1401393736
|
||||||
|
1.3.6.1.2.1.2.2.1.10.38100003|65|24717856
|
||||||
|
1.3.6.1.2.1.2.2.1.10.38100004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.10.38100005|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.10.38100006|65|3107720
|
||||||
|
1.3.6.1.2.1.2.2.1.10.38100007|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.10.39000000|65|1412726201
|
||||||
|
1.3.6.1.2.1.2.2.1.11.0|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.11.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.11.2|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.11.1000000|65|382776092
|
||||||
|
1.3.6.1.2.1.2.2.1.11.1010000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.11.1020000|65|517642676
|
||||||
|
1.3.6.1.2.1.2.2.1.11.1030000|65|652326
|
||||||
|
1.3.6.1.2.1.2.2.1.11.7100000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.11.35600000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.11.35600004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.11.38100001|65|78436
|
||||||
|
1.3.6.1.2.1.2.2.1.11.38100002|65|77309338
|
||||||
|
1.3.6.1.2.1.2.2.1.11.38100003|65|40797
|
||||||
|
1.3.6.1.2.1.2.2.1.11.38100004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.11.38100005|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.11.38100006|65|704
|
||||||
|
1.3.6.1.2.1.2.2.1.11.38100007|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.11.39000000|65|382774783
|
||||||
|
1.3.6.1.2.1.2.2.1.12.0|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.12.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.12.2|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.12.1000000|65|1514673
|
||||||
|
1.3.6.1.2.1.2.2.1.12.1010000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.12.1020000|65|21343
|
||||||
|
1.3.6.1.2.1.2.2.1.12.1030000|65|25907
|
||||||
|
1.3.6.1.2.1.2.2.1.12.7100000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.12.35600000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.12.35600004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.12.38100001|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.12.38100002|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.12.38100003|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.12.38100004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.12.38100005|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.12.38100006|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.12.38100007|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.12.39000000|65|1179829
|
||||||
|
1.3.6.1.2.1.2.2.1.13.0|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.2|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.1000000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.1010000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.1020000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.1030000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.7100000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.35600000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.35600004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.38100001|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.38100002|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.38100003|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.38100004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.38100005|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.38100006|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.38100007|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.39000000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.0|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.2|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.1000000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.1010000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.1020000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.1030000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.7100000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.35600000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.35600004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.38100001|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.38100002|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.38100003|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.38100004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.38100005|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.38100006|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.38100007|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.39000000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.0|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.2|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.1000000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.1010000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.1020000|65|269991
|
||||||
|
1.3.6.1.2.1.2.2.1.15.1030000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.7100000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.35600000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.35600004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.38100001|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.38100002|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.38100003|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.38100004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.38100005|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.38100006|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.38100007|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.39000000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.16.0|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.16.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.16.2|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.16.1000000|65|2003507994
|
||||||
|
1.3.6.1.2.1.2.2.1.16.1010000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.16.1020000|65|2387486263
|
||||||
|
1.3.6.1.2.1.2.2.1.16.1030000|65|2814570321
|
||||||
|
1.3.6.1.2.1.2.2.1.16.7100000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.16.35600000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.16.35600004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.16.38100001|65|295976368
|
||||||
|
1.3.6.1.2.1.2.2.1.16.38100002|65|3018415552
|
||||||
|
1.3.6.1.2.1.2.2.1.16.38100003|65|4815296
|
||||||
|
1.3.6.1.2.1.2.2.1.16.38100004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.16.38100005|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.16.38100006|65|2176
|
||||||
|
1.3.6.1.2.1.2.2.1.16.38100007|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.16.39000000|65|2103284576
|
||||||
|
1.3.6.1.2.1.2.2.1.17.0|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.17.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.17.2|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.17.1000000|65|516635051
|
||||||
|
1.3.6.1.2.1.2.2.1.17.1010000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.17.1020000|65|382359347
|
||||||
|
1.3.6.1.2.1.2.2.1.17.1030000|65|1985314
|
||||||
|
1.3.6.1.2.1.2.2.1.17.7100000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.17.35600000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.17.35600004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.17.38100001|65|219137
|
||||||
|
1.3.6.1.2.1.2.2.1.17.38100002|65|57910216
|
||||||
|
1.3.6.1.2.1.2.2.1.17.38100003|65|32502
|
||||||
|
1.3.6.1.2.1.2.2.1.17.38100004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.17.38100005|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.17.38100006|65|17
|
||||||
|
1.3.6.1.2.1.2.2.1.17.38100007|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.17.39000000|65|516635054
|
||||||
|
1.3.6.1.2.1.2.2.1.18.0|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.18.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.18.2|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.18.1000000|65|27035
|
||||||
|
1.3.6.1.2.1.2.2.1.18.1010000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.18.1020000|65|7
|
||||||
|
1.3.6.1.2.1.2.2.1.18.1030000|65|59758
|
||||||
|
1.3.6.1.2.1.2.2.1.18.7100000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.18.35600000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.18.35600004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.18.38100001|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.18.38100002|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.18.38100003|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.18.38100004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.18.38100005|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.18.38100006|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.18.38100007|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.18.39000000|65|27035
|
||||||
|
1.3.6.1.2.1.2.2.1.19.0|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.2|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.1000000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.1010000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.1020000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.1030000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.7100000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.35600000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.35600004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.38100001|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.38100002|65|397
|
||||||
|
1.3.6.1.2.1.2.2.1.19.38100003|65|2
|
||||||
|
1.3.6.1.2.1.2.2.1.19.38100004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.38100005|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.38100006|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.38100007|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.39000000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.0|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.2|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.1000000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.1010000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.1020000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.1030000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.7100000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.35600000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.35600004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.38100001|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.38100002|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.38100003|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.38100004|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.38100005|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.38100006|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.38100007|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.39000000|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.0|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.1|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.2|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.1000000|66|7
|
||||||
|
1.3.6.1.2.1.2.2.1.21.1010000|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.1020000|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.1030000|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.7100000|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.35600000|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.35600004|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.38100001|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.38100002|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.38100003|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.38100004|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.38100005|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.38100006|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.38100007|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.39000000|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.0|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.1|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.2|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.1000000|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.1010000|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.1020000|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.1030000|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.7100000|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.35600000|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.35600004|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.38100001|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.38100002|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.38100003|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.38100004|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.38100005|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.38100006|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.38100007|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.39000000|6|0.0
|
||||||
|
1.3.6.1.2.1.4.3.0|65|979122588
|
||||||
|
1.3.6.1.2.1.4.4.0|65|1
|
||||||
|
1.3.6.1.2.1.4.5.0|65|172923
|
||||||
|
1.3.6.1.2.1.4.6.0|65|898649252
|
||||||
|
1.3.6.1.2.1.4.7.0|65|0
|
||||||
|
1.3.6.1.2.1.4.8.0|65|726
|
||||||
|
1.3.6.1.2.1.4.9.0|65|5670273
|
||||||
|
1.3.6.1.2.1.4.10.0|65|5468197
|
||||||
|
1.3.6.1.2.1.4.11.0|65|213
|
||||||
|
1.3.6.1.2.1.4.12.0|65|815
|
||||||
|
1.3.6.1.2.1.4.14.0|65|784
|
||||||
|
1.3.6.1.2.1.4.15.0|65|392
|
||||||
|
1.3.6.1.2.1.4.16.0|65|0
|
||||||
|
1.3.6.1.2.1.4.17.0|65|4
|
||||||
|
1.3.6.1.2.1.4.18.0|65|0
|
||||||
|
1.3.6.1.2.1.4.19.0|65|8
|
||||||
|
1.3.6.1.2.1.4.31.1.1.1.2.0|2|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.3.2.0|65|155
|
||||||
|
1.3.6.1.2.1.4.31.1.1.4.2.0|70|155
|
||||||
|
1.3.6.1.2.1.4.31.1.1.5.2.0|65|33550
|
||||||
|
1.3.6.1.2.1.4.31.1.1.6.2.0|70|33550
|
||||||
|
1.3.6.1.2.1.4.31.1.1.7.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.8.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.9.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.10.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.11.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.12.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.13.2.0|70|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.14.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.15.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.16.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.17.2.0|65|1
|
||||||
|
1.3.6.1.2.1.4.31.1.1.18.2.0|65|121
|
||||||
|
1.3.6.1.2.1.4.31.1.1.19.2.0|70|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.20.2.0|65|66
|
||||||
|
1.3.6.1.2.1.4.31.1.1.21.2.0|70|66
|
||||||
|
1.3.6.1.2.1.4.31.1.1.22.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.23.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.24.2.0|70|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.25.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.26.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.27.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.28.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.29.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.30.2.0|65|66
|
||||||
|
1.3.6.1.2.1.4.31.1.1.31.2.0|70|66
|
||||||
|
1.3.6.1.2.1.4.31.1.1.32.2.0|65|7080
|
||||||
|
1.3.6.1.2.1.4.31.1.1.33.2.0|70|7077
|
||||||
|
1.3.6.1.2.1.4.31.1.1.34.2.0|65|13
|
||||||
|
1.3.6.1.2.1.4.31.1.1.35.2.0|70|13
|
||||||
|
1.3.6.1.2.1.4.31.1.1.36.2.0|65|764
|
||||||
|
1.3.6.1.2.1.4.31.1.1.37.2.0|70|764
|
||||||
|
1.3.6.1.2.1.4.31.1.1.38.2.0|65|35
|
||||||
|
1.3.6.1.2.1.4.31.1.1.39.2.0|70|35
|
||||||
|
1.3.6.1.2.1.4.31.1.1.40.2.0|65|2608
|
||||||
|
1.3.6.1.2.1.4.31.1.1.41.2.0|70|2608
|
||||||
|
1.3.6.1.2.1.4.31.1.1.42.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.43.2.0|70|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.44.2.0|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.45.2.0|70|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.46.2.0|67|53679557
|
||||||
|
1.3.6.1.2.1.4.31.1.1.47.2.0|66|0
|
||||||
|
1.3.6.1.2.1.5.1.0|65|7060
|
||||||
|
1.3.6.1.2.1.5.2.0|65|0
|
||||||
|
1.3.6.1.2.1.5.3.0|65|69
|
||||||
|
1.3.6.1.2.1.5.4.0|65|22
|
||||||
|
1.3.6.1.2.1.5.5.0|65|0
|
||||||
|
1.3.6.1.2.1.5.6.0|65|0
|
||||||
|
1.3.6.1.2.1.5.7.0|65|0
|
||||||
|
1.3.6.1.2.1.5.8.0|65|6423
|
||||||
|
1.3.6.1.2.1.5.9.0|65|545
|
||||||
|
1.3.6.1.2.1.5.10.0|65|0
|
||||||
|
1.3.6.1.2.1.5.11.0|65|0
|
||||||
|
1.3.6.1.2.1.5.12.0|65|0
|
||||||
|
1.3.6.1.2.1.5.13.0|65|0
|
||||||
|
1.3.6.1.2.1.5.14.0|65|11341
|
||||||
|
1.3.6.1.2.1.5.15.0|65|0
|
||||||
|
1.3.6.1.2.1.5.16.0|65|1188
|
||||||
|
1.3.6.1.2.1.5.17.0|65|300
|
||||||
|
1.3.6.1.2.1.5.18.0|65|0
|
||||||
|
1.3.6.1.2.1.5.19.0|65|0
|
||||||
|
1.3.6.1.2.1.5.20.0|65|0
|
||||||
|
1.3.6.1.2.1.5.21.0|65|3430
|
||||||
|
1.3.6.1.2.1.5.22.0|65|6423
|
||||||
|
1.3.6.1.2.1.5.23.0|65|0
|
||||||
|
1.3.6.1.2.1.5.24.0|65|0
|
||||||
|
1.3.6.1.2.1.5.25.0|65|0
|
||||||
|
1.3.6.1.2.1.5.26.0|65|0
|
||||||
|
1.3.6.1.2.1.6.5.0|65|9
|
||||||
|
1.3.6.1.2.1.6.6.0|65|522
|
||||||
|
1.3.6.1.2.1.6.7.0|65|0
|
||||||
|
1.3.6.1.2.1.6.8.0|65|2
|
||||||
|
1.3.6.1.2.1.6.9.0|66|1
|
||||||
|
1.3.6.1.2.1.6.10.0|65|139296
|
||||||
|
1.3.6.1.2.1.6.11.0|65|145638
|
||||||
|
1.3.6.1.2.1.6.12.0|65|55
|
||||||
|
1.3.6.1.2.1.6.14.0|65|0
|
||||||
|
1.3.6.1.2.1.6.15.0|65|1739
|
||||||
|
1.3.6.1.2.1.7.1.0|65|5378928
|
||||||
|
1.3.6.1.2.1.7.2.0|65|10420
|
||||||
|
1.3.6.1.2.1.7.3.0|65|2
|
||||||
|
1.3.6.1.2.1.7.4.0|65|5319236
|
||||||
|
1.3.6.1.2.1.11.1.0|65|995958
|
||||||
|
1.3.6.1.2.1.11.2.0|65|995670
|
||||||
|
1.3.6.1.2.1.11.3.0|65|0
|
||||||
|
1.3.6.1.2.1.11.4.0|65|4
|
||||||
|
1.3.6.1.2.1.11.5.0|65|0
|
||||||
|
1.3.6.1.2.1.11.6.0|65|288
|
||||||
|
1.3.6.1.2.1.11.8.0|65|0
|
||||||
|
1.3.6.1.2.1.11.9.0|65|0
|
||||||
|
1.3.6.1.2.1.11.10.0|65|0
|
||||||
|
1.3.6.1.2.1.11.11.0|65|0
|
||||||
|
1.3.6.1.2.1.11.12.0|65|0
|
||||||
|
1.3.6.1.2.1.11.13.0|65|985557
|
||||||
|
1.3.6.1.2.1.11.14.0|65|0
|
||||||
|
1.3.6.1.2.1.11.15.0|65|82621
|
||||||
|
1.3.6.1.2.1.11.16.0|65|913063
|
||||||
|
1.3.6.1.2.1.11.17.0|65|0
|
||||||
|
1.3.6.1.2.1.11.18.0|65|0
|
||||||
|
1.3.6.1.2.1.11.19.0|65|0
|
||||||
|
1.3.6.1.2.1.11.20.0|65|0
|
||||||
|
1.3.6.1.2.1.11.21.0|65|22379
|
||||||
|
1.3.6.1.2.1.11.22.0|65|0
|
||||||
|
1.3.6.1.2.1.11.24.0|65|0
|
||||||
|
1.3.6.1.2.1.11.25.0|65|950587
|
||||||
|
1.3.6.1.2.1.11.26.0|65|0
|
||||||
|
1.3.6.1.2.1.11.27.0|65|0
|
||||||
|
1.3.6.1.2.1.11.28.0|65|0
|
||||||
|
1.3.6.1.2.1.11.29.0|65|0
|
||||||
|
1.3.6.1.2.1.11.30.0|2|1
|
||||||
|
1.3.6.1.2.1.11.31.0|65|0
|
||||||
|
1.3.6.1.2.1.11.32.0|65|0
|
||||||
|
1.3.6.1.2.1.31.1.5.0|67|53679316
|
||||||
|
1.3.6.1.4.1.272.4.1.17.1.3.0.0.0|4|1.0
|
||||||
|
1.3.6.1.4.1.272.4.1.17.1.5.0.0.0|4|be.IP plus
|
||||||
|
1.3.6.1.4.1.272.4.1.17.1.8.0.0.0|4|BE2CAM019320050
|
||||||
|
1.3.6.1.4.1.272.4.1.26.0|4|V.10.2.9.102 IPv6, IPSec, PBX from 2021/03/16 00:00:00
|
||||||
|
1.3.6.1.4.1.272.4.17.4.1.1.18.1.0|2|95
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.1.1.0|2|1
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.1.2.1|2|2
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.1.3.2|2|3
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.1.3.3|2|3
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.1.3.4|2|3
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.1.3.5|2|3
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.1.3.6|2|3
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.1.3.7|2|3
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.1.3.8|2|3
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.1.3.10|2|3
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.1.3.11|2|3
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.1.3.12|2|3
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.1.3.13|2|3
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.1.3.14|2|3
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.1.3.15|2|3
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.2.1.0|4x|4F6E626F61726420466C61736800
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.2.2.1|4x|4D61696E204D656D6F727900
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.2.3.2|4|STREAMS Class 0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.2.3.3|4|STREAMS Class 1
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.2.3.4|4|STREAMS Class 2
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.2.3.5|4|STREAMS Class 3
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.2.3.6|4|STREAMS Class 4
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.2.3.7|4|STREAMS Class 5
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.2.3.8|4|STREAMS Class 6
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.2.3.10|4|KMEM Class 0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.2.3.11|4|KMEM Class 1
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.2.3.12|4|KMEM Class 2
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.2.3.13|4|KMEM Class 3
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.2.3.14|4|KMEM Class 4
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.2.3.15|4|KMEM Class 5
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.3.1.0|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.3.2.1|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.3.3.2|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.3.3.3|66|32
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.3.3.4|66|64
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.3.3.5|66|288
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.3.3.6|66|1024
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.3.3.7|66|1632
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.3.3.8|66|4096
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.3.3.10|66|32
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.3.3.11|66|64
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.3.3.12|66|128
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.3.3.13|66|256
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.3.3.14|66|512
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.3.3.15|66|1024
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.4.1.0|66|33554432
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.4.2.1|66|134152192
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.4.3.2|66|32
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.4.3.3|66|13216
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.4.3.4|66|64
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.4.3.5|66|544
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.4.3.6|66|144
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.4.3.7|66|520
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.4.3.8|66|588
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.4.3.10|66|5280
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.4.3.11|66|4512
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.4.3.12|66|11936
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.4.3.13|66|4416
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.4.3.14|66|672
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.4.3.15|66|640
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.5.1.0|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.5.2.1|66|59092461
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.5.3.2|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.5.3.3|66|102
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.5.3.4|66|3
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.5.3.5|66|59
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.5.3.6|66|107
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.5.3.7|66|243
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.5.3.8|66|576
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.5.3.10|66|3965
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.5.3.11|66|3187
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.5.3.12|66|10752
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.5.3.13|66|977
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.5.3.14|66|645
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.5.3.15|66|611
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.6.1.0|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.6.2.1|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.6.3.2|66|1664
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.6.3.3|66|1321600
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.6.3.4|66|8448
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.6.3.5|66|193664
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.6.3.6|66|157248
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.6.3.7|66|884000
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.6.3.8|66|2448432
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.6.3.10|66|168960
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.6.3.11|66|288768
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.6.3.12|66|1527808
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.6.3.13|66|1130496
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.6.3.14|66|344064
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.6.3.15|66|655360
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.7.1.0|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.7.2.1|66|785718
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.7.3.2|66|45714050
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.7.3.3|66|250432592
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.7.3.4|66|112146320
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.7.3.5|66|170621345
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.7.3.6|66|3567293
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.7.3.7|66|914825815
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.7.3.8|66|10414
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.7.3.10|66|286595620
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.7.3.11|66|135591978
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.7.3.12|66|76847114
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.7.3.13|66|9928735
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.7.3.14|66|11140633
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.7.3.15|66|514489304
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.8.1.0|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.8.2.1|66|755029
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.8.3.2|66|45714065
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.8.3.3|66|250432535
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.8.3.4|66|112146377
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.8.3.5|66|170621313
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.8.3.6|66|3567186
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.8.3.7|66|914825587
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.8.3.8|66|9838
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.8.3.10|66|286591805
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.8.3.11|66|135588791
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.8.3.12|66|76836378
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.8.3.13|66|9927758
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.8.3.14|66|11139988
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.8.3.15|66|514488695
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.9.1.0|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.9.2.1|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.9.3.2|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.9.3.3|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.9.3.4|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.9.3.5|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.9.3.6|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.9.3.7|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.9.3.8|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.9.3.10|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.9.3.11|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.9.3.12|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.9.3.13|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.9.3.14|66|0
|
||||||
|
1.3.6.1.4.1.272.4.17.4.2.1.9.3.15|66|0
|
||||||
|
1.3.6.1.6.3.10.2.1.3.0|2|536793
|
Reference in New Issue
Block a user