Ifotec product integration (#12038)

* IFOTEC new product integration

* change source code indentation

* change source code for code climate checking

* change source code for code climate checking

* deletion of an unnecessary line

* add ifotec.php and test units

* forgetting about the previous commit

* modifications of test units

* add a test units

* optimization and add test units

* change SMNP mode request

* source code cleanup and and file for test units

* update .snmprec file

* update json test file

* update json test file

* IFOTEC mib integration

* add IFOTEC mib files

* IFOTEC mib integration for sensors

* cancel $oid2 unset

* delete useless line
This commit is contained in:
MARMONIER Cédric 2020-09-10 10:38:36 +02:00 committed by GitHub
parent 0c0e64d909
commit 7cd68f7ec6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 3386 additions and 4 deletions

57
LibreNMS/OS/Ifotec.php Normal file
View File

@ -0,0 +1,57 @@
<?php
/**
* ifotec.inc.php
*
* LibreNMS os poller module for Ifotec devices
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright LibreNMS contributors
* @author Cedric MARMONIER
*/
namespace LibreNMS\OS;
use Illuminate\Support\Str;
use LibreNMS\Interfaces\Discovery\OSDiscovery;
use LibreNMS\OS;
class Ifotec extends OS implements OSDiscovery
{
public function discoverOS(): void
{
$device = $this->getDeviceModel();
if (Str::startsWith($device->sysObjectID, '.1.3.6.1.4.1.21362.100.')) {
$ifoSysProductIndex = snmp_get($this->getDevice(), 'ifoSysProductIndex.0', '-Oqv', 'IFOTEC-SMI');
if ($ifoSysProductIndex !== null) {
$oids = [
'ifoSysSerialNumber.' . $ifoSysProductIndex,
'ifoSysFirmware.' . $ifoSysProductIndex,
'ifoSysBootloader.' . $ifoSysProductIndex
];
$data = snmp_get_multi($this->getDevice(), $oids, ['-OQUs'], 'IFOTEC-SMI');
$device->version = $data[1]['ifoSysFirmware'] . " (Bootloader " . $data[1]['ifoSysBootloader'] . ")";
$device->serial = $data[1]['ifoSysSerialNumber'];
}
}
// sysDecr struct = (<product_reference> . ' : ' . <product_description>) OR (<product_reference>)
list($device->hardware) = explode(' : ', $device->sysDescr, 2);
}
}

View File

@ -8,5 +8,3 @@ discovery:
-
sysObjectID:
- .1.3.6.1.4.1.21362
-
sysDescr: Commutateur

View File

@ -0,0 +1,66 @@
<?php
/**
* ifotec.inc.php
*
* Grab all data under IFOTEC enterprise oid and process it for yaml consumption
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright LibreNMS contributors
* @author Cedric MARMONIER
*/
if (Str::startsWith($device['sysObjectID'], '.1.3.6.1.4.1.21362.100.')) {
$pre_cache['ifoSysProductIndex'] = snmp_get($device, 'ifoSysProductIndex.0', '-Oqv', 'IFOTEC-SMI');
if ($pre_cache['ifoSysProductIndex'] != null) {
$virtual_tables = [
'ifoTempName' => '/\.1\.3\.6\.1\.4\.1\.21362\.101\.2\.1\.1\.3\.' . $pre_cache['ifoSysProductIndex'] . '\.(\d+)/',
'ifoTempDescr' => '/\.1\.3\.6\.1\.4\.1\.21362\.101\.2\.1\.1\.4\.' . $pre_cache['ifoSysProductIndex'] . '\.(\d+)/',
'ifoTempValue' => '/\.1\.3\.6\.1\.4\.1\.21362\.101\.2\.1\.1\.5\.' . $pre_cache['ifoSysProductIndex'] . '\.(\d+)/',
'ifoTempAlarmStatus' => '/\.1\.3\.6\.1\.4\.1\.21362\.101\.2\.1\.1\.6\.' . $pre_cache['ifoSysProductIndex'] . '\.(\d+)/',
'ifoTempLowThldAlarm' => '/\.1\.3\.6\.1\.4\.1\.21362\.101\.2\.1\.1\.7\.' . $pre_cache['ifoSysProductIndex'] . '\.(\d+)/',
'ifoTempHighThldAlarm' => '/\.1\.3\.6\.1\.4\.1\.21362\.101\.2\.1\.1\.8\.' . $pre_cache['ifoSysProductIndex'] . '\.(\d+)/',
'ifoTempLowThldWarning' => '/\.1\.3\.6\.1\.4\.1\.21362\.101\.2\.1\.1\.9\.' . $pre_cache['ifoSysProductIndex'] . '\.(\d+)/',
'ifoTempHighThldWarning' => '/\.1\.3\.6\.1\.4\.1\.21362\.101\.2\.1\.1\.10\.' . $pre_cache['ifoSysProductIndex'] . '\.(\d+)/',
];
// .ifoTemperatureTable.ifoTemperatureEntry.<ifoSysProductIndex>
$data = snmp_walk($device, 'ifoTemperatureEntry', '-OQn', 'IFOTEC-SMI');
var_dump($data);
foreach (explode(PHP_EOL, $data) as $line) {
list($oid, $value) = explode(' = ', $line);
$processed = false;
foreach ($virtual_tables as $vt_name => $vt_regex) {
if (preg_match($vt_regex, $oid, $matches)) {
$index = $matches[1];
$pre_cache['ifoTemperatureTable'][$index][$vt_name] = ['value' => $value, 'oid' => $oid];
$processed = true;
break; // skip rest
}
}
if (!$processed) {
$pre_cache[$oid] = [[$oid => $value]];
}
}
var_dump($pre_cache['ifoTemperatureTable']);
}
}
unset($data);

View File

@ -0,0 +1,46 @@
<?php
/**
* ifotec.inc.php
*
* Ifotec temperature sensors
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright LibreNMS contributors
* @author Cedric MARMONIER
*/
$index = 0;
foreach ($pre_cache['ifoTemperatureTable'] as $ifoSensor) {
discover_sensor(
$valid['sensor'],
'temperature',
$device,
$ifoSensor['ifoTempValue']['oid'],
$ifoSensor['ifoTempName']['value'], // each sensor id must be unique
'ifotecSensor',
$ifoSensor['ifoTempDescr']['value'],
10, // divider
1, // multiplier
$ifoSensor['ifoTempLowThldAlarm']['value'] / 10,
$ifoSensor['ifoTempLowThldWarning']['value'] / 10,
$ifoSensor['ifoTempHighThldWarning']['value'] / 10,
$ifoSensor['ifoTempHighThldAlarm']['value'] / 10,
$ifoSensor['ifoTempValue']['value'] / 10
);
$index++;
}

View File

@ -0,0 +1,42 @@
-- *****************************************************************
-- IFOTEC-PRODUCTLIST-MIB.mib: IFOTEC Product Object Identifier Assignments
--
-- Jully 2020, MARMONIER Cedric
--
-- Copyright (c) 1998-2020 by IFOTEC.
-- All rights reserved.
--
-- ****************************************************************
IFOTEC-PRODUCTLIST-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-IDENTITY FROM SNMPv2-SMI
ifotec FROM IFOTEC-SMI;
ifotecProductList MODULE-IDENTITY
LAST-UPDATED "202007290000Z"
ORGANIZATION "IFOTEC"
CONTACT-INFO "contact@ifotec.com"
DESCRIPTION "Product list of IFOTEC enterprise."
::= { ifotec 100 }
ifotecEthernetProducts OBJECT IDENTIFIER ::= { ifotecProductList 1 }
-- ifotecMediaConverters OBJECT IDENTIFIER ::= { ifotecEthernetProducts 1 }
-- ifotecManagedMediaConverters OBJECT IDENTIFIER ::= { ifotecEthernetProducts 2 }
-- ifotecL2Switches OBJECT IDENTIFIER ::= { ifotecEthernetProducts 3 }
ifotecL2ManagedSwitches OBJECT IDENTIFIER ::= { ifotecEthernetProducts 4 }
-- ifotecHxDFFamilly OBJECT IDENTIFIER ::= { ifotecL2ManagedSwitches 1 }
-- ifotecHNDFFamilly OBJECT IDENTIFIER ::= { ifotecL2ManagedSwitches 2 }
ifotecINETFamilly OBJECT IDENTIFIER ::= { ifotecL2ManagedSwitches 3 }
INET-2GE2GF-AS-101 OBJECT IDENTIFIER ::= { ifotecINETFamilly 1 }
INET-2GP2GF-AS-101 OBJECT IDENTIFIER ::= { ifotecINETFamilly 2 }
INET-4GE2GF-KS-001 OBJECT IDENTIFIER ::= { ifotecINETFamilly 3 }
INET-4GP2GF-AS-001 OBJECT IDENTIFIER ::= { ifotecINETFamilly 4 }
INET-4GE2GF2XF-R1-001 OBJECT IDENTIFIER ::= { ifotecINETFamilly 5 }
-- ifotecRouters OBJECT IDENTIFIER ::= { ifotecEthernetProducts 5 }
END

291
mibs/ifotec/IFOTEC-SMI Normal file
View File

@ -0,0 +1,291 @@
-- *****************************************************************
-- IFOTEC-SMI.mib: IFOTEC Enterprise Structure of Management Information
--
-- Jully 2020, MARMONIER Cedric
--
-- Copyright (c) 1998-2020 by IFOTEC.
-- All rights reserved.
--
-- ****************************************************************
IFOTEC-SMI DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-IDENTITY, OBJECT-TYPE, enterprises, TimeTicks FROM SNMPv2-SMI
TEXTUAL-CONVENTION, DisplayString FROM SNMPv2-TC;
ifotec MODULE-IDENTITY
LAST-UPDATED "202007280000Z"
ORGANIZATION "IFOTEC"
CONTACT-INFO "contact@ifotec.com"
DESCRIPTION
"The Structure of Management Information for the
IFOTEC enterprise."
::= { enterprises 21362 }
IfotecDataStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents the data status."
SYNTAX INTEGER {
noData(1),
ok(2),
warning(3),
warningLowThreshold(4),
warningHighThreshold(5),
error(6),
errorLowThreshold(7),
errorHighThreshold(8),
errorWrongData(9),
errorLowDataOverflow(10),
errorHighDataOverflow(11)
}
-- ****************************************************************
ifotecGeneral OBJECT-IDENTITY
STATUS current
DESCRIPTION
"General informations about the IFOTEC product."
::= { ifotec 101 }
-- *****************************************
ifotecSystem OBJECT-IDENTITY
STATUS current
DESCRIPTION "IFOTEC System informations."
::= { ifotecGeneral 1 }
ifoSysProductIndex OBJECT-TYPE
SYNTAX Integer32 MAX-ACCESS read-only STATUS current
DESCRIPTION "The ifoSysIndex of the product." ::= { ifotecSystem 1 }
-- ******************
ifoSysTable OBJECT-TYPE
SYNTAX SEQUENCE OF IfoSysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "list of systems present."
::= { ifotecSystem 2 }
ifoSysEntry OBJECT-TYPE
SYNTAX IfoSysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing system informations."
INDEX { ifoSysIndex }
::= { ifoSysTable 1 }
IfoSysEntry ::= SEQUENCE {
ifoSysIndex Integer32,
ifoSysRef DisplayString,
ifoSysInfo DisplayString,
ifoSysFamilly DisplayString,
ifoSysSerialNumber DisplayString,
ifoSysDateCode DisplayString,
ifoSysFirmware DisplayString,
ifoSysBootloader DisplayString,
ifoSysDescr DisplayString,
ifoSysLocation DisplayString,
ifoSysContact DisplayString,
ifoSysUpTime TimeTicks
}
ifoSysIndex OBJECT-TYPE
SYNTAX Integer32 MAX-ACCESS not-accessible STATUS current
DESCRIPTION "A unique value, greater than zero, for each product."
::= { ifoSysEntry 1 }
ifoSysRef
OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current
DESCRIPTION "Product reference" ::= { ifoSysEntry 2 }
ifoSysInfo
OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current
DESCRIPTION "Product information" ::= { ifoSysEntry 3 }
ifoSysFamilly
OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current
DESCRIPTION "Product familly" ::= { ifoSysEntry 4 }
ifoSysSerialNumber
OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current
DESCRIPTION "Serial number" ::= { ifoSysEntry 5 }
ifoSysDateCode
OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current
DESCRIPTION "Date code" ::= { ifoSysEntry 6 }
ifoSysFirmware
OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current
DESCRIPTION "Firmware version" ::= { ifoSysEntry 7 }
ifoSysBootloader
OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current
DESCRIPTION "Bootloader version" ::= { ifoSysEntry 8 }
ifoSysDescr
OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current
DESCRIPTION "Administratively-assigned name (sysName)" ::= { ifoSysEntry 9 }
ifoSysLocation
OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current
DESCRIPTION "Physical location (sysLocation)" ::= { ifoSysEntry 10 }
ifoSysContact
OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current
DESCRIPTION "Physical location (sysContact)" ::= { ifoSysEntry 11 }
ifoSysUpTime
OBJECT-TYPE SYNTAX TimeTicks MAX-ACCESS read-only STATUS current
DESCRIPTION "The time (in hundredths of a second) since the
network management portion of the system was last
re-initialized (sysUpTime)."
::= { ifoSysEntry 12 }
-- ******************
ifoSysMibTable OBJECT-TYPE
SYNTAX SEQUENCE OF IfoSysMibEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "list of mibs presents in the system."
::= { ifotecSystem 3 }
ifoSysMibEntry OBJECT-TYPE
SYNTAX IfoSysMibEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing mib informations."
INDEX { ifoSysORIfoSysIndex, ifoSysORIndex }
::= { ifoSysMibTable 1 }
IfoSysMibEntry ::= SEQUENCE {
ifoSysORIfoSysIndex Integer32,
ifoSysORIndex Integer32,
ifoSysORID OBJECT IDENTIFIER,
ifoSysORDescr DisplayString
}
ifoSysORIfoSysIndex OBJECT-TYPE
SYNTAX Integer32 MAX-ACCESS not-accessible STATUS current
DESCRIPTION "The index value which uniquely identifies the system in ifoSysMibTable. It is the same value used by ifoSysIndex."
::= { ifoSysMibEntry 1 }
ifoSysORIndex OBJECT-TYPE
SYNTAX Integer32 MAX-ACCESS not-accessible STATUS current
DESCRIPTION "A unique value, greater than zero, for each mib presents in the system."
::= { ifoSysMibEntry 2 }
ifoSysORID
OBJECT-TYPE SYNTAX OBJECT IDENTIFIER MAX-ACCESS read-only STATUS current
DESCRIPTION "An unique identifier to designate the mib." ::= { ifoSysMibEntry 3 }
ifoSysORDescr
OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current
DESCRIPTION "Description of the mib." ::= { ifoSysMibEntry 4 }
-- *****************************************
ifotecTemperatures OBJECT-IDENTITY
STATUS current
DESCRIPTION "IFOTEC Temperature Sensors."
::= { ifotecGeneral 2 }
ifoTemperatureTable OBJECT-TYPE
SYNTAX SEQUENCE OF IfoTemperatureEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A list of sensors."
::= { ifotecTemperatures 1 }
ifoTemperatureEntry OBJECT-TYPE
SYNTAX IfoTemperatureEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing sensor informations."
INDEX { ifoTempIfoSysIndex, ifoTempIndex }
::= { ifoTemperatureTable 1 }
IfoTemperatureEntry ::= SEQUENCE {
ifoTempIfoSysIndex Integer32,
ifoTempIndex Integer32,
ifoTempName DisplayString,
ifoTempDescr DisplayString,
ifoTempValue Integer32,
ifoTempAlarmStatus IfotecDataStatus,
ifoTempLowThldAlarm Integer32,
ifoTempHighThldAlarm Integer32,
ifoTempLowThldWarning Integer32,
ifoTempHighThldWarning Integer32
}
ifoTempIfoSysIndex OBJECT-TYPE
SYNTAX Integer32 MAX-ACCESS not-accessible STATUS current
DESCRIPTION "The index value which uniquely identifies the system in ifoSysMibTable. It is the same value used by ifoSysIndex."
::= { ifoTemperatureEntry 1 }
ifoTempIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A unique value, greater than zero, for each temperature sensor."
::= { ifoTemperatureEntry 2 }
ifoTempName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of the temperature sensor."
::= { ifoTemperatureEntry 3 }
ifoTempDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The description of the temeprature sensor."
::= { ifoTemperatureEntry 4 }
ifoTempValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "the value of the sensor in 0.1 degree Celsius."
::= { ifoTemperatureEntry 5 }
ifoTempAlarmStatus OBJECT-TYPE
SYNTAX IfotecDataStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the sensor alarm status."
::= { ifoTemperatureEntry 6 }
ifoTempLowThldAlarm OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "the value in 0.1 degree Celsius of the low threshold alarm."
::= { ifoTemperatureEntry 7 }
ifoTempHighThldAlarm OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "the value in 0.1 degree Celsius of the high threshold alarm."
::= { ifoTemperatureEntry 8 }
ifoTempLowThldWarning OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "the value in 0.1 degree Celsius of the low threshold warning."
::= { ifoTemperatureEntry 9 }
ifoTempHighThldWarning OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "the value in 0.1 degree Celsius of the high threshold warning."
::= { ifoTemperatureEntry 10 }
-- ****************************************************************
ifotecModules OBJECT-IDENTITY
STATUS current
DESCRIPTION
"ifotecModules provides a root object identifier
from which MODULE-IDENTITY values may be assigned."
::= { ifotec 102 }
END

View File

@ -8,7 +8,7 @@
"sysDescr": "CPEFibre-G4G-PVN-001 : Commutateur Ethernet 4 ports 1000BASE-T / 1 port 1000BASE-X",
"sysContact": null,
"version": null,
"hardware": null,
"hardware": "CPEFibre-G4G-PVN-001",
"features": null,
"os": "ifotec",
"type": "network",
@ -26,7 +26,7 @@
"sysDescr": "CPEFibre-G4G-PVN-001 : Commutateur Ethernet 4 ports 1000BASE-T / 1 port 1000BASE-X",
"sysContact": "contact@ifotec.com",
"version": null,
"hardware": null,
"hardware": "CPEFibre-G4G-PVN-001",
"features": null,
"os": "ifotec",
"type": "network",

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,582 @@
1.3.6.1.2.1.1.1.0|4|INETPOE-4GP2GF : Switch 2 ports 1000BASE-X / 4 ports 1000BASE-T PoE
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.21362.100.1.4.3.4
1.3.6.1.2.1.1.3.0|67|33533834
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.1|4|port 1
1.3.6.1.2.1.2.2.1.2.2|4|port 2
1.3.6.1.2.1.2.2.1.2.3|4|port 3
1.3.6.1.2.1.2.2.1.2.4|4|port 4
1.3.6.1.2.1.2.2.1.2.5|4|port 5
1.3.6.1.2.1.2.2.1.2.6|4|port 6
1.3.6.1.2.1.2.2.1.2.7|4|port C
1.3.6.1.2.1.2.2.1.2.1001|4|interface MGNT
1.3.6.1.2.1.2.2.1.2.1002|4|interface IF1
1.3.6.1.2.1.2.2.1.2.1101|4|bridge BPDU
1.3.6.1.2.1.2.2.1.3.1|2|6
1.3.6.1.2.1.2.2.1.3.2|2|6
1.3.6.1.2.1.2.2.1.3.3|2|6
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.3.6|2|6
1.3.6.1.2.1.2.2.1.3.7|2|1
1.3.6.1.2.1.2.2.1.3.1001|2|135
1.3.6.1.2.1.2.2.1.3.1002|2|135
1.3.6.1.2.1.2.2.1.3.1101|2|209
1.3.6.1.2.1.2.2.1.4.1|2|1500
1.3.6.1.2.1.2.2.1.4.2|2|1500
1.3.6.1.2.1.2.2.1.4.3|2|1500
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|1500
1.3.6.1.2.1.2.2.1.4.6|2|1500
1.3.6.1.2.1.2.2.1.4.7|2|1500
1.3.6.1.2.1.2.2.1.4.1001|2|1500
1.3.6.1.2.1.2.2.1.4.1002|2|1500
1.3.6.1.2.1.2.2.1.4.1101|2|1500
1.3.6.1.2.1.2.2.1.6.1|4x|000000000000
1.3.6.1.2.1.2.2.1.6.2|4x|000000000000
1.3.6.1.2.1.2.2.1.6.3|4x|000000000000
1.3.6.1.2.1.2.2.1.6.4|4x|000000000000
1.3.6.1.2.1.2.2.1.6.5|4x|000000000000
1.3.6.1.2.1.2.2.1.6.6|4x|000000000000
1.3.6.1.2.1.2.2.1.6.7|4x|000000000000
1.3.6.1.2.1.2.2.1.6.1001|4x|0012F1CED001
1.3.6.1.2.1.2.2.1.6.1002|4x|0012F1CED001
1.3.6.1.2.1.2.2.1.6.1101|4x|0012F1000000
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.3|2|1
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.7.6|2|1
1.3.6.1.2.1.2.2.1.7.7|2|1
1.3.6.1.2.1.2.2.1.7.1001|2|1
1.3.6.1.2.1.2.2.1.7.1002|2|2
1.3.6.1.2.1.2.2.1.7.1101|2|1
1.3.6.1.2.1.2.2.1.8.1|2|2
1.3.6.1.2.1.2.2.1.8.2|2|2
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|2
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.8.6|2|2
1.3.6.1.2.1.2.2.1.8.7|2|1
1.3.6.1.2.1.2.2.1.8.1001|2|1
1.3.6.1.2.1.2.2.1.8.1002|2|2
1.3.6.1.2.1.2.2.1.8.1101|2|1
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.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|423
1.3.6.1.2.1.2.2.1.9.6|67|0
1.3.6.1.2.1.2.2.1.9.7|67|124
1.3.6.1.2.1.2.2.1.9.1001|67|490
1.3.6.1.2.1.2.2.1.9.1002|67|490
1.3.6.1.2.1.2.2.1.9.1101|67|490
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.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.13.6|65|0
1.3.6.1.2.1.2.2.1.13.7|65|0
1.3.6.1.2.1.2.2.1.13.1001|65|0
1.3.6.1.2.1.2.2.1.13.1002|65|0
1.3.6.1.2.1.2.2.1.13.1101|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.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.14.6|65|0
1.3.6.1.2.1.2.2.1.14.7|65|7
1.3.6.1.2.1.2.2.1.14.1001|65|0
1.3.6.1.2.1.2.2.1.14.1002|65|0
1.3.6.1.2.1.2.2.1.14.1101|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.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.19.6|65|0
1.3.6.1.2.1.2.2.1.19.7|65|0
1.3.6.1.2.1.2.2.1.19.1001|65|0
1.3.6.1.2.1.2.2.1.19.1002|65|0
1.3.6.1.2.1.2.2.1.19.1101|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.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.20.6|65|0
1.3.6.1.2.1.2.2.1.20.7|65|0
1.3.6.1.2.1.2.2.1.20.1001|65|0
1.3.6.1.2.1.2.2.1.20.1002|65|0
1.3.6.1.2.1.2.2.1.20.1101|65|0
1.3.6.1.2.1.4.13.0|2|15
1.3.6.1.2.1.4.20.1.1.10.0.201.14|64|10.0.201.14
1.3.6.1.2.1.4.20.1.2.10.0.201.14|2|1001
1.3.6.1.2.1.4.20.1.3.10.0.201.14|64|255.255.248.0
1.3.6.1.2.1.4.31.1.1.3.1|65|1428173
1.3.6.1.2.1.4.31.1.1.4.1|70|1428174
1.3.6.1.2.1.4.31.1.1.5.1|65|159790362
1.3.6.1.2.1.4.31.1.1.6.1|70|159790506
1.3.6.1.2.1.4.31.1.1.7.1|65|0
1.3.6.1.2.1.4.31.1.1.8.1|65|0
1.3.6.1.2.1.4.31.1.1.9.1|65|16193
1.3.6.1.2.1.4.31.1.1.10.1|65|0
1.3.6.1.2.1.4.31.1.1.11.1|65|0
1.3.6.1.2.1.4.31.1.1.12.1|65|0
1.3.6.1.2.1.4.31.1.1.13.1|70|0
1.3.6.1.2.1.4.31.1.1.14.1|65|0
1.3.6.1.2.1.4.31.1.1.15.1|65|0
1.3.6.1.2.1.4.31.1.1.16.1|65|0
1.3.6.1.2.1.4.31.1.1.17.1|65|0
1.3.6.1.2.1.4.31.1.1.18.1|65|1411995
1.3.6.1.2.1.4.31.1.1.19.1|70|1411996
1.3.6.1.2.1.4.31.1.1.20.1|65|1276854
1.3.6.1.2.1.4.31.1.1.21.1|70|1276855
1.3.6.1.2.1.4.31.1.1.22.1|65|0
1.3.6.1.2.1.4.31.1.1.23.1|65|0
1.3.6.1.2.1.4.31.1.1.24.1|70|0
1.3.6.1.2.1.4.31.1.1.25.1|65|0
1.3.6.1.2.1.4.31.1.1.26.1|65|0
1.3.6.1.2.1.4.31.1.1.27.1|65|0
1.3.6.1.2.1.4.31.1.1.28.1|65|0
1.3.6.1.2.1.4.31.1.1.29.1|65|0
1.3.6.1.2.1.4.31.1.1.30.1|65|1276864
1.3.6.1.2.1.4.31.1.1.31.1|70|1276865
1.3.6.1.2.1.4.31.1.1.32.1|65|195066222
1.3.6.1.2.1.4.31.1.1.33.1|70|195066369
1.3.6.1.2.1.4.31.1.1.34.1|65|0
1.3.6.1.2.1.4.31.1.1.35.1|70|0
1.3.6.1.2.1.4.31.1.1.36.1|65|0
1.3.6.1.2.1.4.31.1.1.37.1|70|0
1.3.6.1.2.1.4.31.1.1.38.1|65|0
1.3.6.1.2.1.4.31.1.1.39.1|70|0
1.3.6.1.2.1.4.31.1.1.40.1|65|0
1.3.6.1.2.1.4.31.1.1.41.1|70|0
1.3.6.1.2.1.4.31.1.1.42.1|65|153326
1.3.6.1.2.1.4.31.1.1.43.1|70|153326
1.3.6.1.2.1.4.31.1.1.44.1|65|3
1.3.6.1.2.1.4.31.1.1.45.1|70|3
1.3.6.1.2.1.4.31.1.1.46.1|67|0
1.3.6.1.2.1.4.31.1.1.47.1|66|0
1.3.6.1.2.1.4.35.1.4.1001.1.4.10.0.200.72|4x|C81F6612FFB0
1.3.6.1.2.1.4.35.1.4.1001.1.4.10.0.201.55|4x|002324C05350
1.3.6.1.2.1.4.35.1.4.1001.1.4.10.0.201.71|4x|000C29A81D35
1.3.6.1.2.1.4.35.1.4.1001.1.4.10.0.201.132|4x|C81F662B1E76
1.3.6.1.2.1.4.35.1.4.1001.1.4.10.0.207.108|4x|000C29EC45E0
1.3.6.1.2.1.4.35.1.4.1001.1.4.10.0.207.250|4x|4C9EFF6FF3F2
1.3.6.1.2.1.4.35.1.4.1001.1.4.192.168.100.34|4x|64006A265BB0
1.3.6.1.2.1.5.29.1.2.1|65|3594
1.3.6.1.2.1.5.29.1.3.1|65|0
1.3.6.1.2.1.5.29.1.4.1|65|3594
1.3.6.1.2.1.5.29.1.5.1|65|0
1.3.6.1.2.1.5.30.1.3.1.0|65|0
1.3.6.1.2.1.5.30.1.3.1.3|65|0
1.3.6.1.2.1.5.30.1.3.1.8|65|3594
1.3.6.1.2.1.5.30.1.4.1.0|65|3594
1.3.6.1.2.1.5.30.1.4.1.3|65|17
1.3.6.1.2.1.5.30.1.4.1.8|65|0
1.3.6.1.2.1.6.5.0|65|0
1.3.6.1.2.1.6.6.0|65|48
1.3.6.1.2.1.6.7.0|65|0
1.3.6.1.2.1.6.8.0|65|4
1.3.6.1.2.1.6.9.0|66|0
1.3.6.1.2.1.6.10.0|65|66907
1.3.6.1.2.1.6.11.0|65|84416
1.3.6.1.2.1.6.12.0|65|4
1.3.6.1.2.1.6.14.0|65|0
1.3.6.1.2.1.6.15.0|65|32
1.3.6.1.2.1.6.18.0|70|84416
1.3.6.1.2.1.6.19.1.7.1.4.10.0.201.14.80.1.4.10.0.200.72.50852|2|1
1.3.6.1.2.1.7.1.0|65|1212979
1.3.6.1.2.1.7.2.0|65|128462
1.3.6.1.2.1.7.3.0|65|0
1.3.6.1.2.1.7.4.0|65|1188787
1.3.6.1.2.1.11.1.0|65|664533
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.30.0|2|2
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.17.1.1.0|4x|0012F1CED001
1.3.6.1.2.1.17.1.4.1.2.1|2|1
1.3.6.1.2.1.17.1.4.1.2.2|2|2
1.3.6.1.2.1.17.1.4.1.2.3|2|3
1.3.6.1.2.1.17.1.4.1.2.4|2|4
1.3.6.1.2.1.17.1.4.1.2.5|2|5
1.3.6.1.2.1.17.1.4.1.2.6|2|6
1.3.6.1.2.1.17.1.4.1.2.8|2|1001
1.3.6.1.2.1.17.1.4.1.2.9|2|1002
1.3.6.1.2.1.17.2.1.0|2|3
1.3.6.1.2.1.17.2.2.0|2|32768
1.3.6.1.2.1.17.2.3.0|67|335330
1.3.6.1.2.1.17.2.4.0|65|1
1.3.6.1.2.1.17.2.5.0|4x|200000083028ECA5
1.3.6.1.2.1.17.2.6.0|2|20000
1.3.6.1.2.1.17.2.7.0|2|5
1.3.6.1.2.1.17.2.8.0|2|2000
1.3.6.1.2.1.17.2.9.0|2|200
1.3.6.1.2.1.17.2.10.0|2|100
1.3.6.1.2.1.17.2.11.0|2|1500
1.3.6.1.2.1.17.2.12.0|2|2000
1.3.6.1.2.1.17.2.13.0|2|200
1.3.6.1.2.1.17.2.14.0|2|1500
1.3.6.1.2.1.17.2.15.1.1.1|2|1
1.3.6.1.2.1.17.2.15.1.1.2|2|2
1.3.6.1.2.1.17.2.15.1.1.3|2|3
1.3.6.1.2.1.17.2.15.1.1.4|2|4
1.3.6.1.2.1.17.2.15.1.1.5|2|5
1.3.6.1.2.1.17.2.15.1.1.6|2|6
1.3.6.1.2.1.17.2.15.1.2.1|2|128
1.3.6.1.2.1.17.2.15.1.2.2|2|128
1.3.6.1.2.1.17.2.15.1.2.3|2|128
1.3.6.1.2.1.17.2.15.1.2.4|2|128
1.3.6.1.2.1.17.2.15.1.2.5|2|128
1.3.6.1.2.1.17.2.15.1.2.6|2|128
1.3.6.1.2.1.17.2.15.1.3.1|2|1
1.3.6.1.2.1.17.2.15.1.3.2|2|1
1.3.6.1.2.1.17.2.15.1.3.3|2|1
1.3.6.1.2.1.17.2.15.1.3.4|2|1
1.3.6.1.2.1.17.2.15.1.3.5|2|5
1.3.6.1.2.1.17.2.15.1.3.6|2|1
1.3.6.1.2.1.17.2.15.1.4.1|2|1
1.3.6.1.2.1.17.2.15.1.4.2|2|1
1.3.6.1.2.1.17.2.15.1.4.3|2|1
1.3.6.1.2.1.17.2.15.1.4.4|2|1
1.3.6.1.2.1.17.2.15.1.4.5|2|1
1.3.6.1.2.1.17.2.15.1.4.6|2|1
1.3.6.1.2.1.17.2.15.1.5.1|2|0
1.3.6.1.2.1.17.2.15.1.5.2|2|0
1.3.6.1.2.1.17.2.15.1.5.3|2|0
1.3.6.1.2.1.17.2.15.1.5.4|2|0
1.3.6.1.2.1.17.2.15.1.5.5|2|20000
1.3.6.1.2.1.17.2.15.1.5.6|2|0
1.3.6.1.2.1.17.2.15.1.6.1|4x|0000000000000000
1.3.6.1.2.1.17.2.15.1.6.2|4x|0000000000000000
1.3.6.1.2.1.17.2.15.1.6.3|4x|0000000000000000
1.3.6.1.2.1.17.2.15.1.6.4|4x|0000000000000000
1.3.6.1.2.1.17.2.15.1.6.5|4x|200000083028ECA5
1.3.6.1.2.1.17.2.15.1.6.6|4x|0000000000000000
1.3.6.1.2.1.17.2.15.1.7.1|2|0
1.3.6.1.2.1.17.2.15.1.7.2|2|0
1.3.6.1.2.1.17.2.15.1.7.3|2|0
1.3.6.1.2.1.17.2.15.1.7.4|2|0
1.3.6.1.2.1.17.2.15.1.7.5|2|20000
1.3.6.1.2.1.17.2.15.1.7.6|2|0
1.3.6.1.2.1.17.2.15.1.8.1|4x|0000000000000000
1.3.6.1.2.1.17.2.15.1.8.2|4x|0000000000000000
1.3.6.1.2.1.17.2.15.1.8.3|4x|0000000000000000
1.3.6.1.2.1.17.2.15.1.8.4|4x|0000000000000000
1.3.6.1.2.1.17.2.15.1.8.5|4x|200000083028ECA5
1.3.6.1.2.1.17.2.15.1.8.6|4x|0000000000000000
1.3.6.1.2.1.17.2.15.1.9.1|4x|0000
1.3.6.1.2.1.17.2.15.1.9.2|4x|0000
1.3.6.1.2.1.17.2.15.1.9.3|4x|0000
1.3.6.1.2.1.17.2.15.1.9.4|4x|0000
1.3.6.1.2.1.17.2.15.1.9.5|4|2
1.3.6.1.2.1.17.2.15.1.9.6|4x|0000
1.3.6.1.2.1.17.2.15.1.10.1|65|0
1.3.6.1.2.1.17.2.15.1.10.2|65|0
1.3.6.1.2.1.17.2.15.1.10.3|65|0
1.3.6.1.2.1.17.2.15.1.10.4|65|0
1.3.6.1.2.1.17.2.15.1.10.5|65|1
1.3.6.1.2.1.17.2.15.1.10.6|65|0
1.3.6.1.2.1.17.2.16.0|2|2
1.3.6.1.2.1.17.2.17.0|2|6
1.3.6.1.2.1.17.2.19.1.1.1|2|2
1.3.6.1.2.1.17.2.19.1.1.2|2|2
1.3.6.1.2.1.17.2.19.1.1.3|2|2
1.3.6.1.2.1.17.2.19.1.1.4|2|2
1.3.6.1.2.1.17.2.19.1.1.5|2|2
1.3.6.1.2.1.17.2.19.1.1.6|2|2
1.3.6.1.2.1.17.2.19.1.2.1|2|2
1.3.6.1.2.1.17.2.19.1.2.2|2|2
1.3.6.1.2.1.17.2.19.1.2.3|2|2
1.3.6.1.2.1.17.2.19.1.2.4|2|2
1.3.6.1.2.1.17.2.19.1.2.5|2|2
1.3.6.1.2.1.17.2.19.1.2.6|2|2
1.3.6.1.2.1.17.2.19.1.3.1|2|2
1.3.6.1.2.1.17.2.19.1.3.2|2|2
1.3.6.1.2.1.17.2.19.1.3.3|2|2
1.3.6.1.2.1.17.2.19.1.3.4|2|2
1.3.6.1.2.1.17.2.19.1.3.5|2|2
1.3.6.1.2.1.17.2.19.1.3.6|2|2
1.3.6.1.2.1.17.2.19.1.4.1|2|2
1.3.6.1.2.1.17.2.19.1.4.2|2|2
1.3.6.1.2.1.17.2.19.1.4.3|2|2
1.3.6.1.2.1.17.2.19.1.4.4|2|2
1.3.6.1.2.1.17.2.19.1.4.5|2|2
1.3.6.1.2.1.17.2.19.1.4.6|2|2
1.3.6.1.2.1.17.2.19.1.5.1|2|2
1.3.6.1.2.1.17.2.19.1.5.2|2|2
1.3.6.1.2.1.17.2.19.1.5.3|2|2
1.3.6.1.2.1.17.2.19.1.5.4|2|2
1.3.6.1.2.1.17.2.19.1.5.5|2|1
1.3.6.1.2.1.17.2.19.1.5.6|2|2
1.3.6.1.2.1.17.2.19.1.6.1|2|0
1.3.6.1.2.1.17.2.19.1.6.2|2|0
1.3.6.1.2.1.17.2.19.1.6.3|2|0
1.3.6.1.2.1.17.2.19.1.6.4|2|0
1.3.6.1.2.1.17.2.19.1.6.5|2|0
1.3.6.1.2.1.17.2.19.1.6.6|2|0
1.3.6.1.2.1.17.7.1.1.1.0|2|1
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.8.48.40.236.165|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.8.48.40.236.167|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.12.41.7.248.82|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.12.41.27.3.78|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.12.41.67.141.155|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.12.41.94.219.212|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.12.41.168.29.53|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.12.41.169.236.212|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.12.41.178.180.236|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.12.41.222.63.127|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.12.41.232.237.103|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.12.41.236.69.224|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.18.241.0.25.58|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.18.241.187.187.187|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.35.36.192.83.80|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.216.97.26.242.141|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.216.97.28.148.179|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.224.7.12.173.20|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.44.250.162.41.107.195|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.44.250.162.41.107.228|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.48.5.92.140.81.29|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.48.156.35.238.52.66|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.64.176.52.206.235.20|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.68.55.230.231.215.87|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.76.17.191.55.144.77|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.76.158.255.111.243.242|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.80.154.76.120.49.180|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.84.238.117.249.31.109|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.88.213.110.52.219.220|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.104.20.1.63.219.55|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.108.75.144.225.42.255|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.120.43.203.151.98.131|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.144.177.28.141.52.193|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.148.184.109.7.90.28|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.164.31.114.142.83.110|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.184.202.58.117.156.69|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.196.101.22.225.210.202|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.196.217.135.64.178.23|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.200.31.102.18.255.171|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.200.31.102.18.255.176|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.200.31.102.43.30.118|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.200.31.102.43.30.248|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.200.31.102.62.49.230|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.212.109.109.229.250.66|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.232.106.100.163.201.60|2|5
1.3.6.1.2.1.17.7.1.2.2.1.2.200.244.140.80.179.173.13|2|5
1.3.6.1.2.1.17.7.1.4.3.1.1.1|4|Default
1.3.6.1.2.1.17.7.1.4.3.1.1.200|4|
1.3.6.1.2.1.17.7.1.4.3.1.2.1|4x|00000000
1.3.6.1.2.1.17.7.1.4.3.1.2.200|4x|FD000000
1.3.6.1.2.1.17.7.1.4.3.1.4.1|4x|00000000
1.3.6.1.2.1.17.7.1.4.3.1.4.200|4x|FC000000
1.3.6.1.2.1.31.1.1.1.1.1|4|1
1.3.6.1.2.1.31.1.1.1.1.2|4|2
1.3.6.1.2.1.31.1.1.1.1.3|4|3
1.3.6.1.2.1.31.1.1.1.1.4|4|4
1.3.6.1.2.1.31.1.1.1.1.5|4|5
1.3.6.1.2.1.31.1.1.1.1.6|4|6
1.3.6.1.2.1.31.1.1.1.1.7|4|C
1.3.6.1.2.1.31.1.1.1.1.1001|4|MGNT
1.3.6.1.2.1.31.1.1.1.1.1002|4|IF1
1.3.6.1.2.1.31.1.1.1.1.1101|4|BPDU
1.3.6.1.2.1.31.1.1.1.2.1|65|0
1.3.6.1.2.1.31.1.1.1.2.2|65|0
1.3.6.1.2.1.31.1.1.1.2.3|65|0
1.3.6.1.2.1.31.1.1.1.2.4|65|0
1.3.6.1.2.1.31.1.1.1.2.5|65|508623
1.3.6.1.2.1.31.1.1.1.2.6|65|0
1.3.6.1.2.1.31.1.1.1.2.7|65|2
1.3.6.1.2.1.31.1.1.1.2.1001|65|0
1.3.6.1.2.1.31.1.1.1.2.1002|65|0
1.3.6.1.2.1.31.1.1.1.2.1101|65|188021
1.3.6.1.2.1.31.1.1.1.3.1|65|0
1.3.6.1.2.1.31.1.1.1.3.2|65|0
1.3.6.1.2.1.31.1.1.1.3.3|65|0
1.3.6.1.2.1.31.1.1.1.3.4|65|0
1.3.6.1.2.1.31.1.1.1.3.5|65|2491460
1.3.6.1.2.1.31.1.1.1.3.6|65|0
1.3.6.1.2.1.31.1.1.1.3.7|65|10
1.3.6.1.2.1.31.1.1.1.3.1001|65|2491455
1.3.6.1.2.1.31.1.1.1.3.1002|65|0
1.3.6.1.2.1.31.1.1.1.3.1101|65|0
1.3.6.1.2.1.31.1.1.1.4.1|65|0
1.3.6.1.2.1.31.1.1.1.4.2|65|0
1.3.6.1.2.1.31.1.1.1.4.3|65|0
1.3.6.1.2.1.31.1.1.1.4.4|65|0
1.3.6.1.2.1.31.1.1.1.4.5|65|2
1.3.6.1.2.1.31.1.1.1.4.6|65|0
1.3.6.1.2.1.31.1.1.1.4.7|65|188021
1.3.6.1.2.1.31.1.1.1.4.1001|65|0
1.3.6.1.2.1.31.1.1.1.4.1002|65|0
1.3.6.1.2.1.31.1.1.1.4.1101|65|0
1.3.6.1.2.1.31.1.1.1.5.1|65|0
1.3.6.1.2.1.31.1.1.1.5.2|65|0
1.3.6.1.2.1.31.1.1.1.5.3|65|0
1.3.6.1.2.1.31.1.1.1.5.4|65|0
1.3.6.1.2.1.31.1.1.1.5.5|65|9
1.3.6.1.2.1.31.1.1.1.5.6|65|0
1.3.6.1.2.1.31.1.1.1.5.7|65|2491447
1.3.6.1.2.1.31.1.1.1.5.1001|65|10
1.3.6.1.2.1.31.1.1.1.5.1002|65|0
1.3.6.1.2.1.31.1.1.1.5.1101|65|0
1.3.6.1.2.1.31.1.1.1.6.1|70|0
1.3.6.1.2.1.31.1.1.1.6.2|70|0
1.3.6.1.2.1.31.1.1.1.6.3|70|0
1.3.6.1.2.1.31.1.1.1.6.4|70|0
1.3.6.1.2.1.31.1.1.1.6.5|70|393326018
1.3.6.1.2.1.31.1.1.1.6.6|70|0
1.3.6.1.2.1.31.1.1.1.6.7|70|224335201
1.3.6.1.2.1.31.1.1.1.6.1001|70|335304135
1.3.6.1.2.1.31.1.1.1.6.1002|70|0
1.3.6.1.2.1.31.1.1.1.6.1101|70|12033344
1.3.6.1.2.1.31.1.1.1.7.1|70|0
1.3.6.1.2.1.31.1.1.1.7.2|70|0
1.3.6.1.2.1.31.1.1.1.7.3|70|0
1.3.6.1.2.1.31.1.1.1.7.4|70|0
1.3.6.1.2.1.31.1.1.1.7.5|70|1278338
1.3.6.1.2.1.31.1.1.1.7.6|70|0
1.3.6.1.2.1.31.1.1.1.7.7|70|1294703
1.3.6.1.2.1.31.1.1.1.7.1001|70|1276529
1.3.6.1.2.1.31.1.1.1.7.1002|70|0
1.3.6.1.2.1.31.1.1.1.7.1101|70|0
1.3.6.1.2.1.31.1.1.1.8.1|70|0
1.3.6.1.2.1.31.1.1.1.8.2|70|0
1.3.6.1.2.1.31.1.1.1.8.3|70|0
1.3.6.1.2.1.31.1.1.1.8.4|70|0
1.3.6.1.2.1.31.1.1.1.8.5|70|508624
1.3.6.1.2.1.31.1.1.1.8.6|70|0
1.3.6.1.2.1.31.1.1.1.8.7|70|2
1.3.6.1.2.1.31.1.1.1.8.1001|70|0
1.3.6.1.2.1.31.1.1.1.8.1002|70|0
1.3.6.1.2.1.31.1.1.1.8.1101|70|188021
1.3.6.1.2.1.31.1.1.1.9.1|70|0
1.3.6.1.2.1.31.1.1.1.9.2|70|0
1.3.6.1.2.1.31.1.1.1.9.3|70|0
1.3.6.1.2.1.31.1.1.1.9.4|70|0
1.3.6.1.2.1.31.1.1.1.9.5|70|2491471
1.3.6.1.2.1.31.1.1.1.9.6|70|0
1.3.6.1.2.1.31.1.1.1.9.7|70|10
1.3.6.1.2.1.31.1.1.1.9.1001|70|2491459
1.3.6.1.2.1.31.1.1.1.9.1002|70|0
1.3.6.1.2.1.31.1.1.1.9.1101|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|0
1.3.6.1.2.1.31.1.1.1.10.2|70|0
1.3.6.1.2.1.31.1.1.1.10.3|70|0
1.3.6.1.2.1.31.1.1.1.10.4|70|0
1.3.6.1.2.1.31.1.1.1.10.5|70|219294344
1.3.6.1.2.1.31.1.1.1.10.6|70|0
1.3.6.1.2.1.31.1.1.1.10.7|70|363155746
1.3.6.1.2.1.31.1.1.1.10.1001|70|218886164
1.3.6.1.2.1.31.1.1.1.10.1002|70|0
1.3.6.1.2.1.31.1.1.1.10.1101|70|855
1.3.6.1.2.1.31.1.1.1.11.1|70|0
1.3.6.1.2.1.31.1.1.1.11.2|70|0
1.3.6.1.2.1.31.1.1.1.11.3|70|0
1.3.6.1.2.1.31.1.1.1.11.4|70|0
1.3.6.1.2.1.31.1.1.1.11.5|70|1294703
1.3.6.1.2.1.31.1.1.1.11.6|70|0
1.3.6.1.2.1.31.1.1.1.11.7|70|1276518
1.3.6.1.2.1.31.1.1.1.11.1001|70|1294755
1.3.6.1.2.1.31.1.1.1.11.1002|70|0
1.3.6.1.2.1.31.1.1.1.11.1101|70|0
1.3.6.1.2.1.31.1.1.1.12.1|70|0
1.3.6.1.2.1.31.1.1.1.12.2|70|0
1.3.6.1.2.1.31.1.1.1.12.3|70|0
1.3.6.1.2.1.31.1.1.1.12.4|70|0
1.3.6.1.2.1.31.1.1.1.12.5|70|2
1.3.6.1.2.1.31.1.1.1.12.6|70|0
1.3.6.1.2.1.31.1.1.1.12.7|70|188021
1.3.6.1.2.1.31.1.1.1.12.1001|70|0
1.3.6.1.2.1.31.1.1.1.12.1002|70|0
1.3.6.1.2.1.31.1.1.1.12.1101|70|15
1.3.6.1.2.1.31.1.1.1.13.1|70|0
1.3.6.1.2.1.31.1.1.1.13.2|70|0
1.3.6.1.2.1.31.1.1.1.13.3|70|0
1.3.6.1.2.1.31.1.1.1.13.4|70|0
1.3.6.1.2.1.31.1.1.1.13.5|70|9
1.3.6.1.2.1.31.1.1.1.13.6|70|0
1.3.6.1.2.1.31.1.1.1.13.7|70|2491457
1.3.6.1.2.1.31.1.1.1.13.1001|70|10
1.3.6.1.2.1.31.1.1.1.13.1002|70|0
1.3.6.1.2.1.31.1.1.1.13.1101|70|0
1.3.6.1.2.1.31.1.1.1.14.1|2|2
1.3.6.1.2.1.31.1.1.1.14.2|2|2
1.3.6.1.2.1.31.1.1.1.14.3|2|2
1.3.6.1.2.1.31.1.1.1.14.4|2|2
1.3.6.1.2.1.31.1.1.1.14.5|2|2
1.3.6.1.2.1.31.1.1.1.14.6|2|2
1.3.6.1.2.1.31.1.1.1.14.7|2|2
1.3.6.1.2.1.31.1.1.1.14.1001|2|2
1.3.6.1.2.1.31.1.1.1.14.1002|2|2
1.3.6.1.2.1.31.1.1.1.14.1101|2|2
1.3.6.1.2.1.31.1.1.1.15.1|66|1000
1.3.6.1.2.1.31.1.1.1.15.2|66|1000
1.3.6.1.2.1.31.1.1.1.15.3|66|1000
1.3.6.1.2.1.31.1.1.1.15.4|66|1000
1.3.6.1.2.1.31.1.1.1.15.5|66|1000
1.3.6.1.2.1.31.1.1.1.15.6|66|1000
1.3.6.1.2.1.31.1.1.1.15.7|66|100
1.3.6.1.2.1.31.1.1.1.15.1001|66|100
1.3.6.1.2.1.31.1.1.1.15.1002|66|0
1.3.6.1.2.1.31.1.1.1.15.1101|66|100
1.3.6.1.2.1.31.1.1.1.16.1|2|2
1.3.6.1.2.1.31.1.1.1.16.2|2|2
1.3.6.1.2.1.31.1.1.1.16.3|2|2
1.3.6.1.2.1.31.1.1.1.16.4|2|2
1.3.6.1.2.1.31.1.1.1.16.5|2|2
1.3.6.1.2.1.31.1.1.1.16.6|2|2
1.3.6.1.2.1.31.1.1.1.16.7|2|2
1.3.6.1.2.1.31.1.1.1.16.1001|2|2
1.3.6.1.2.1.31.1.1.1.16.1002|2|2
1.3.6.1.2.1.31.1.1.1.16.1101|2|2
1.3.6.1.2.1.31.1.1.1.17.1|2|1
1.3.6.1.2.1.31.1.1.1.17.2|2|1
1.3.6.1.2.1.31.1.1.1.17.3|2|1
1.3.6.1.2.1.31.1.1.1.17.4|2|1
1.3.6.1.2.1.31.1.1.1.17.5|2|1
1.3.6.1.2.1.31.1.1.1.17.6|2|1
1.3.6.1.2.1.31.1.1.1.17.7|2|1
1.3.6.1.2.1.31.1.1.1.17.1001|2|1
1.3.6.1.2.1.31.1.1.1.17.1002|2|1
1.3.6.1.2.1.31.1.1.1.17.1101|2|1
1.3.6.1.2.1.31.1.1.1.18.1|4|port 1
1.3.6.1.2.1.31.1.1.1.18.2|4|port 2
1.3.6.1.2.1.31.1.1.1.18.3|4|port 3
1.3.6.1.2.1.31.1.1.1.18.4|4|port 4
1.3.6.1.2.1.31.1.1.1.18.5|4|port 5
1.3.6.1.2.1.31.1.1.1.18.6|4|port 6
1.3.6.1.2.1.31.1.1.1.18.7|4|
1.3.6.1.2.1.31.1.1.1.18.1001|4|
1.3.6.1.2.1.31.1.1.1.18.1002|4|
1.3.6.1.2.1.31.1.1.1.18.1101|4|
1.3.6.1.2.1.31.1.1.1.19.1|67|0
1.3.6.1.2.1.31.1.1.1.19.2|67|0
1.3.6.1.2.1.31.1.1.1.19.3|67|0
1.3.6.1.2.1.31.1.1.1.19.4|67|0
1.3.6.1.2.1.31.1.1.1.19.5|67|0
1.3.6.1.2.1.31.1.1.1.19.6|67|0
1.3.6.1.2.1.31.1.1.1.19.7|67|0
1.3.6.1.2.1.31.1.1.1.19.1001|67|0
1.3.6.1.2.1.31.1.1.1.19.1002|67|0
1.3.6.1.2.1.31.1.1.1.19.1101|67|0
1.3.6.1.4.1.21362.101.1.1.0|2|1
1.3.6.1.4.1.21362.101.1.2.1.5.1|4|0051
1.3.6.1.4.1.21362.101.1.2.1.7.1|4|1.0.5d
1.3.6.1.4.1.21362.101.1.2.1.8.1|4|x.x.x
1.3.6.1.4.1.21362.101.2.1.1.3.1.1|4|INTERNAL_TEMPERATURE1
1.3.6.1.4.1.21362.101.2.1.1.4.1.1|4|Internal Temperature 1
1.3.6.1.4.1.21362.101.2.1.1.5.1.1|2|300
1.3.6.1.4.1.21362.101.2.1.1.6.1.1|2|2
1.3.6.1.4.1.21362.101.2.1.1.7.1.1|2|-100
1.3.6.1.4.1.21362.101.2.1.1.8.1.1|2|900
1.3.6.1.4.1.21362.101.2.1.1.9.1.1|2|0
1.3.6.1.4.1.21362.101.2.1.1.10.1.1|2|850