Support new os GWD (#10978)

* gwd logo

* gwd definitions

* definitions discovery

* discovery mempools

* polling mempools

* polling os

* gwd mibs

* gwd tests data

* gwd tests snmpsim

* CR at end of file

* Update gwd.inc.php

* Update gwd.inc.php

* Update gwd.inc.php

* Update gwd.inc.php

* Update gwd.inc.php

* Update gwd.snmprec

* Update gwd.json
This commit is contained in:
hartred 2019-12-28 14:40:54 +03:00 committed by PipoCanaja
parent b125dd1eae
commit 5189a0787b
11 changed files with 8568 additions and 0 deletions

BIN
html/images/os/gwd.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,36 @@
mib: GW-EPON-DEV-MIB:GWTT-SMI:GW-EPON-MIB
modules:
processors:
data:
-
oid: GW-EPON-MIB::boardCpuUsage
value: boardCpuUsage
snmp_flags: ['-OeQUs', '-Pu']
num_oid: '.1.3.6.1.4.1.10072.2.20.1.1.2.1.1.19.1.1'
sensors:
temperature:
data:
-
oid: devTemperature
num_oid: '.1.3.6.1.4.1.10072.2.15.1.6.1.1.2.{{ $index }}'
descr: 'Temperature board {{ $index }} '
-
oid: powerTemperature
num_oid: '.1.3.6.1.4.1.10072.2.15.1.5.1.1.3.{{ $index }}'
descr: 'Temperature power supply {{ $index }} '
state:
data:
-
oid: powerRunStatus
num_oid: '.1.3.6.1.4.1.10072.2.15.1.5.1.1.2.{{ $index }}'
descr: 'Power Run Status {{ $index }}'
states:
- { descr: Normal, graph: 0, value: 0, generic: 0 }
- { descr: Abnormal, graph: 0, value: 1, generic: 2 }
-
oid: devFanAlarmStatus
num_oid: '.1.3.6.1.4.1.10072.2.15.1.4.1.1.3.{{ $index }}'
descr: 'Fun status {{ $index }}'
states:
- { descr: Normal, graph: 0, value: 0, generic: 0 }
- { descr: Abnormal, graph: 0, value: 1, generic: 2 }

View File

@ -0,0 +1,14 @@
os: gwd
text: 'gwd'
type: network
icon: gwd
group: gwd
mib_dir:
- gwd
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.10072.2.20

View File

@ -0,0 +1,20 @@
<?php
/*
* LibreNMS GWD memory information module
*
* Copyright (c) 2019 hartred <tumanov@asarta.ru>
* 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 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
if ($device['os'] === 'gwd') {
echo 'gwd:';
$usage = snmp_get($device, '.1.3.6.1.4.1.10072.2.20.1.1.2.1.1.20.1.1', '-Ovq');
if (is_numeric($usage)) {
$descr = 'Memory';
discover_mempool($valid_mempool, $device, 0, 'gwd', $descr, '1', null, null);
}
}

View File

@ -0,0 +1,17 @@
<?php
/*
* LibreNMS
*
* Copyright (c) 2019 hartred <tumanov@asarta.ru>
* 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 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
$temp_data = snmp_get_multi_oid($device, ['.1.3.6.1.4.1.10072.2.20.1.1.2.1.1.28.1.1', '.1.3.6.1.4.1.10072.2.20.1.1.2.1.1.20.1.1'], '-OQUn');
$mempool['total'] = $temp_data['.1.3.6.1.4.1.10072.2.20.1.1.2.1.1.28.1.1'];
$mempool['used'] = $temp_data['.1.3.6.1.4.1.10072.2.20.1.1.2.1.1.20.1.1'];
$mempool['free'] = $mempool['total'] - $mempool['used'];
unset($temp_data);

View File

@ -0,0 +1,16 @@
<?php
/*
* LibreNMS
*
* Copyright (c) 2019 hartred <tumanov@asarta.ru>
* 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 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
$r_temp = snmp_get_multi_oid($device, ['.1.3.6.1.4.1.10072.2.20.1.1.1.1.1.8.1', '.1.3.6.1.4.1.10072.2.20.1.1.1.1.1.9.1', '.1.3.6.1.4.1.10072.2.20.1.1.2.1.1.18.1.1'], '-OQUn');
$version = $r_temp['.1.3.6.1.4.1.10072.2.20.1.1.1.1.1.8.1'];
$hardware = $r_temp['.1.3.6.1.4.1.10072.2.20.1.1.1.1.1.9.1'];
$serial = $r_temp['.1.3.6.1.4.1.10072.2.20.1.1.2.1.1.18.1.1'];

601
mibs/gwd/GW-EPON-DEV-MIB Normal file
View File

@ -0,0 +1,601 @@
GW-EPON-DEV-MIB DEFINITIONS ::= BEGIN
IMPORTS
devices
FROM GWTT-SMI
TruthValue, DateAndTime, RowStatus, DisplayString
FROM SNMPv2-TC
DisplayString
FROM RFC1213-MIB
gwDevTrapGroup, deviceIndex,EponDeviceType
FROM GW-EPON-MIB
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32, NOTIFICATION-TYPE
FROM SNMPv2-SMI;
eponDevManMIB MODULE-IDENTITY
LAST-UPDATED "200804090000Z"
ORGANIZATION "Organization"
CONTACT-INFO "Contact-info"
DESCRIPTION "Description"
REVISION "200602141321Z"
DESCRIPTION ""
::= { devices 15 }
eponDevManMIBObjects OBJECT IDENTIFIER
::= { eponDevManMIB 1 }
updateONUGroup OBJECT IDENTIFIER
::= { eponDevManMIBObjects 1 }
-- cfgdataSaveGroup OBJECT IDENTIFIER
-- ::= { eponDevManMIBObjects 2 }
logEventGroup OBJECT IDENTIFIER
::= { eponDevManMIBObjects 3 }
fanAlarmInfoGroup OBJECT IDENTIFIER
::= { eponDevManMIBObjects 4 }
powerInfoGroup OBJECT IDENTIFIER
::= { eponDevManMIBObjects 5 }
temperatureInfoGroup OBJECT IDENTIFIER
::= { eponDevManMIBObjects 6 }
onuAlarmMaskGroup OBJECT IDENTIFIER
::= { eponDevManMIBObjects 7 }
-- update ONU mib definitions
onuUpdateTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuUpdateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of information about updating onu."
::= { updateONUGroup 1 }
onuUpdateEntry OBJECT-TYPE
SYNTAX OnuUpdateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing onu update configure information ."
INDEX { deviceIndex }
::= { onuUpdateTable 1 }
OnuUpdateEntry ::= SEQUENCE {
updateONUEnable INTEGER,
updateCtrlFlag INTEGER
}
updateONUEnable OBJECT-TYPE
SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This value of the object indicates whether enable update ONU's software or firmware"
::= { onuUpdateEntry 1 }
updateCtrlFlag OBJECT-TYPE
SYNTAX INTEGER { noop ( 1 ) , update ( 2 ) , inProcess ( 3 ) , forbidden ( 4 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value is a representation of progress for updating."
::= { onuUpdateEntry 2 }
-- log event -------------------------------------------------
logEventTable OBJECT-TYPE
SYNTAX SEQUENCE OF LogEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of logged events"
::= { logEventGroup 1 }
logEventEntry OBJECT-TYPE
SYNTAX LogEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing logged event ."
INDEX { logEventIndex }
::= { logEventTable 1 }
LogEventEntry ::= SEQUENCE {
logEventIndex Integer32,
logEventTime DateAndTime,
logEventDesc DisplayString
}
logEventIndex OBJECT-TYPE
SYNTAX Unsigned32 --Integer32 ( 1 .. 65536 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The vlaue of index of logged event ."
::= { logEventEntry 1 }
logEventTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "date and time when log event occure."
::= { logEventEntry 2 }
logEventDesc OBJECT-TYPE
SYNTAX DisplayString( SIZE(1..64) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Description of the event."
::= { logEventEntry 3 }
alarmSynTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlarmSynEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"The Table of Alarm Synchronization info."
::= { logEventGroup 2 }
alarmSynEntry OBJECT-TYPE
SYNTAX AlarmSynEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"Table Entry"
INDEX { alarmSynIndex }
::= { alarmSynTable 1 }
AlarmSynEntry ::= SEQUENCE {
alarmSynIndex INTEGER,
alarmSynTime DateAndTime,
alarmSynData OCTET STRING,
alarmSynFlag INTEGER,
alarmSynClearTime DateAndTime
}
alarmSynIndex OBJECT-TYPE
SYNTAX INTEGER (1..500)
ACCESS read-only
STATUS current
DESCRIPTION
"Alarm Synchronization Information Index."
::= { alarmSynEntry 1 }
alarmSynTime OBJECT-TYPE
SYNTAX DateAndTime
ACCESS read-only
STATUS current
DESCRIPTION
"The time when an alarm occured."
::= { alarmSynEntry 2 }
alarmSynData OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (255))
ACCESS read-only
STATUS current
DESCRIPTION
"Alarm Trap PDU."
::= { alarmSynEntry 3 }
alarmSynFlag OBJECT-TYPE
SYNTAX INTEGER { alarm(1), clear(2) }
ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object indicates whether the alarm
has been cleared or not."
::= { alarmSynEntry 4 }
alarmSynClearTime OBJECT-TYPE
SYNTAX DateAndTime
ACCESS read-only
STATUS current
DESCRIPTION
"The time when an alarm is cleared."
::= { alarmSynEntry 5 }
alarmSynEnable OBJECT-TYPE
SYNTAX INTEGER { enable(1), disable(2) }
ACCESS read-write
STATUS current
DESCRIPTION
"Alarm Synchronization Enable. If the value of this
object is 'disable(2)', all the history alarm will
be clear."
DEFVAL { enable }
::= { logEventGroup 3 }
logEventEnable OBJECT-TYPE
SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of this object indicates whether enable log event."
::= { logEventGroup 4 }
lastLogEventIndex OBJECT-TYPE
SYNTAX Unsigned32 --Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The vlaue of this object indicates the index of event logged last time."
::= { logEventGroup 5 }
-- fanAlarmInfoGroup-------------------------
devFanAlarmTable OBJECT-TYPE
SYNTAX SEQUENCE OF DevFanAlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "table of fans alarm information"
::= { fanAlarmInfoGroup 1 }
devFanAlarmEntry OBJECT-TYPE
SYNTAX DevFanAlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing status information"
INDEX { devFanDeviceIndex , devFanIndex }
::= { devFanAlarmTable 1 }
DevFanAlarmEntry ::= SEQUENCE {
devFanDeviceIndex INTEGER,
devFanIndex INTEGER ,
devFanAlarmStatus INTEGER ,
devFanSpyEnable INTEGER,
devFanRev INTEGER
}
devFanDeviceIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "index of device"
::={ devFanAlarmEntry 1 }
devFanIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "index of the fan that the 'devFanDeviceIndex' indicated"
::={ devFanAlarmEntry 2 }
devFanAlarmStatus OBJECT-TYPE
SYNTAX TruthValue { ALARM(1), CLEAR(5) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "alarm status for fan"
::={ devFanAlarmEntry 3 }
devFanSpyEnable OBJECT-TYPE
SYNTAX INTEGER {enable(1),disable(2),notSupport(3)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "fan spy enable"
::={ devFanAlarmEntry 4 }
devFanRev OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "the fan speed"
::={ devFanAlarmEntry 5 }
devFanNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::={ fanAlarmInfoGroup 2 }
devFanAutoTurnOnThresholds OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::={ fanAlarmInfoGroup 3 }
devFanAutoTurnOffThresholds OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::={ fanAlarmInfoGroup 4 }
devFanRevThresholds OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the speed of fan,default value 1000/minute"
::={ fanAlarmInfoGroup 5}
-- power information--------------------------
powerInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF PowerInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "table of power information"
::={ powerInfoGroup 1 }
powerInfoEntry OBJECT-TYPE
SYNTAX PowerInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table,containing status about power information"
INDEX { powerIndex }
::={ powerInfoTable 1 }
PowerInfoEntry ::= SEQUENCE {
powerIndex INTEGER ,
powerRunStatus INTEGER ,
powerTemperature INTEGER,
powerLastChangeTime TimeTicks,
powerTMPRisingThreshold Integer32 ,
powerTMPFallingThreshold Integer32,
powerModuleType INTEGER,
powerVoltage INTEGER,
powerCurrent INTEGER,
PowerVOLTHighThreshold INTEGER,
PowerVOLTLowThreshold INTEGER,
PowerAlarmInfo INTEGER,
PowerAlarmID INTEGER,
PowerClearAlarmID INTEGER
}
powerIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates the index of power"
::={ powerInfoEntry 1 }
powerRunStatus OBJECT-TYPE
SYNTAX INTEGER { empty(1),powerOff(2), powerOn(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of this object indicates power status"
::={powerInfoEntry 2 }
powerTemperature OBJECT-TYPE
SYNTAX INTEGER( 1..100 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates the temperature of power"
::={ powerInfoEntry 3 }
powerLastChangeTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates time at which powers's satus changed"
::={ powerInfoEntry 4 }
powerTMPRisingThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value indicates rising threashold of the temperatur of a power"
::={ powerInfoEntry 5 }
powerTMPFallingThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value indicates falling threashold of the temperatur of a power"
::={ powerInfoEntry 6 }
powerModuleType OBJECT-TYPE
SYNTAX INTEGER { AC220V(1), DC48V(2)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the object indicates power module type"
::={ powerInfoEntry 7 }
powerVoltage OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates the voltage of a power"
::={ powerInfoEntry 8 }
powerCurrent OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates the current of a power"
::={ powerInfoEntry 9 }
powerVOLTHighThreshold OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates high threashold of the voltage of a power"
::={ powerInfoEntry 10 }
powerVOLTLowThreshold OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates low threashold of the voltage of a power"
::={ powerInfoEntry 11 }
powerAlarmInfo OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates the alarminfo of a power
AlarmID AlarmInfo
0x00000000 null
0x00000001 input_volt_abnoarmal
0x00000002 pwu_stat_abnoarmal
0x00000004 pwu_fan_abnoarmal
0x00000008 cur_limit_abnoarmal
0x00000010 ac_volt_abnoarmal
0x00000020 high_volt_abnoarmal
0x00000040 out_cur_abnoarmal
0x00000080 low_line_abnoarmal
0x00000100 pwu_reg_abnoarmal
0x00000200 dc_volt_abnoarmal
0x00000400 power_off_abnoarmal
0x00000800 temp_high_abnoarmal
"
::={ powerInfoEntry 12 }
powerAlarmID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates the alarmid of a power "
::={ powerInfoEntry 13 }
powerClearAlarmID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates the clearalarmid of a power"
::={ powerInfoEntry 14 }
-------------------------- trap ---------------------------------------------
devFanAlarm NOTIFICATION-TYPE
OBJECTS { deviceIndex, devFanIndex }
STATUS current
DESCRIPTION "fan alarm"
::= { gwDevTrapGroup 28 }
devFanAlarmClear NOTIFICATION-TYPE
OBJECTS { deviceIndex, devFanIndex }
STATUS current
DESCRIPTION "fan alarm clear"
::= { gwDevTrapGroup 29 }
deviceTemperatureHigh NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "device temperature high alarm"
::= { gwDevTrapGroup 124 }
deviceTemperatureHighClear NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "device temperature high alarm clear"
::= { gwDevTrapGroup 125 }
deviceTemperatureLow NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "device temperature low alarm"
::= { gwDevTrapGroup 126 }
deviceTemperatureLowClear NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "device temperature low alarm clear"
::= { gwDevTrapGroup 127 }
-------temperature information--------------------------------------------------------------
temperatureInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF TemperatureInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "table of temperature information"
::= { temperatureInfoGroup 1 }
temperatureInfoEntry OBJECT-TYPE
SYNTAX TemperatureInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table,containing status about temperature information"
INDEX {temperatureDeviceIndex}
::={ temperatureInfoTable 1 }
TemperatureInfoEntry ::= SEQUENCE {
temperatureDeviceIndex INTEGER,
devTemperature INTEGER ,
devTemperatureHighThresholds Integer32 ,
devTemperatureLowThreshold Integer32,
devTemperatureSpyEnable INTEGER
}
temperatureDeviceIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates the device temperature"
::={temperatureInfoEntry 1}
devTemperature OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates the device temperature"
::={temperatureInfoEntry 2}
devTemperatureHighThresholes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value indicates the device temperature high "
::={temperatureInfoEntry 3}
devTemperatureLowThresholes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value indicates the device temperature low "
::={temperatureInfoEntry 4}
devTemperatureSpyEnable OBJECT-TYPE
SYNTAX INTEGER { enable(1), disable(2), notSupport(3)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value indicates the device temperature spy enable"
::={temperatureInfoEntry 5}
------------- onuAlarmMaskGroup ---------------------------------------------------
onuAlarmMaskTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuAlarmMaskEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "table of onu alarm mask information"
::= { onuAlarmMaskGroup 1 }
onuAlarmMaskEntry OBJECT-TYPE
SYNTAX OnuAlarmMaskEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table,containing status about onu alarm mask information"
INDEX {onutypeIndex}
::={ onuAlarmMaskTable 1 }
OnuAlarmMaskEntry::= SEQUENCE {
onutypeIndex EponDeviceType,
onualarmMask BITS ,
onualarmMaskrowstatus RowStatus
}
onutypeIndex OBJECT-TYPE
SYNTAX EponDeviceType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "onu type vlaue"
::={onuAlarmMaskEntry 1}
onualarmMask OBJECT-TYPE
SYNTAX BITS{power(0),fan(1),cpu(2),temperature(3),register(4),present(5),ethlink(6),ethfer(7),ethflr(8),ethti(9),ethloop(10),ponber(11),ponfer(12),ponabnormal(13),ponaps(14),ponlink(15),onuLaserAlwayOn(16),onuOpticalPowerLow(17),onuOpticalPowerHigh(18)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "onu alarm mask type"
::={onuAlarmMaskEntry 2}
onualarmMaskrowstatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION "onu alarm mask table row status"
::={onuAlarmMaskEntry 3}
END

3042
mibs/gwd/GW-EPON-MIB Normal file

File diff suppressed because it is too large Load Diff

14
mibs/gwd/GWTT-SMI Normal file
View File

@ -0,0 +1,14 @@
GWTT-SMI DEFINITIONS ::= BEGIN
IMPORTS
enterprises
FROM RFC1155-SMI;
gwtt OBJECT IDENTIFIER ::= { enterprises 10072 }
chips OBJECT IDENTIFIER ::= { gwtt 1 } -- chip
devices OBJECT IDENTIFIER ::= { gwtt 2 } -- device
cards OBJECT IDENTIFIER ::= { gwtt 3 } -- card
snmpProxy OBJECT IDENTIFIER ::= { gwtt 4 } -- snmp proxy
END

4119
tests/data/gwd.json Normal file

File diff suppressed because it is too large Load Diff

689
tests/snmpsim/gwd.snmprec Normal file
View File

@ -0,0 +1,689 @@
1.3.6.1.2.1.1.1.0|4|EasyPath Ethernet-PON
1.3.6.1.2.1.1.2.0|6|.1.3.6.1.4.1.10072.2.20
1.3.6.1.2.1.1.3.0|67|72696432
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.2.67375104|4|to OLT-Kerro
1.3.6.1.2.1.2.2.1.2.67379200|4|ethernet port 1/2
1.3.6.1.2.1.2.2.1.2.67383296|4|ethernet port 1/3
1.3.6.1.2.1.2.2.1.2.67387392|4|ethernet port 1/4
1.3.6.1.2.1.2.2.1.2.67391488|4|ethernet port 1/5
1.3.6.1.2.1.2.2.1.2.67395584|4|ethernet port 1/6
1.3.6.1.2.1.2.2.1.2.67399680|4|ethernet port 1/7
1.3.6.1.2.1.2.2.1.2.67403776|4|ethernet port 1/8
1.3.6.1.2.1.2.2.1.2.67407872|4|ethernet port 1/9
1.3.6.1.2.1.2.2.1.2.67411968|4|ethernet port 1/10
1.3.6.1.2.1.2.2.1.2.67416064|4|ethernet port 1/11
1.3.6.1.2.1.2.2.1.2.67420160|4|ethernet port 1/12
1.3.6.1.2.1.2.2.1.2.67424256|4|ethernet port 1/13
1.3.6.1.2.1.2.2.1.2.67428352|4|ethernet port 1/14
1.3.6.1.2.1.2.2.1.2.67432448|4|ethernet port 1/15
1.3.6.1.2.1.2.2.1.2.67436544|4|ethernet port 1/16
1.3.6.1.2.1.2.2.1.2.134266880|4|ip interface 172.16.1.1
1.3.6.1.2.1.2.2.1.2.135938048|4|ip interface 10.200.12.2
1.3.6.1.2.1.2.2.1.3.67375104|2|7
1.3.6.1.2.1.2.2.1.3.67379200|2|3
1.3.6.1.2.1.2.2.1.3.67383296|2|3
1.3.6.1.2.1.2.2.1.3.67387392|2|3
1.3.6.1.2.1.2.2.1.3.67391488|2|7
1.3.6.1.2.1.2.2.1.3.67395584|2|7
1.3.6.1.2.1.2.2.1.3.67399680|2|7
1.3.6.1.2.1.2.2.1.3.67403776|2|7
1.3.6.1.2.1.2.2.1.3.67407872|2|7
1.3.6.1.2.1.2.2.1.3.67411968|2|7
1.3.6.1.2.1.2.2.1.3.67416064|2|7
1.3.6.1.2.1.2.2.1.3.67420160|2|7
1.3.6.1.2.1.2.2.1.3.67424256|2|7
1.3.6.1.2.1.2.2.1.3.67428352|2|7
1.3.6.1.2.1.2.2.1.3.67432448|2|7
1.3.6.1.2.1.2.2.1.3.67436544|2|7
1.3.6.1.2.1.2.2.1.3.134266880|2|2
1.3.6.1.2.1.2.2.1.3.135938048|2|2
1.3.6.1.2.1.2.2.1.4.67375104|2|1500
1.3.6.1.2.1.2.2.1.4.67379200|2|1500
1.3.6.1.2.1.2.2.1.4.67383296|2|1500
1.3.6.1.2.1.2.2.1.4.67387392|2|1500
1.3.6.1.2.1.2.2.1.4.67391488|2|1500
1.3.6.1.2.1.2.2.1.4.67395584|2|1500
1.3.6.1.2.1.2.2.1.4.67399680|2|1500
1.3.6.1.2.1.2.2.1.4.67403776|2|1500
1.3.6.1.2.1.2.2.1.4.67407872|2|1500
1.3.6.1.2.1.2.2.1.4.67411968|2|1500
1.3.6.1.2.1.2.2.1.4.67416064|2|1500
1.3.6.1.2.1.2.2.1.4.67420160|2|1500
1.3.6.1.2.1.2.2.1.4.67424256|2|1500
1.3.6.1.2.1.2.2.1.4.67428352|2|1500
1.3.6.1.2.1.2.2.1.4.67432448|2|1500
1.3.6.1.2.1.2.2.1.4.67436544|2|1500
1.3.6.1.2.1.2.2.1.4.134266880|2|1
1.3.6.1.2.1.2.2.1.4.135938048|2|1
1.3.6.1.2.1.2.2.1.6.67375104|4x|000000000000
1.3.6.1.2.1.2.2.1.6.67379200|4x|000000000000
1.3.6.1.2.1.2.2.1.6.67383296|4x|000000000000
1.3.6.1.2.1.2.2.1.6.67387392|4x|000000000000
1.3.6.1.2.1.2.2.1.6.67391488|4x|000000000000
1.3.6.1.2.1.2.2.1.6.67395584|4x|000000000000
1.3.6.1.2.1.2.2.1.6.67399680|4x|000000000000
1.3.6.1.2.1.2.2.1.6.67403776|4x|000000000000
1.3.6.1.2.1.2.2.1.6.67407872|4x|000000000000
1.3.6.1.2.1.2.2.1.6.67411968|4x|000000000000
1.3.6.1.2.1.2.2.1.6.67416064|4x|000000000000
1.3.6.1.2.1.2.2.1.6.67420160|4x|000000000000
1.3.6.1.2.1.2.2.1.6.67424256|4x|000000000000
1.3.6.1.2.1.2.2.1.6.67428352|4x|000000000000
1.3.6.1.2.1.2.2.1.6.67432448|4x|000000000000
1.3.6.1.2.1.2.2.1.6.67436544|4x|000000000000
1.3.6.1.2.1.2.2.1.6.134266880|4x|010203040506
1.3.6.1.2.1.2.2.1.6.135938048|4x|010203040506
1.3.6.1.2.1.2.2.1.7.67375104|2|1
1.3.6.1.2.1.2.2.1.7.67379200|2|1
1.3.6.1.2.1.2.2.1.7.67383296|2|1
1.3.6.1.2.1.2.2.1.7.67387392|2|1
1.3.6.1.2.1.2.2.1.7.67391488|2|1
1.3.6.1.2.1.2.2.1.7.67395584|2|1
1.3.6.1.2.1.2.2.1.7.67399680|2|1
1.3.6.1.2.1.2.2.1.7.67403776|2|1
1.3.6.1.2.1.2.2.1.7.67407872|2|1
1.3.6.1.2.1.2.2.1.7.67411968|2|1
1.3.6.1.2.1.2.2.1.7.67416064|2|1
1.3.6.1.2.1.2.2.1.7.67420160|2|1
1.3.6.1.2.1.2.2.1.7.67424256|2|1
1.3.6.1.2.1.2.2.1.7.67428352|2|1
1.3.6.1.2.1.2.2.1.7.67432448|2|1
1.3.6.1.2.1.2.2.1.7.67436544|2|1
1.3.6.1.2.1.2.2.1.7.134266880|2|1
1.3.6.1.2.1.2.2.1.7.135938048|2|1
1.3.6.1.2.1.2.2.1.8.67375104|2|1
1.3.6.1.2.1.2.2.1.8.67379200|2|2
1.3.6.1.2.1.2.2.1.8.67383296|2|2
1.3.6.1.2.1.2.2.1.8.67387392|2|2
1.3.6.1.2.1.2.2.1.8.67391488|2|1
1.3.6.1.2.1.2.2.1.8.67395584|2|1
1.3.6.1.2.1.2.2.1.8.67399680|2|1
1.3.6.1.2.1.2.2.1.8.67403776|2|1
1.3.6.1.2.1.2.2.1.8.67407872|2|2
1.3.6.1.2.1.2.2.1.8.67411968|2|2
1.3.6.1.2.1.2.2.1.8.67416064|2|2
1.3.6.1.2.1.2.2.1.8.67420160|2|2
1.3.6.1.2.1.2.2.1.8.67424256|2|2
1.3.6.1.2.1.2.2.1.8.67428352|2|2
1.3.6.1.2.1.2.2.1.8.67432448|2|2
1.3.6.1.2.1.2.2.1.8.67436544|2|2
1.3.6.1.2.1.2.2.1.8.134266880|2|1
1.3.6.1.2.1.2.2.1.8.135938048|2|1
1.3.6.1.2.1.2.2.1.9.67375104|67|72692100
1.3.6.1.2.1.2.2.1.9.67379200|67|72697300
1.3.6.1.2.1.2.2.1.9.67383296|67|72697300
1.3.6.1.2.1.2.2.1.9.67387392|67|72697300
1.3.6.1.2.1.2.2.1.9.67391488|67|72695400
1.3.6.1.2.1.2.2.1.9.67395584|67|72695400
1.3.6.1.2.1.2.2.1.9.67399680|67|72695400
1.3.6.1.2.1.2.2.1.9.67403776|67|72695400
1.3.6.1.2.1.2.2.1.9.67407872|67|72697300
1.3.6.1.2.1.2.2.1.9.67411968|67|72697300
1.3.6.1.2.1.2.2.1.9.67416064|67|72697300
1.3.6.1.2.1.2.2.1.9.67420160|67|72697300
1.3.6.1.2.1.2.2.1.9.67424256|67|72697300
1.3.6.1.2.1.2.2.1.9.67428352|67|72697300
1.3.6.1.2.1.2.2.1.9.67432448|67|72697300
1.3.6.1.2.1.2.2.1.9.67436544|67|72697300
1.3.6.1.2.1.2.2.1.9.134266880|67|0
1.3.6.1.2.1.2.2.1.9.135938048|67|0
1.3.6.1.2.1.2.2.1.13.67375104|65|48596
1.3.6.1.2.1.2.2.1.13.67379200|65|0
1.3.6.1.2.1.2.2.1.13.67383296|65|0
1.3.6.1.2.1.2.2.1.13.67387392|65|0
1.3.6.1.2.1.2.2.1.13.67391488|65|50601
1.3.6.1.2.1.2.2.1.13.67395584|65|223043
1.3.6.1.2.1.2.2.1.13.67399680|65|0
1.3.6.1.2.1.2.2.1.13.67403776|65|0
1.3.6.1.2.1.2.2.1.13.67407872|65|0
1.3.6.1.2.1.2.2.1.13.67411968|65|0
1.3.6.1.2.1.2.2.1.13.67416064|65|0
1.3.6.1.2.1.2.2.1.13.67420160|65|0
1.3.6.1.2.1.2.2.1.13.67424256|65|0
1.3.6.1.2.1.2.2.1.13.67428352|65|0
1.3.6.1.2.1.2.2.1.13.67432448|65|0
1.3.6.1.2.1.2.2.1.13.67436544|65|0
1.3.6.1.2.1.2.2.1.13.134266880|65|1
1.3.6.1.2.1.2.2.1.13.135938048|65|1
1.3.6.1.2.1.2.2.1.14.67375104|65|0
1.3.6.1.2.1.2.2.1.14.67379200|65|0
1.3.6.1.2.1.2.2.1.14.67383296|65|0
1.3.6.1.2.1.2.2.1.14.67387392|65|0
1.3.6.1.2.1.2.2.1.14.67391488|65|0
1.3.6.1.2.1.2.2.1.14.67395584|65|0
1.3.6.1.2.1.2.2.1.14.67399680|65|0
1.3.6.1.2.1.2.2.1.14.67403776|65|0
1.3.6.1.2.1.2.2.1.14.67407872|65|0
1.3.6.1.2.1.2.2.1.14.67411968|65|0
1.3.6.1.2.1.2.2.1.14.67416064|65|0
1.3.6.1.2.1.2.2.1.14.67420160|65|0
1.3.6.1.2.1.2.2.1.14.67424256|65|0
1.3.6.1.2.1.2.2.1.14.67428352|65|0
1.3.6.1.2.1.2.2.1.14.67432448|65|0
1.3.6.1.2.1.2.2.1.14.67436544|65|0
1.3.6.1.2.1.2.2.1.14.134266880|65|1
1.3.6.1.2.1.2.2.1.14.135938048|65|1
1.3.6.1.2.1.2.2.1.19.67375104|65|0
1.3.6.1.2.1.2.2.1.19.67379200|65|0
1.3.6.1.2.1.2.2.1.19.67383296|65|0
1.3.6.1.2.1.2.2.1.19.67387392|65|0
1.3.6.1.2.1.2.2.1.19.67391488|65|0
1.3.6.1.2.1.2.2.1.19.67395584|65|0
1.3.6.1.2.1.2.2.1.19.67399680|65|0
1.3.6.1.2.1.2.2.1.19.67403776|65|0
1.3.6.1.2.1.2.2.1.19.67407872|65|0
1.3.6.1.2.1.2.2.1.19.67411968|65|0
1.3.6.1.2.1.2.2.1.19.67416064|65|0
1.3.6.1.2.1.2.2.1.19.67420160|65|0
1.3.6.1.2.1.2.2.1.19.67424256|65|0
1.3.6.1.2.1.2.2.1.19.67428352|65|0
1.3.6.1.2.1.2.2.1.19.67432448|65|0
1.3.6.1.2.1.2.2.1.19.67436544|65|0
1.3.6.1.2.1.2.2.1.19.134266880|65|0
1.3.6.1.2.1.2.2.1.19.135938048|65|0
1.3.6.1.2.1.2.2.1.20.67375104|65|0
1.3.6.1.2.1.2.2.1.20.67379200|65|0
1.3.6.1.2.1.2.2.1.20.67383296|65|0
1.3.6.1.2.1.2.2.1.20.67387392|65|0
1.3.6.1.2.1.2.2.1.20.67391488|65|0
1.3.6.1.2.1.2.2.1.20.67395584|65|0
1.3.6.1.2.1.2.2.1.20.67399680|65|0
1.3.6.1.2.1.2.2.1.20.67403776|65|0
1.3.6.1.2.1.2.2.1.20.67407872|65|0
1.3.6.1.2.1.2.2.1.20.67411968|65|0
1.3.6.1.2.1.2.2.1.20.67416064|65|0
1.3.6.1.2.1.2.2.1.20.67420160|65|0
1.3.6.1.2.1.2.2.1.20.67424256|65|0
1.3.6.1.2.1.2.2.1.20.67428352|65|0
1.3.6.1.2.1.2.2.1.20.67432448|65|0
1.3.6.1.2.1.2.2.1.20.67436544|65|0
1.3.6.1.2.1.2.2.1.20.134266880|65|1
1.3.6.1.2.1.2.2.1.20.135938048|65|1
1.3.6.1.2.1.4.3.0|65|810300
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.5.0|65|0
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|0
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|802668
1.3.6.1.2.1.4.10.0|65|1484849
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|0
1.3.6.1.2.1.4.14.0|65|0
1.3.6.1.2.1.4.15.0|65|0
1.3.6.1.2.1.4.16.0|65|0
1.3.6.1.2.1.4.17.0|65|0
1.3.6.1.2.1.4.18.0|65|0
1.3.6.1.2.1.4.19.0|65|0
1.3.6.1.2.1.4.20.1.2.10.200.12.2|2|135938048
1.3.6.1.2.1.4.20.1.2.172.16.1.1|2|134266880
1.3.6.1.2.1.4.20.1.3.10.200.12.2|64|255.255.254.0
1.3.6.1.2.1.4.20.1.3.172.16.1.1|64|255.255.128.0
1.3.6.1.2.1.4.22.1.2.67375104.10.200.12.1|4x|744D2885CC40
1.3.6.1.2.1.5.1.0|65|7631
1.3.6.1.2.1.5.2.0|65|0
1.3.6.1.2.1.5.3.0|65|0
1.3.6.1.2.1.5.4.0|65|0
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|7631
1.3.6.1.2.1.5.9.0|65|0
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|7631
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|0
1.3.6.1.2.1.5.17.0|65|0
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|0
1.3.6.1.2.1.5.22.0|65|7631
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|0
1.3.6.1.2.1.6.6.0|65|339
1.3.6.1.2.1.6.7.0|65|0
1.3.6.1.2.1.6.8.0|65|0
1.3.6.1.2.1.6.9.0|66|0
1.3.6.1.2.1.6.10.0|65|544709
1.3.6.1.2.1.6.11.0|65|695742
1.3.6.1.2.1.6.12.0|65|36
1.3.6.1.2.1.6.14.0|65|1
1.3.6.1.2.1.6.15.0|65|0
1.3.6.1.2.1.7.1.0|65|257990
1.3.6.1.2.1.7.2.0|65|0
1.3.6.1.2.1.7.3.0|65|0
1.3.6.1.2.1.7.4.0|65|781539
1.3.6.1.2.1.10.7.2.1.19.1|2|3
1.3.6.1.2.1.10.7.2.1.19.2|2|3
1.3.6.1.2.1.10.7.2.1.19.3|2|3
1.3.6.1.2.1.10.7.2.1.19.4|2|3
1.3.6.1.2.1.10.7.2.1.19.5|2|3
1.3.6.1.2.1.10.7.2.1.19.6|2|3
1.3.6.1.2.1.10.7.2.1.19.7|2|3
1.3.6.1.2.1.10.7.2.1.19.8|2|3
1.3.6.1.2.1.10.7.2.1.19.9|2|3
1.3.6.1.2.1.10.7.2.1.19.10|2|3
1.3.6.1.2.1.11.1.0|65|257975
1.3.6.1.2.1.11.2.0|65|257974
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|0
1.3.6.1.2.1.11.5.0|65|0
1.3.6.1.2.1.11.6.0|65|0
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|2156462
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|223921
1.3.6.1.2.1.11.16.0|65|34055
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|0
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|0
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|257976
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.17.1.1.0|4x|000FE941FD2A
1.3.6.1.2.1.17.1.4.1.2.1|2|67375104
1.3.6.1.2.1.17.1.4.1.2.2|2|67379200
1.3.6.1.2.1.17.1.4.1.2.3|2|67383296
1.3.6.1.2.1.17.1.4.1.2.4|2|67387392
1.3.6.1.2.1.17.1.4.1.2.5|2|67391488
1.3.6.1.2.1.17.1.4.1.2.6|2|67395584
1.3.6.1.2.1.17.1.4.1.2.7|2|67399680
1.3.6.1.2.1.17.1.4.1.2.8|2|67403776
1.3.6.1.2.1.17.1.4.1.2.9|2|67407872
1.3.6.1.2.1.17.1.4.1.2.10|2|67411968
1.3.6.1.2.1.17.1.4.1.2.11|2|67416064
1.3.6.1.2.1.17.1.4.1.2.12|2|67420160
1.3.6.1.2.1.17.1.4.1.2.13|2|67424256
1.3.6.1.2.1.17.1.4.1.2.14|2|67428352
1.3.6.1.2.1.17.1.4.1.2.15|2|67432448
1.3.6.1.2.1.17.1.4.1.2.16|2|67436544
1.3.6.1.2.1.31.1.1.1.1.67375104|4|eth1/1
1.3.6.1.2.1.31.1.1.1.1.67379200|4|eth1/2
1.3.6.1.2.1.31.1.1.1.1.67383296|4|eth1/3
1.3.6.1.2.1.31.1.1.1.1.67387392|4|eth1/4
1.3.6.1.2.1.31.1.1.1.1.67391488|4|pon1/5
1.3.6.1.2.1.31.1.1.1.1.67395584|4|pon1/6
1.3.6.1.2.1.31.1.1.1.1.67399680|4|pon1/7
1.3.6.1.2.1.31.1.1.1.1.67403776|4|pon1/8
1.3.6.1.2.1.31.1.1.1.1.67407872|4|pon1/9
1.3.6.1.2.1.31.1.1.1.1.67411968|4|pon1/10
1.3.6.1.2.1.31.1.1.1.1.67416064|4|pon1/11
1.3.6.1.2.1.31.1.1.1.1.67420160|4|pon1/12
1.3.6.1.2.1.31.1.1.1.1.67424256|4|pon1/13
1.3.6.1.2.1.31.1.1.1.1.67428352|4|pon1/14
1.3.6.1.2.1.31.1.1.1.1.67432448|4|pon1/15
1.3.6.1.2.1.31.1.1.1.1.67436544|4|pon1/16
1.3.6.1.2.1.31.1.1.1.1.134266880|4|telnet
1.3.6.1.2.1.31.1.1.1.1.135938048|4|V0105
1.3.6.1.2.1.31.1.1.1.2.67375104|65|0
1.3.6.1.2.1.31.1.1.1.2.67379200|65|0
1.3.6.1.2.1.31.1.1.1.2.67383296|65|0
1.3.6.1.2.1.31.1.1.1.2.67387392|65|0
1.3.6.1.2.1.31.1.1.1.2.67391488|65|42509
1.3.6.1.2.1.31.1.1.1.2.67395584|65|223034
1.3.6.1.2.1.31.1.1.1.2.67399680|65|0
1.3.6.1.2.1.31.1.1.1.2.67403776|65|0
1.3.6.1.2.1.31.1.1.1.2.67407872|65|0
1.3.6.1.2.1.31.1.1.1.2.67411968|65|0
1.3.6.1.2.1.31.1.1.1.2.67416064|65|0
1.3.6.1.2.1.31.1.1.1.2.67420160|65|0
1.3.6.1.2.1.31.1.1.1.2.67424256|65|0
1.3.6.1.2.1.31.1.1.1.2.67428352|65|0
1.3.6.1.2.1.31.1.1.1.2.67432448|65|0
1.3.6.1.2.1.31.1.1.1.2.67436544|65|0
1.3.6.1.2.1.31.1.1.1.2.134266880|65|0
1.3.6.1.2.1.31.1.1.1.2.135938048|65|0
1.3.6.1.2.1.31.1.1.1.3.67375104|65|5375067
1.3.6.1.2.1.31.1.1.1.3.67379200|65|0
1.3.6.1.2.1.31.1.1.1.3.67383296|65|0
1.3.6.1.2.1.31.1.1.1.3.67387392|65|0
1.3.6.1.2.1.31.1.1.1.3.67391488|65|2354150
1.3.6.1.2.1.31.1.1.1.3.67395584|65|2931037
1.3.6.1.2.1.31.1.1.1.3.67399680|65|0
1.3.6.1.2.1.31.1.1.1.3.67403776|65|0
1.3.6.1.2.1.31.1.1.1.3.67407872|65|0
1.3.6.1.2.1.31.1.1.1.3.67411968|65|0
1.3.6.1.2.1.31.1.1.1.3.67416064|65|0
1.3.6.1.2.1.31.1.1.1.3.67420160|65|0
1.3.6.1.2.1.31.1.1.1.3.67424256|65|0
1.3.6.1.2.1.31.1.1.1.3.67428352|65|0
1.3.6.1.2.1.31.1.1.1.3.67432448|65|0
1.3.6.1.2.1.31.1.1.1.3.67436544|65|0
1.3.6.1.2.1.31.1.1.1.3.134266880|65|0
1.3.6.1.2.1.31.1.1.1.3.135938048|65|0
1.3.6.1.2.1.31.1.1.1.4.67375104|65|0
1.3.6.1.2.1.31.1.1.1.4.67379200|65|0
1.3.6.1.2.1.31.1.1.1.4.67383296|65|0
1.3.6.1.2.1.31.1.1.1.4.67387392|65|0
1.3.6.1.2.1.31.1.1.1.4.67391488|65|0
1.3.6.1.2.1.31.1.1.1.4.67395584|65|0
1.3.6.1.2.1.31.1.1.1.4.67399680|65|0
1.3.6.1.2.1.31.1.1.1.4.67403776|65|0
1.3.6.1.2.1.31.1.1.1.4.67407872|65|0
1.3.6.1.2.1.31.1.1.1.4.67411968|65|0
1.3.6.1.2.1.31.1.1.1.4.67416064|65|0
1.3.6.1.2.1.31.1.1.1.4.67420160|65|0
1.3.6.1.2.1.31.1.1.1.4.67424256|65|0
1.3.6.1.2.1.31.1.1.1.4.67428352|65|0
1.3.6.1.2.1.31.1.1.1.4.67432448|65|0
1.3.6.1.2.1.31.1.1.1.4.67436544|65|0
1.3.6.1.2.1.31.1.1.1.4.134266880|65|0
1.3.6.1.2.1.31.1.1.1.4.135938048|65|0
1.3.6.1.2.1.31.1.1.1.5.67375104|65|5277041
1.3.6.1.2.1.31.1.1.1.5.67379200|65|0
1.3.6.1.2.1.31.1.1.1.5.67383296|65|0
1.3.6.1.2.1.31.1.1.1.5.67387392|65|0
1.3.6.1.2.1.31.1.1.1.5.67391488|65|5350822
1.3.6.1.2.1.31.1.1.1.5.67395584|65|5350822
1.3.6.1.2.1.31.1.1.1.5.67399680|65|5350822
1.3.6.1.2.1.31.1.1.1.5.67403776|65|5350822
1.3.6.1.2.1.31.1.1.1.5.67407872|65|0
1.3.6.1.2.1.31.1.1.1.5.67411968|65|0
1.3.6.1.2.1.31.1.1.1.5.67416064|65|0
1.3.6.1.2.1.31.1.1.1.5.67420160|65|0
1.3.6.1.2.1.31.1.1.1.5.67424256|65|0
1.3.6.1.2.1.31.1.1.1.5.67428352|65|0
1.3.6.1.2.1.31.1.1.1.5.67432448|65|0
1.3.6.1.2.1.31.1.1.1.5.67436544|65|0
1.3.6.1.2.1.31.1.1.1.5.134266880|65|0
1.3.6.1.2.1.31.1.1.1.5.135938048|65|0
1.3.6.1.2.1.31.1.1.1.6.67375104|70|6009636365468
1.3.6.1.2.1.31.1.1.1.6.67379200|70|0
1.3.6.1.2.1.31.1.1.1.6.67383296|70|0
1.3.6.1.2.1.31.1.1.1.6.67387392|70|0
1.3.6.1.2.1.31.1.1.1.6.67391488|70|250062906475
1.3.6.1.2.1.31.1.1.1.6.67395584|70|429101814583
1.3.6.1.2.1.31.1.1.1.6.67399680|70|0
1.3.6.1.2.1.31.1.1.1.6.67403776|70|0
1.3.6.1.2.1.31.1.1.1.6.67407872|70|0
1.3.6.1.2.1.31.1.1.1.6.67411968|70|0
1.3.6.1.2.1.31.1.1.1.6.67416064|70|0
1.3.6.1.2.1.31.1.1.1.6.67420160|70|0
1.3.6.1.2.1.31.1.1.1.6.67424256|70|0
1.3.6.1.2.1.31.1.1.1.6.67428352|70|0
1.3.6.1.2.1.31.1.1.1.6.67432448|70|0
1.3.6.1.2.1.31.1.1.1.6.67436544|70|0
1.3.6.1.2.1.31.1.1.1.6.134266880|70|0
1.3.6.1.2.1.31.1.1.1.6.135938048|70|0
1.3.6.1.2.1.31.1.1.1.7.67375104|70|4363854674
1.3.6.1.2.1.31.1.1.1.7.67379200|70|0
1.3.6.1.2.1.31.1.1.1.7.67383296|70|0
1.3.6.1.2.1.31.1.1.1.7.67387392|70|0
1.3.6.1.2.1.31.1.1.1.7.67391488|70|1073445774
1.3.6.1.2.1.31.1.1.1.7.67395584|70|1435791346
1.3.6.1.2.1.31.1.1.1.7.67399680|70|0
1.3.6.1.2.1.31.1.1.1.7.67403776|70|0
1.3.6.1.2.1.31.1.1.1.7.67407872|70|0
1.3.6.1.2.1.31.1.1.1.7.67411968|70|0
1.3.6.1.2.1.31.1.1.1.7.67416064|70|0
1.3.6.1.2.1.31.1.1.1.7.67420160|70|0
1.3.6.1.2.1.31.1.1.1.7.67424256|70|0
1.3.6.1.2.1.31.1.1.1.7.67428352|70|0
1.3.6.1.2.1.31.1.1.1.7.67432448|70|0
1.3.6.1.2.1.31.1.1.1.7.67436544|70|0
1.3.6.1.2.1.31.1.1.1.7.134266880|70|0
1.3.6.1.2.1.31.1.1.1.7.135938048|70|0
1.3.6.1.2.1.31.1.1.1.8.67375104|70|0
1.3.6.1.2.1.31.1.1.1.8.67379200|70|0
1.3.6.1.2.1.31.1.1.1.8.67383296|70|0
1.3.6.1.2.1.31.1.1.1.8.67387392|70|0
1.3.6.1.2.1.31.1.1.1.8.67391488|70|42509
1.3.6.1.2.1.31.1.1.1.8.67395584|70|223034
1.3.6.1.2.1.31.1.1.1.8.67399680|70|0
1.3.6.1.2.1.31.1.1.1.8.67403776|70|0
1.3.6.1.2.1.31.1.1.1.8.67407872|70|0
1.3.6.1.2.1.31.1.1.1.8.67411968|70|0
1.3.6.1.2.1.31.1.1.1.8.67416064|70|0
1.3.6.1.2.1.31.1.1.1.8.67420160|70|0
1.3.6.1.2.1.31.1.1.1.8.67424256|70|0
1.3.6.1.2.1.31.1.1.1.8.67428352|70|0
1.3.6.1.2.1.31.1.1.1.8.67432448|70|0
1.3.6.1.2.1.31.1.1.1.8.67436544|70|0
1.3.6.1.2.1.31.1.1.1.8.134266880|70|0
1.3.6.1.2.1.31.1.1.1.8.135938048|70|0
1.3.6.1.2.1.31.1.1.1.9.67375104|70|5375067
1.3.6.1.2.1.31.1.1.1.9.67379200|70|0
1.3.6.1.2.1.31.1.1.1.9.67383296|70|0
1.3.6.1.2.1.31.1.1.1.9.67387392|70|0
1.3.6.1.2.1.31.1.1.1.9.67391488|70|2354150
1.3.6.1.2.1.31.1.1.1.9.67395584|70|2931037
1.3.6.1.2.1.31.1.1.1.9.67399680|70|0
1.3.6.1.2.1.31.1.1.1.9.67403776|70|0
1.3.6.1.2.1.31.1.1.1.9.67407872|70|0
1.3.6.1.2.1.31.1.1.1.9.67411968|70|0
1.3.6.1.2.1.31.1.1.1.9.67416064|70|0
1.3.6.1.2.1.31.1.1.1.9.67420160|70|0
1.3.6.1.2.1.31.1.1.1.9.67424256|70|0
1.3.6.1.2.1.31.1.1.1.9.67428352|70|0
1.3.6.1.2.1.31.1.1.1.9.67432448|70|0
1.3.6.1.2.1.31.1.1.1.9.67436544|70|0
1.3.6.1.2.1.31.1.1.1.9.134266880|70|0
1.3.6.1.2.1.31.1.1.1.9.135938048|70|0
1.3.6.1.2.1.31.1.1.1.10.67375104|70|689467127083
1.3.6.1.2.1.31.1.1.1.10.67379200|70|0
1.3.6.1.2.1.31.1.1.1.10.67383296|70|0
1.3.6.1.2.1.31.1.1.1.10.67387392|70|0
1.3.6.1.2.1.31.1.1.1.10.67391488|70|2635776331650
1.3.6.1.2.1.31.1.1.1.10.67395584|70|3356966942496
1.3.6.1.2.1.31.1.1.1.10.67399680|70|478819022
1.3.6.1.2.1.31.1.1.1.10.67403776|70|478819022
1.3.6.1.2.1.31.1.1.1.10.67407872|70|0
1.3.6.1.2.1.31.1.1.1.10.67411968|70|0
1.3.6.1.2.1.31.1.1.1.10.67416064|70|0
1.3.6.1.2.1.31.1.1.1.10.67420160|70|0
1.3.6.1.2.1.31.1.1.1.10.67424256|70|0
1.3.6.1.2.1.31.1.1.1.10.67428352|70|0
1.3.6.1.2.1.31.1.1.1.10.67432448|70|0
1.3.6.1.2.1.31.1.1.1.10.67436544|70|0
1.3.6.1.2.1.31.1.1.1.10.134266880|70|0
1.3.6.1.2.1.31.1.1.1.10.135938048|70|0
1.3.6.1.2.1.31.1.1.1.11.67375104|70|2510798266
1.3.6.1.2.1.31.1.1.1.11.67379200|70|0
1.3.6.1.2.1.31.1.1.1.11.67383296|70|0
1.3.6.1.2.1.31.1.1.1.11.67387392|70|0
1.3.6.1.2.1.31.1.1.1.11.67391488|70|1899809363
1.3.6.1.2.1.31.1.1.1.11.67395584|70|2463205868
1.3.6.1.2.1.31.1.1.1.11.67399680|70|69759
1.3.6.1.2.1.31.1.1.1.11.67403776|70|69759
1.3.6.1.2.1.31.1.1.1.11.67407872|70|0
1.3.6.1.2.1.31.1.1.1.11.67411968|70|0
1.3.6.1.2.1.31.1.1.1.11.67416064|70|0
1.3.6.1.2.1.31.1.1.1.11.67420160|70|0
1.3.6.1.2.1.31.1.1.1.11.67424256|70|0
1.3.6.1.2.1.31.1.1.1.11.67428352|70|0
1.3.6.1.2.1.31.1.1.1.11.67432448|70|0
1.3.6.1.2.1.31.1.1.1.11.67436544|70|0
1.3.6.1.2.1.31.1.1.1.11.134266880|70|0
1.3.6.1.2.1.31.1.1.1.11.135938048|70|0
1.3.6.1.2.1.31.1.1.1.12.67375104|70|0
1.3.6.1.2.1.31.1.1.1.12.67379200|70|0
1.3.6.1.2.1.31.1.1.1.12.67383296|70|0
1.3.6.1.2.1.31.1.1.1.12.67387392|70|0
1.3.6.1.2.1.31.1.1.1.12.67391488|70|0
1.3.6.1.2.1.31.1.1.1.12.67395584|70|0
1.3.6.1.2.1.31.1.1.1.12.67399680|70|0
1.3.6.1.2.1.31.1.1.1.12.67403776|70|0
1.3.6.1.2.1.31.1.1.1.12.67407872|70|0
1.3.6.1.2.1.31.1.1.1.12.67411968|70|0
1.3.6.1.2.1.31.1.1.1.12.67416064|70|0
1.3.6.1.2.1.31.1.1.1.12.67420160|70|0
1.3.6.1.2.1.31.1.1.1.12.67424256|70|0
1.3.6.1.2.1.31.1.1.1.12.67428352|70|0
1.3.6.1.2.1.31.1.1.1.12.67432448|70|0
1.3.6.1.2.1.31.1.1.1.12.67436544|70|0
1.3.6.1.2.1.31.1.1.1.12.134266880|70|0
1.3.6.1.2.1.31.1.1.1.12.135938048|70|0
1.3.6.1.2.1.31.1.1.1.13.67375104|70|5277041
1.3.6.1.2.1.31.1.1.1.13.67379200|70|0
1.3.6.1.2.1.31.1.1.1.13.67383296|70|0
1.3.6.1.2.1.31.1.1.1.13.67387392|70|0
1.3.6.1.2.1.31.1.1.1.13.67391488|70|5350822
1.3.6.1.2.1.31.1.1.1.13.67395584|70|5350822
1.3.6.1.2.1.31.1.1.1.13.67399680|70|5350822
1.3.6.1.2.1.31.1.1.1.13.67403776|70|5350822
1.3.6.1.2.1.31.1.1.1.13.67407872|70|0
1.3.6.1.2.1.31.1.1.1.13.67411968|70|0
1.3.6.1.2.1.31.1.1.1.13.67416064|70|0
1.3.6.1.2.1.31.1.1.1.13.67420160|70|0
1.3.6.1.2.1.31.1.1.1.13.67424256|70|0
1.3.6.1.2.1.31.1.1.1.13.67428352|70|0
1.3.6.1.2.1.31.1.1.1.13.67432448|70|0
1.3.6.1.2.1.31.1.1.1.13.67436544|70|0
1.3.6.1.2.1.31.1.1.1.13.134266880|70|0
1.3.6.1.2.1.31.1.1.1.13.135938048|70|0
1.3.6.1.2.1.31.1.1.1.14.67375104|2|2
1.3.6.1.2.1.31.1.1.1.14.67379200|2|2
1.3.6.1.2.1.31.1.1.1.14.67383296|2|2
1.3.6.1.2.1.31.1.1.1.14.67387392|2|2
1.3.6.1.2.1.31.1.1.1.14.67391488|2|2
1.3.6.1.2.1.31.1.1.1.14.67395584|2|2
1.3.6.1.2.1.31.1.1.1.14.67399680|2|2
1.3.6.1.2.1.31.1.1.1.14.67403776|2|2
1.3.6.1.2.1.31.1.1.1.14.67407872|2|2
1.3.6.1.2.1.31.1.1.1.14.67411968|2|2
1.3.6.1.2.1.31.1.1.1.14.67416064|2|2
1.3.6.1.2.1.31.1.1.1.14.67420160|2|2
1.3.6.1.2.1.31.1.1.1.14.67424256|2|2
1.3.6.1.2.1.31.1.1.1.14.67428352|2|2
1.3.6.1.2.1.31.1.1.1.14.67432448|2|2
1.3.6.1.2.1.31.1.1.1.14.67436544|2|2
1.3.6.1.2.1.31.1.1.1.14.134266880|2|2
1.3.6.1.2.1.31.1.1.1.14.135938048|2|2
1.3.6.1.2.1.31.1.1.1.15.67375104|66|1000
1.3.6.1.2.1.31.1.1.1.15.67379200|66|1000
1.3.6.1.2.1.31.1.1.1.15.67383296|66|1000
1.3.6.1.2.1.31.1.1.1.15.67387392|66|1000
1.3.6.1.2.1.31.1.1.1.15.67391488|66|1000
1.3.6.1.2.1.31.1.1.1.15.67395584|66|1000
1.3.6.1.2.1.31.1.1.1.15.67399680|66|1000
1.3.6.1.2.1.31.1.1.1.15.67403776|66|1000
1.3.6.1.2.1.31.1.1.1.15.67407872|66|1000
1.3.6.1.2.1.31.1.1.1.15.67411968|66|1000
1.3.6.1.2.1.31.1.1.1.15.67416064|66|1000
1.3.6.1.2.1.31.1.1.1.15.67420160|66|1000
1.3.6.1.2.1.31.1.1.1.15.67424256|66|1000
1.3.6.1.2.1.31.1.1.1.15.67428352|66|1000
1.3.6.1.2.1.31.1.1.1.15.67432448|66|1000
1.3.6.1.2.1.31.1.1.1.15.67436544|66|1000
1.3.6.1.2.1.31.1.1.1.15.134266880|66|10
1.3.6.1.2.1.31.1.1.1.15.135938048|66|10
1.3.6.1.2.1.31.1.1.1.16.67375104|2|2
1.3.6.1.2.1.31.1.1.1.16.67379200|2|2
1.3.6.1.2.1.31.1.1.1.16.67383296|2|2
1.3.6.1.2.1.31.1.1.1.16.67387392|2|2
1.3.6.1.2.1.31.1.1.1.16.67391488|2|2
1.3.6.1.2.1.31.1.1.1.16.67395584|2|2
1.3.6.1.2.1.31.1.1.1.16.67399680|2|2
1.3.6.1.2.1.31.1.1.1.16.67403776|2|2
1.3.6.1.2.1.31.1.1.1.16.67407872|2|2
1.3.6.1.2.1.31.1.1.1.16.67411968|2|2
1.3.6.1.2.1.31.1.1.1.16.67416064|2|2
1.3.6.1.2.1.31.1.1.1.16.67420160|2|2
1.3.6.1.2.1.31.1.1.1.16.67424256|2|2
1.3.6.1.2.1.31.1.1.1.16.67428352|2|2
1.3.6.1.2.1.31.1.1.1.16.67432448|2|2
1.3.6.1.2.1.31.1.1.1.16.67436544|2|2
1.3.6.1.2.1.31.1.1.1.16.134266880|2|1
1.3.6.1.2.1.31.1.1.1.16.135938048|2|1
1.3.6.1.2.1.31.1.1.1.17.67375104|2|1
1.3.6.1.2.1.31.1.1.1.17.67379200|2|1
1.3.6.1.2.1.31.1.1.1.17.67383296|2|1
1.3.6.1.2.1.31.1.1.1.17.67387392|2|1
1.3.6.1.2.1.31.1.1.1.17.67391488|2|1
1.3.6.1.2.1.31.1.1.1.17.67395584|2|1
1.3.6.1.2.1.31.1.1.1.17.67399680|2|1
1.3.6.1.2.1.31.1.1.1.17.67403776|2|1
1.3.6.1.2.1.31.1.1.1.17.67407872|2|1
1.3.6.1.2.1.31.1.1.1.17.67411968|2|1
1.3.6.1.2.1.31.1.1.1.17.67416064|2|1
1.3.6.1.2.1.31.1.1.1.17.67420160|2|1
1.3.6.1.2.1.31.1.1.1.17.67424256|2|1
1.3.6.1.2.1.31.1.1.1.17.67428352|2|1
1.3.6.1.2.1.31.1.1.1.17.67432448|2|1
1.3.6.1.2.1.31.1.1.1.17.67436544|2|1
1.3.6.1.2.1.31.1.1.1.17.134266880|2|2
1.3.6.1.2.1.31.1.1.1.17.135938048|2|2
1.3.6.1.2.1.31.1.1.1.18.67375104|4|eth1/1
1.3.6.1.2.1.31.1.1.1.18.67379200|4|eth1/2
1.3.6.1.2.1.31.1.1.1.18.67383296|4|eth1/3
1.3.6.1.2.1.31.1.1.1.18.67387392|4|eth1/4
1.3.6.1.2.1.31.1.1.1.18.67391488|4|pon1/5
1.3.6.1.2.1.31.1.1.1.18.67395584|4|pon1/6
1.3.6.1.2.1.31.1.1.1.18.67399680|4|pon1/7
1.3.6.1.2.1.31.1.1.1.18.67403776|4|pon1/8
1.3.6.1.2.1.31.1.1.1.18.67407872|4|pon1/9
1.3.6.1.2.1.31.1.1.1.18.67411968|4|pon1/10
1.3.6.1.2.1.31.1.1.1.18.67416064|4|pon1/11
1.3.6.1.2.1.31.1.1.1.18.67420160|4|pon1/12
1.3.6.1.2.1.31.1.1.1.18.67424256|4|pon1/13
1.3.6.1.2.1.31.1.1.1.18.67428352|4|pon1/14
1.3.6.1.2.1.31.1.1.1.18.67432448|4|pon1/15
1.3.6.1.2.1.31.1.1.1.18.67436544|4|pon1/16
1.3.6.1.2.1.31.1.1.1.18.134266880|4|telnet
1.3.6.1.2.1.31.1.1.1.18.135938048|4|V0105
1.3.6.1.2.1.31.1.1.1.19.67375104|67|0
1.3.6.1.2.1.31.1.1.1.19.67379200|67|0
1.3.6.1.2.1.31.1.1.1.19.67383296|67|0
1.3.6.1.2.1.31.1.1.1.19.67387392|67|0
1.3.6.1.2.1.31.1.1.1.19.67391488|67|0
1.3.6.1.2.1.31.1.1.1.19.67395584|67|0
1.3.6.1.2.1.31.1.1.1.19.67399680|67|0
1.3.6.1.2.1.31.1.1.1.19.67403776|67|0
1.3.6.1.2.1.31.1.1.1.19.67407872|67|0
1.3.6.1.2.1.31.1.1.1.19.67411968|67|0
1.3.6.1.2.1.31.1.1.1.19.67416064|67|0
1.3.6.1.2.1.31.1.1.1.19.67420160|67|0
1.3.6.1.2.1.31.1.1.1.19.67424256|67|0
1.3.6.1.2.1.31.1.1.1.19.67428352|67|0
1.3.6.1.2.1.31.1.1.1.19.67432448|67|0
1.3.6.1.2.1.31.1.1.1.19.67436544|67|0
1.3.6.1.2.1.31.1.1.1.19.134266880|67|0
1.3.6.1.2.1.31.1.1.1.19.135938048|67|0
1.3.6.1.2.1.31.1.2.1.3.1.2|2|1
1.3.6.1.2.1.31.1.2.1.3.2.3|2|1
1.3.6.1.2.1.31.1.2.1.3.3.4|2|1
1.3.6.1.2.1.31.1.2.1.3.4.5|2|1
1.3.6.1.2.1.31.1.2.1.3.5.6|2|1
1.3.6.1.2.1.31.1.2.1.3.6.7|2|1
1.3.6.1.2.1.31.1.2.1.3.7.8|2|1
1.3.6.1.2.1.31.1.2.1.3.8.9|2|1
1.3.6.1.2.1.31.1.2.1.3.9.10|2|1
1.3.6.1.2.1.31.1.2.1.3.10.11|2|1
1.3.6.1.2.1.31.1.2.1.3.11.12|2|1
1.3.6.1.4.1.10072.2.15.1.4.1.1.3.1.1|2|5
1.3.6.1.4.1.10072.2.15.1.4.1.1.3.1.2|2|5
1.3.6.1.4.1.10072.2.15.1.4.1.1.3.1.3|2|5
1.3.6.1.4.1.10072.2.15.1.4.1.1.3.1.4|2|5
1.3.6.1.4.1.10072.2.15.1.5.1.1.2.1|2|3
1.3.6.1.4.1.10072.2.15.1.5.1.1.2.2|2|3
1.3.6.1.4.1.10072.2.15.1.5.1.1.3.1|2|34
1.3.6.1.4.1.10072.2.15.1.5.1.1.3.2|2|34
1.3.6.1.4.1.10072.2.15.1.6.1.1.2.1|2|34
1.3.6.1.4.1.10072.2.20.1.1.1.1.1.7.1|4|V5.2.59.0
1.3.6.1.4.1.10072.2.20.1.1.1.1.1.8.1|4|V1R12B192sp18
1.3.6.1.4.1.10072.2.20.1.1.1.1.1.9.1|4|V2.3B1
1.3.6.1.4.1.10072.2.20.1.1.2.1.1.18.1.1|4|4PA0S16091000090
1.3.6.1.4.1.10072.2.20.1.1.2.1.1.19.1.1|2|4
1.3.6.1.4.1.10072.2.20.1.1.2.1.1.20.1.1|2|29
1.3.6.1.4.1.10072.2.20.1.1.2.1.1.28.1.1|2|256