mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Add support for Infinera-Coriant Groove (#9843)
* Add support for Infinera Groove
This commit is contained in:
committed by
TheGreatDoc
parent
411f36a9a1
commit
09caced7ef
BIN
html/images/logos/infinera.png
Normal file
BIN
html/images/logos/infinera.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.0 KiB |
BIN
html/images/os/infinera.png
Normal file
BIN
html/images/os/infinera.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
32
includes/definitions/discovery/infinera-groove.yaml
Normal file
32
includes/definitions/discovery/infinera-groove.yaml
Normal file
@@ -0,0 +1,32 @@
|
||||
mib: CORIANT-GROOVE-MIB
|
||||
modules:
|
||||
sensors:
|
||||
pre-cache:
|
||||
data:
|
||||
- oid:
|
||||
- portId
|
||||
|
||||
power:
|
||||
data:
|
||||
-
|
||||
oid: shelfTable
|
||||
descr: 'Chassis Power Consumption'
|
||||
value: systemPowerConsumptionCurrent
|
||||
num_oid: '.1.3.6.1.4.1.42229.1.2.2.2.2.{{ $index }}'
|
||||
|
||||
temperature:
|
||||
data:
|
||||
-
|
||||
oid: shelfTable
|
||||
descr: 'Chassis Inlet'
|
||||
value: shelfInletTemperature
|
||||
num_oid: '.1.3.6.1.4.1.42229.1.2.3.1.1.1.3.{{ $index }}'
|
||||
index: 'shelfInletTemperature.{{ $index }}'
|
||||
skip_values: -99
|
||||
-
|
||||
oid: shelfTable
|
||||
descr: 'Chassis Outlet'
|
||||
value: shelfOutletTemperature
|
||||
num_oid: '.1.3.6.1.4.1.42229.1.2.3.1.1.1.4.{{ $index }}'
|
||||
index: 'shelfOutletTemperature.{{ $index }}'
|
||||
skip_values: -99
|
52
includes/definitions/infinera-groove.yaml
Normal file
52
includes/definitions/infinera-groove.yaml
Normal file
@@ -0,0 +1,52 @@
|
||||
os: infinera-groove
|
||||
text: 'Infinera Groove'
|
||||
type: network
|
||||
icon: infinera
|
||||
mib_dir:
|
||||
- infinera
|
||||
discovery_modules:
|
||||
ntp: false
|
||||
ospf: false
|
||||
stp: false
|
||||
ucd-diskio: false
|
||||
ucd-mib: false
|
||||
ipmi: false
|
||||
bgp-peers: false
|
||||
services: false
|
||||
vlans: false
|
||||
arp-table: false
|
||||
mef: false
|
||||
cisco-vrf-lite: false
|
||||
storage: false
|
||||
fdb-table: false
|
||||
wireless: false
|
||||
discovery-protocols: false
|
||||
hr-device: false
|
||||
ipv4-addresses: false
|
||||
ipv6-addresses: false
|
||||
processors: false
|
||||
mempools: false
|
||||
ports-stack: false
|
||||
ports: true
|
||||
poller_modules:
|
||||
ntp: false
|
||||
ospf: false
|
||||
stp: false
|
||||
ucd-diskio: false
|
||||
ucd-mib: false
|
||||
ipmi: false
|
||||
bgp-peers: false
|
||||
services: false
|
||||
libvirt-vminfo: false
|
||||
vmware-vminfo: false
|
||||
vlans: false
|
||||
arp-table: false
|
||||
mef: false
|
||||
cisco-vrf-lite: false
|
||||
storage: false
|
||||
over:
|
||||
- { graph: device_bits, text: 'Device Traffic' }
|
||||
- { graph: device_temperature, text: 'Device Temperature' }
|
||||
discovery:
|
||||
- sysObjectID:
|
||||
- .1.3.6.1.4.1.42229.1.2
|
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
/**
|
||||
* infinera-groove.inc.php
|
||||
*
|
||||
* LibreNMS chromatic_dispersion discovery module for Infinera Groove
|
||||
*
|
||||
* 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 2019 Nick Hilliard
|
||||
* @author Nick Hilliard <nick@foobar.org>
|
||||
*/
|
||||
|
||||
foreach ($pre_cache['infineragroove_portTable'] as $index => $data) {
|
||||
if (is_numeric($data['ochOsCD']) && $data['ochOsCD'] != -99) {
|
||||
$descr = $data['portAlias'].' CD';
|
||||
$oid = '.1.3.6.1.4.1.42229.1.2.4.1.19.1.1.23.' . $index;
|
||||
$value = $data['ochOsCD'];
|
||||
discover_sensor($valid['sensor'], 'chromatic_dispersion', $device, $oid, 'ochOsCD.'.$index, 'infinera-groove', $descr, null, '1', null, null, null, null, $value);
|
||||
}
|
||||
}
|
33
includes/discovery/sensors/dbm/infinera-groove.inc.php
Normal file
33
includes/discovery/sensors/dbm/infinera-groove.inc.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
/**
|
||||
* infinera-groove.inc.php
|
||||
*
|
||||
* LibreNMS dbm discovery module for Infinera Groove
|
||||
*
|
||||
* 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 2019 Nick Hilliard
|
||||
* @author Nick Hilliard <nick@foobar.org>
|
||||
*/
|
||||
|
||||
foreach ($pre_cache['infineragroove_portTable'] as $index => $data) {
|
||||
if (is_numeric($data['portRxOpticalPower']) && $data['portRxOpticalPower'] != -99) {
|
||||
$descr = $data['portAlias'].' Receive Power';
|
||||
$oid = '.1.3.6.1.4.1.42229.1.2.3.6.1.1.4.' . $index;
|
||||
$value = $data['portRxOpticalPower'];
|
||||
discover_sensor($valid['sensor'], 'dbm', $device, $oid, 'portRxOpticalPower.'.$index, 'infinera-groove', $descr, null, '1', null, null, null, null, $value);
|
||||
}
|
||||
}
|
36
includes/discovery/sensors/load/infinera-groove.inc.php
Normal file
36
includes/discovery/sensors/load/infinera-groove.inc.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
/**
|
||||
* infinera-groove.inc.php
|
||||
*
|
||||
* LibreNMS fanspeed discovery module for Infinera Groove
|
||||
*
|
||||
* 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 2019 Nick Hilliard
|
||||
* @author Nick Hilliard <nick@foobar.org>
|
||||
*/
|
||||
|
||||
foreach ($pre_cache['infineragroove_slotTable'] as $index => $data) {
|
||||
if (is_numeric($data['cardFanSpeedRate']) && $data['cardFanSpeedRate'] != -99) {
|
||||
$infinera_slot = 'slot-'.str_replace('.', '/', $index);
|
||||
$descr = 'Chassis fan '.$infinera_slot;
|
||||
$oid = '.1.3.6.1.4.1.42229.1.2.3.3.1.1.7.' . $index;
|
||||
$value = $data['cardFanSpeedRate'];
|
||||
discover_sensor($valid['sensor'], 'load', $device, $oid, 'cardFanSpeedRate.'.$index, 'infinera-groove', $descr, null, '1', 0, 20, 80, 100, $value);
|
||||
}
|
||||
}
|
||||
|
||||
unset($infinera_slot);
|
56
includes/discovery/sensors/pre-cache/infinera-groove.inc.php
Normal file
56
includes/discovery/sensors/pre-cache/infinera-groove.inc.php
Normal file
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/**
|
||||
* infinera-groove.inc.php
|
||||
*
|
||||
* LibreNMS sensor pre-cache module for Infinera Groove
|
||||
*
|
||||
* 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 2019 Nick Hilliard
|
||||
* @author Nick Hilliard <nick@foobar.org>
|
||||
*/
|
||||
|
||||
if (!is_array($pre_cache['infineragroove_portTable'])) {
|
||||
echo 'Caching OIDs:';
|
||||
$pre_cache['infineragroove_portTable'] = array();
|
||||
echo ' portTable';
|
||||
$pre_cache['infineragroove_portTable'] = snmpwalk_cache_multi_oid($device, 'portTable', $pre_cache['infineragroove_portTable'], 'CORIANT-GROOVE-MIB');
|
||||
echo ' OchOsTable';
|
||||
$pre_cache['infineragroove_portTable'] = snmpwalk_cache_multi_oid($device, 'OchOsTable', $pre_cache['infineragroove_portTable'], 'CORIANT-GROOVE-MIB');
|
||||
}
|
||||
|
||||
foreach (array_keys($pre_cache['infineragroove_portTable']) as $index) {
|
||||
$indexids = explode('.', $index);
|
||||
|
||||
if (isset($pre_cache['infineragroove_portTable'][$index]['ochOsAdminStatus'])) {
|
||||
$pre_cache['infineragroove_portTable'][$index]['portAlias'] = 'och-os-';
|
||||
} else {
|
||||
$pre_cache['infineragroove_portTable'][$index]['portAlias'] = 'port-';
|
||||
}
|
||||
$pre_cache['infineragroove_portTable'][$index]['portAlias'] .= $indexids[0].'/'.$indexids[1].'/'.$indexids[3];
|
||||
|
||||
unset($indexids);
|
||||
}
|
||||
|
||||
if (!is_array($pre_cache['infineragroove_slotTable'])) {
|
||||
$pre_cache['infineragroove_slotTable'] = array();
|
||||
echo ' slotTable';
|
||||
$pre_cache['infineragroove_slotTable'] = snmpwalk_cache_multi_oid($device, 'slotTable', $pre_cache['infineragroove_slotTable'], 'CORIANT-GROOVE-MIB');
|
||||
echo ' cardTable';
|
||||
$pre_cache['infineragroove_slotTable'] = snmpwalk_cache_multi_oid($device, 'cardTable', $pre_cache['infineragroove_slotTable'], 'CORIANT-GROOVE-MIB');
|
||||
}
|
||||
|
||||
echo "\n";
|
33
includes/discovery/sensors/snr/infinera-groove.inc.php
Normal file
33
includes/discovery/sensors/snr/infinera-groove.inc.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
/**
|
||||
* infinera-groove.inc.php
|
||||
*
|
||||
* LibreNMS snr discovery module for Infinera Groove
|
||||
*
|
||||
* 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 2019 Nick Hilliard
|
||||
* @author Nick Hilliard <nick@foobar.org>
|
||||
*/
|
||||
|
||||
foreach ($pre_cache['infineragroove_portTable'] as $index => $data) {
|
||||
if (is_numeric($data['ochOsOSNR']) && $data['ochOsOSNR'] != -99) {
|
||||
$descr = $data['portAlias'].' Optical SNR';
|
||||
$oid = '.1.3.6.1.4.1.42229.1.2.4.1.19.1.1.24.' . $index;
|
||||
$value = $data['ochOsOSNR'];
|
||||
discover_sensor($valid['sensor'], 'snr', $device, $oid, 'ochOsOSNR.'.$index, 'infinera-groove', $descr, null, '1', null, null, null, null, $value);
|
||||
}
|
||||
}
|
46
includes/discovery/sensors/state/infinera-groove.inc.php
Normal file
46
includes/discovery/sensors/state/infinera-groove.inc.php
Normal file
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
/**
|
||||
* infinera-groove.inc.php
|
||||
*
|
||||
* LibreNMS state discovery module for Infinera Groove
|
||||
*
|
||||
* 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 2019 Nick Hilliard
|
||||
* @author Nick Hilliard <nick@foobar.org>
|
||||
*/
|
||||
|
||||
// create state index
|
||||
$state_name = 'cardMode';
|
||||
$states = array(
|
||||
array('value' => 0, 'generic' => 3, 'graph' => 0, 'descr' => 'notapplicable'),
|
||||
array('value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'normal'),
|
||||
array('value' => 2, 'generic' => 1, 'graph' => 0, 'descr' => 'regen'),
|
||||
);
|
||||
create_state_index($state_name, $states);
|
||||
|
||||
$num_oid = '.1.3.6.1.4.1.42229.1.2.3.3.1.1.10.';
|
||||
|
||||
foreach ($pre_cache['infineragroove_slotTable'] as $index => $data) {
|
||||
if (is_array($data) && isset($data['cardMode'])) {
|
||||
// discover sensors
|
||||
$descr = 'slot-'.str_replace('.', '/', $index).' ('.$data['slotActualCardType'].')';
|
||||
discover_sensor($valid['sensor'], 'state', $device, $num_oid.$index, $index, $state_name, $descr, '1', '1', null, null, null, null, $data['cardMode'], 'snmp', $index);
|
||||
|
||||
// create sensor to state index
|
||||
create_sensor_to_state_index($device, $state_name, $index);
|
||||
}
|
||||
}
|
38
includes/polling/os/infinera-groove.inc.php
Normal file
38
includes/polling/os/infinera-groove.inc.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
/**
|
||||
* infinera-groove.inc.php
|
||||
*
|
||||
* LibreNMS os poller module for Infinera Groove
|
||||
*
|
||||
* 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 2019 Nick Hilliard
|
||||
* @author Nick Hilliard <nick@foobar.org>
|
||||
*/
|
||||
|
||||
echo 'infinera-groove: ';
|
||||
|
||||
$oid_list = [
|
||||
'neType.0',
|
||||
'softwareloadSwloadVersion.1',
|
||||
'inventoryManufacturerNumber.shelf.1.0.0.0',
|
||||
];
|
||||
|
||||
$data = snmp_get_multi($device, $oid_list, '-OUQs', 'CORIANT-GROOVE-MIB');
|
||||
|
||||
$version = $data[1]['softwareloadSwloadVersion'];
|
||||
$hardware = $data[0]['neType'];
|
||||
$serial = $data['shelf.1.0.0.0']['inventoryManufacturerNumber'];
|
@@ -312,6 +312,10 @@ if ($device['os'] == 'timos') {
|
||||
require_once 'ports/timos.inc.php';
|
||||
}
|
||||
|
||||
if ($device['os'] == 'infinera-groove') {
|
||||
require_once 'ports/infinera-groove.inc.php';
|
||||
}
|
||||
|
||||
if ($config['enable_ports_adsl']) {
|
||||
$device['xdsl_count'] = dbFetchCell("SELECT COUNT(*) FROM `ports` WHERE `device_id` = ? AND `ifType` in ('adsl','vdsl')", [$device['device_id']]);
|
||||
}
|
||||
|
88
includes/polling/ports/infinera-groove.inc.php
Normal file
88
includes/polling/ports/infinera-groove.inc.php
Normal file
@@ -0,0 +1,88 @@
|
||||
<?php
|
||||
/**
|
||||
* infinera-groove.inc.php
|
||||
*
|
||||
* LibreNMS ports poller module for Infinera Groove
|
||||
*
|
||||
* 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 2019 Nick Hilliard
|
||||
* @author Nick Hilliard <nick@foobar.org>
|
||||
*/
|
||||
|
||||
|
||||
echo 'Port types:';
|
||||
|
||||
foreach (array ('100', '40', '10') as $infineratype) {
|
||||
if (!is_array($cg_stats)) {
|
||||
echo ' eth'.$infineratype.'g';
|
||||
$cg_stats = snmpwalk_cache_multi_oid($device, 'eth'.$infineratype.'gEntry', $cg_stats, 'CORIANT-GROOVE-MIB');
|
||||
$cg_stats = snmpwalk_cache_multi_oid($device, 'eth'.$infineratype.'gStatistics', $cg_stats, 'CORIANT-GROOVE-MIB');
|
||||
}
|
||||
|
||||
$required = array(
|
||||
'ifAlias' => 'eth'.$infineratype.'gAliasName',
|
||||
'ifAdminStatus' => 'eth'.$infineratype.'gAdminStatus',
|
||||
'ifOperStatus' => 'eth'.$infineratype.'gOperStatus',
|
||||
'ifType' => 'Ethernet',
|
||||
'ifHCInBroadcastPkts' => 'eth'.$infineratype.'gStatisticsEntryInBroadcastPackets',
|
||||
'ifHCInMulticastPkts' => 'eth'.$infineratype.'gStatisticsEntryInMulticastPackets',
|
||||
'ifHCInOctets' => 'eth'.$infineratype.'gStatisticsEntryInOctets',
|
||||
'ifHCInUcastPkts' => 'eth'.$infineratype.'gStatisticsEntryInPackets',
|
||||
'ifHCOutBroadcastPkts' => 'eth'.$infineratype.'gStatisticsEntryOutBroadcastPackets',
|
||||
'ifHCOutMulticastPkts' => 'eth'.$infineratype.'gStatisticsEntryOutMulticastPackets',
|
||||
'ifHCOutOctets' => 'eth'.$infineratype.'gStatisticsEntryOutOctets',
|
||||
'ifHCOutUcastPkts' => 'eth'.$infineratype.'gStatisticsEntryOutPackets',
|
||||
'ifHighSpeed' => $infineratype*1000,
|
||||
);
|
||||
|
||||
foreach ($cg_stats as $index => $tmp_stats) {
|
||||
$indexids = explode('.', $index);
|
||||
|
||||
if (!isset($cg_stats[$index]['eth'.$infineratype.'gAdminStatus'])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// 100g ports use shelfId, slotId, portId
|
||||
// 40g and 10g ports use shelfId, slotId, portId, subportId
|
||||
$descr = $infineratype.'gbe-'.$indexids[0].'/'.$indexids[1].'/'.$indexids[3];
|
||||
if ($infineratype != 100) {
|
||||
$descr .= '/'.$indexids[4];
|
||||
}
|
||||
|
||||
// librenms expects the index to be bigint(20) => we grab 3 decimal
|
||||
// spaces per indexid to make a numeric ifindex. This is hacky.
|
||||
$lindex = '';
|
||||
for ($i = 0; $i <= 4; $i++) {
|
||||
$lindex .= sprintf('%03d', $indexids[$i]);
|
||||
}
|
||||
|
||||
// convert to integer
|
||||
$lindex = $lindex + 0;
|
||||
|
||||
$port_stats[$lindex]['ifName'] = $descr;
|
||||
$port_stats[$lindex]['ifDescr'] = $descr;
|
||||
|
||||
foreach ($required as $normaloid => $infineraoid) {
|
||||
// this is a bit hacky
|
||||
if (preg_match('/^eth/', $required[$normaloid])) {
|
||||
$port_stats[$lindex][$normaloid] = $cg_stats[$index][$infineraoid];
|
||||
} else {
|
||||
$port_stats[$lindex][$normaloid] = $required[$normaloid];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
19610
mibs/infinera/CORIANT-GROOVE-MIB
Normal file
19610
mibs/infinera/CORIANT-GROOVE-MIB
Normal file
File diff suppressed because it is too large
Load Diff
1677
tests/data/infinera-groove.json
Normal file
1677
tests/data/infinera-groove.json
Normal file
File diff suppressed because it is too large
Load Diff
598
tests/snmpsim/infinera-groove.snmprec
Normal file
598
tests/snmpsim/infinera-groove.snmprec
Normal file
@@ -0,0 +1,598 @@
|
||||
1.3.6.1.2.1.1.1.0|4|GSS-G3003000-BZ Groove G30 3.0.3 2018-07-10 Copyright 2018 Coriant
|
||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.42229.1.2
|
||||
1.3.6.1.2.1.1.3.0|67|721066810
|
||||
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.4.1.42229.1.2.2.1.3.0|4|GROOVE_G30
|
||||
1.3.6.1.4.1.42229.1.2.3.1.1.1.1.1|66|1
|
||||
1.3.6.1.4.1.42229.1.2.3.1.1.1.2.1|4|The Datacentre
|
||||
1.3.6.1.4.1.42229.1.2.3.1.1.1.3.1|4|23.8
|
||||
1.3.6.1.4.1.42229.1.2.3.1.1.1.4.1|4|27.1
|
||||
1.3.6.1.4.1.42229.1.2.3.1.1.1.5.1|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.1.1.1.6.1|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.1.1.1.7.1|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.1.1.1.8.1|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.1.1.1|66|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.1.1.2|66|2
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.1.1.3|66|3
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.1.1.4|66|4
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.1.1.5|66|5
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.1.1.6|66|6
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.1.1.7|66|7
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.1.1.8|66|8
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.1.1.9|66|9
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.1.1.10|66|10
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.1.1.11|66|11
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.2.1.1|2|17
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.2.1.2|2|15
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.2.1.3|2|15
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.2.1.4|2|15
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.2.1.5|2|12
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.2.1.6|2|11
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.2.1.7|2|11
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.2.1.8|2|11
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.2.1.9|2|11
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.2.1.10|2|11
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.2.1.11|2|12
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.3.1.1|4|OMD48-O, OMD48-S, OMD96, OCC2, CHM2LH, CHM1LH, CHM1G, XTM2, CHM2, CHM1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.3.1.2|4|CHM1LH, CHM1G, CHM1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.3.1.3|4|OMD48-O, OMD48-S, OMD96, OCC2, CHM2LH, CHM1LH, CHM1G, XTM2, CHM2, CHM1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.3.1.4|4|CHM1LH, CHM1G, CHM1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.3.1.5|4|PSU
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.3.1.6|4|FAN
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.3.1.7|4|FAN
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.3.1.8|4|FAN
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.3.1.9|4|FAN
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.3.1.10|4|FAN
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.3.1.11|4|PSU
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.4.1.1|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.4.1.2|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.4.1.3|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.4.1.4|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.4.1.5|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.4.1.6|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.4.1.7|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.4.1.8|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.4.1.9|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.4.1.10|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.4.1.11|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.5.1.1|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.5.1.2|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.5.1.3|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.5.1.4|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.5.1.5|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.5.1.6|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.5.1.7|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.5.1.8|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.5.1.9|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.5.1.10|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.5.1.11|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.6.1.1|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.6.1.2|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.6.1.3|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.6.1.4|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.6.1.5|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.6.1.6|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.6.1.7|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.6.1.8|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.6.1.9|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.6.1.10|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.6.1.11|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.7.1.1|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.7.1.2|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.7.1.3|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.7.1.4|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.7.1.5|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.7.1.6|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.7.1.7|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.7.1.8|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.7.1.9|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.7.1.10|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.2.1.1.7.1.11|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.1.1.1|2|17
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.1.1.5|2|12
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.1.1.6|2|11
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.1.1.7|2|11
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.1.1.8|2|11
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.1.1.9|2|11
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.1.1.10|2|11
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.1.1.11|2|12
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.2.1.1|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.2.1.5|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.2.1.6|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.2.1.7|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.2.1.8|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.2.1.9|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.2.1.10|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.2.1.11|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.3.1.1|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.3.1.5|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.3.1.6|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.3.1.7|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.3.1.8|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.3.1.9|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.3.1.10|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.3.1.11|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.4.1.1|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.4.1.5|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.4.1.6|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.4.1.7|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.4.1.8|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.4.1.9|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.4.1.10|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.4.1.11|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.5.1.1|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.5.1.5|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.5.1.6|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.5.1.7|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.5.1.8|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.5.1.9|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.5.1.10|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.5.1.11|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.6.1.1|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.6.1.5|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.6.1.6|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.6.1.7|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.6.1.8|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.6.1.9|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.6.1.10|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.6.1.11|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.7.1.6|66|60
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.7.1.7|66|60
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.7.1.8|66|60
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.7.1.9|66|60
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.7.1.10|66|60
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.8.1.1|2|0
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.9.1.1|4|34.0
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.9.1.5|4|29.0
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.9.1.6|4|-99.0
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.9.1.7|4|-99.0
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.9.1.8|4|-99.0
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.9.1.9|4|-99.0
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.9.1.10|4|-99.0
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.9.1.11|4|32.0
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.10.1.1|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.10.1.5|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.10.1.6|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.10.1.7|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.10.1.8|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.10.1.9|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.10.1.10|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.3.1.1.10.1.11|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.1.1.1.0.1|66|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.1.1.1.0.2|66|2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.1.1.1.0.3|66|3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.1.1.1.0.4|66|4
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.1.1.1.0.5|66|5
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.1.1.1.0.6|66|6
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.2.1.1.0.1|4|CFP2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.2.1.1.0.2|4|CFP2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.2.1.1.0.3|4|QSFP
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.2.1.1.0.4|4|QSFP
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.2.1.1.0.5|4|QSFP
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.2.1.1.0.6|4|QSFP
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.3.1.1.0.1|2|22
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.3.1.1.0.2|2|22
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.3.1.1.0.3|2|21
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.3.1.1.0.4|2|0
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.3.1.1.0.5|2|21
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.3.1.1.0.6|2|21
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.4.1.1.0.1|4|-14.5
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.4.1.1.0.2|4|-10.8
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.4.1.1.0.3|4|5.7
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.4.1.1.0.4|4|-99.0
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.4.1.1.0.5|4|5.7
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.4.1.1.0.6|4|3.7
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.5.1.1.0.1|4|0.0
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.5.1.1.0.2|4|0.0
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.5.1.1.0.3|4|6.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.5.1.1.0.4|4|-99.0
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.5.1.1.0.5|4|6.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.5.1.1.0.6|4|6.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.6.1.1.0.1|4|-14.7
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.6.1.1.0.2|4|-11.5
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.7.1.1.0.3|4|-0.2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.7.1.1.0.4|4|-99.0
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.7.1.1.0.5|4|-0.6
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.7.1.1.0.6|4|-2.4
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.8.1.1.0.3|4|-0.5
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.8.1.1.0.4|4|-99.0
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.8.1.1.0.5|4|-0.4
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.8.1.1.0.6|4|-2.1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.9.1.1.0.3|4|-0.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.9.1.1.0.4|4|-99.0
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.9.1.1.0.5|4|-0.2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.9.1.1.0.6|4|-2.4
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.10.1.1.0.3|4|-0.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.10.1.1.0.4|4|-99.0
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.10.1.1.0.5|4|-0.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.10.1.1.0.6|4|-2.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.11.1.1.0.3|4|0.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.11.1.1.0.4|4|-99.0
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.11.1.1.0.5|4|0.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.11.1.1.0.6|4|0.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.12.1.1.0.3|4|0.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.12.1.1.0.4|4|-99.0
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.12.1.1.0.5|4|0.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.12.1.1.0.6|4|0.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.13.1.1.0.3|4|0.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.13.1.1.0.4|4|-99.0
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.13.1.1.0.5|4|0.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.13.1.1.0.6|4|0.4
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.14.1.1.0.3|4|0.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.14.1.1.0.4|4|-99.0
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.14.1.1.0.5|4|0.3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.14.1.1.0.6|4|0.4
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.16.1.1.0.1|4|01:Line:TxRx
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.16.1.1.0.2|4|02:Line:TxRx
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.16.1.1.0.3|4|03:Client:TxRx
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.16.1.1.0.4|4|04:Client:TxRx
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.16.1.1.0.5|4|05:Client:TxRx
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.16.1.1.0.6|4|06:Client:TxRx
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.17.1.1.0.1|2|2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.17.1.1.0.2|2|2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.17.1.1.0.3|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.17.1.1.0.4|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.17.1.1.0.5|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.17.1.1.0.6|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.18.1.1.0.1|2|7
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.18.1.1.0.2|2|7
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.18.1.1.0.3|2|3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.18.1.1.0.4|2|3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.18.1.1.0.5|2|3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.18.1.1.0.6|2|3
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.19.1.1.0.1|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.19.1.1.0.2|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.19.1.1.0.3|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.19.1.1.0.4|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.19.1.1.0.5|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.19.1.1.0.6|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.20.1.1.0.1|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.20.1.1.0.2|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.20.1.1.0.3|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.20.1.1.0.4|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.20.1.1.0.5|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.20.1.1.0.6|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.21.1.1.0.1|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.21.1.1.0.2|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.21.1.1.0.3|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.21.1.1.0.4|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.21.1.1.0.5|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.21.1.1.0.6|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.22.1.1.0.1|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.22.1.1.0.2|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.22.1.1.0.3|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.22.1.1.0.4|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.22.1.1.0.5|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.22.1.1.0.6|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.23.1.1.0.1|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.23.1.1.0.2|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.23.1.1.0.3|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.23.1.1.0.4|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.23.1.1.0.5|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.23.1.1.0.6|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.24.1.1.0.1|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.24.1.1.0.2|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.24.1.1.0.3|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.24.1.1.0.4|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.24.1.1.0.5|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.24.1.1.0.6|4|
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.25.1.1.0.3|2|2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.25.1.1.0.4|2|2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.25.1.1.0.5|2|2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.25.1.1.0.6|2|2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.26.1.1.0.3|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.26.1.1.0.4|2|2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.26.1.1.0.5|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.26.1.1.0.6|2|1
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.27.1.1.0.3|2|0
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.27.1.1.0.4|2|2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.27.1.1.0.5|2|0
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.27.1.1.0.6|2|0
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.28.1.1.0.3|66|1440
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.28.1.1.0.4|66|1440
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.28.1.1.0.5|66|1440
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.28.1.1.0.6|66|1440
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.29.1.1.0.3|4|00d-00h:00m:00s
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.29.1.1.0.4|4|00d-00h:00m:00s
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.29.1.1.0.5|4|00d-00h:00m:00s
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.29.1.1.0.6|4|00d-00h:00m:00s
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.30.1.1.0.1|2|2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.30.1.1.0.2|2|2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.30.1.1.0.3|2|2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.30.1.1.0.4|2|2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.30.1.1.0.5|2|2
|
||||
1.3.6.1.4.1.42229.1.2.3.6.1.1.30.1.1.0.6|2|2
|
||||
1.3.6.1.4.1.42229.1.2.3.12.1.1.16.1.1.0.0.0|4|magicserialnumber
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.1.1.1.0.3.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.1.1.1.0.4.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.1.1.1.0.5.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.1.1.1.0.6.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.2.1.1.0.3.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.2.1.1.0.4.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.2.1.1.0.5.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.2.1.1.0.6.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.3.1.1.0.3.0|66|8
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.3.1.1.0.4.0|66|8
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.3.1.1.0.5.0|66|8
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.3.1.1.0.6.0|66|8
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.4.1.1.0.3.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.4.1.1.0.4.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.4.1.1.0.5.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.4.1.1.0.6.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.5.1.1.0.3.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.5.1.1.0.4.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.5.1.1.0.5.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.5.1.1.0.6.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.6.1.1.0.3.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.6.1.1.0.4.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.6.1.1.0.5.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.6.1.1.0.6.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.7.1.1.0.3.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.7.1.1.0.4.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.7.1.1.0.5.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.7.1.1.0.6.0|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.8.1.1.0.3.0|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.8.1.1.0.4.0|4|10 00 00 00 3
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.8.1.1.0.5.0|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.8.1.1.0.6.0|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.9.1.1.0.3.0|4|
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.9.1.1.0.4.0|4|
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.9.1.1.0.5.0|4|
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.9.1.1.0.6.0|4|
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.10.1.1.0.3.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.10.1.1.0.4.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.10.1.1.0.5.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.10.1.1.0.6.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.11.1.1.0.3.0|66|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.11.1.1.0.4.0|66|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.11.1.1.0.5.0|66|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.11.1.1.0.6.0|66|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.12.1.1.0.3.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.12.1.1.0.4.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.12.1.1.0.5.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.12.1.1.0.6.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.13.1.1.0.3.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.13.1.1.0.4.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.13.1.1.0.5.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.13.1.1.0.6.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.14.1.1.0.3.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.14.1.1.0.4.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.14.1.1.0.5.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.14.1.1.0.6.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.15.1.1.0.3.0|2|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.15.1.1.0.4.0|2|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.15.1.1.0.5.0|2|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.15.1.1.0.6.0|2|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.16.1.1.0.3.0|2|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.16.1.1.0.4.0|2|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.16.1.1.0.5.0|2|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.16.1.1.0.6.0|2|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.17.1.1.0.3.0|2|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.17.1.1.0.4.0|2|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.17.1.1.0.5.0|2|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.17.1.1.0.6.0|2|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.18.1.1.0.3.0|4|
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.18.1.1.0.4.0|4|
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.18.1.1.0.5.0|4|
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.18.1.1.0.6.0|4|
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.19.1.1.0.3.0|2|4
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.19.1.1.0.4.0|2|4
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.19.1.1.0.5.0|2|4
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.19.1.1.0.6.0|2|4
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.20.1.1.0.3.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.20.1.1.0.4.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.20.1.1.0.5.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.9.1.1.20.1.1.0.6.0|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.1.1.1.0.1|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.1.1.1.0.2|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.2.1.1.0.1|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.2.1.1.0.2|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.3.1.1.0.1|66|194200000
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.3.1.1.0.2|66|193500000
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.4.1.1.0.1|66|194200000
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.4.1.1.0.2|66|193500000
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.5.1.1.0.1|66|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.5.1.1.0.2|66|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.6.1.1.0.1|66|194200214
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.6.1.1.0.2|66|193501131
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.7.1.1.0.1|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.7.1.1.0.2|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.8.1.1.0.1|4|0.0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.8.1.1.0.2|4|0.0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.9.1.1.0.1|4|0.0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.9.1.1.0.2|4|0.0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.10.1.1.0.1|2|8
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.10.1.1.0.2|2|8
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.11.1.1.0.1|4|0.0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.11.1.1.0.2|4|0.0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.12.1.1.0.1|4|0.4
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.12.1.1.0.2|4|0.4
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.13.1.1.0.1|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.13.1.1.0.2|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.14.1.1.0.1|4|1.0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.14.1.1.0.2|4|1.0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.15.1.1.0.1|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.15.1.1.0.2|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.16.1.1.0.1|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.16.1.1.0.2|2|1
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.17.1.1.0.1|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.17.1.1.0.2|4|00 00 00 00
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.18.1.1.0.1|4|
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.18.1.1.0.2|4|
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.19.1.1.0.1|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.19.1.1.0.2|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.20.1.1.0.1|2|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.20.1.1.0.2|2|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.21.1.1.0.1|4|
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.21.1.1.0.2|4|
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.22.1.1.0.1|66|3
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.22.1.1.0.2|66|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.23.1.1.0.1|2|156
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.23.1.1.0.2|2|-9
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.24.1.1.0.1|4|33.0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.24.1.1.0.2|4|38.0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.25.1.1.0.1|4|8.9
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.25.1.1.0.2|4|8.9
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.26.1.1.0.1|4|3.343653e-03
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.26.1.1.0.2|4|2.336451e-03
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.27.1.1.0.1|2|-45000
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.27.1.1.0.2|2|-45000
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.28.1.1.0.1|2|45000
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.28.1.1.0.2|2|45000
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.31.1.1.0.1|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.19.1.1.31.1.1.0.2|2|2
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.1.1.1.0.3.0|4|2018-11-29T02:05:42+00:00
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.1.1.1.0.4.0|4|2018-11-29T02:05:42+00:00
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.1.1.1.0.5.0|4|2018-11-29T02:05:42+00:00
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.1.1.1.0.6.0|4|2018-11-29T02:05:42+00:00
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.2.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.2.1.1.0.4.0|4|7210571
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.2.1.1.0.5.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.2.1.1.0.6.0|4|43
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.3.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.3.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.3.1.1.0.5.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.3.1.1.0.6.0|4|8
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.4.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.4.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.4.1.1.0.5.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.4.1.1.0.6.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.5.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.5.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.5.1.1.0.5.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.5.1.1.0.6.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.6.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.6.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.6.1.1.0.5.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.6.1.1.0.6.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.7.1.1.0.3.0|4|17993747593662867
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.7.1.1.0.4.0|4|155111690558657563
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.7.1.1.0.5.0|4|9620327670903097
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.7.1.1.0.6.0|4|1050209480864763
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.8.1.1.0.3.0|4|27018746695281
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.8.1.1.0.4.0|4|544299821535945
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.8.1.1.0.5.0|4|9903307009008
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.8.1.1.0.6.0|4|1256020369374
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.9.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.9.1.1.0.4.0|4|189
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.9.1.1.0.5.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.9.1.1.0.6.0|4|26712
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.10.1.1.0.3.0|4|240353
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.10.1.1.0.4.0|4|236949597809266
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.10.1.1.0.5.0|4|240350
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.10.1.1.0.6.0|4|240849
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.11.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.11.1.1.0.4.0|4|65637551652431
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.11.1.1.0.5.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.11.1.1.0.6.0|4|206
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.12.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.12.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.12.1.1.0.5.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.12.1.1.0.6.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.13.1.1.0.3.0|4|4848900214085
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.13.1.1.0.4.0|4|172174963722344
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.13.1.1.0.5.0|4|2616047147773
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.13.1.1.0.6.0|4|82039576665
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.14.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.14.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.14.1.1.0.5.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.14.1.1.0.6.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.15.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.15.1.1.0.4.0|4|4973998519141
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.15.1.1.0.5.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.15.1.1.0.6.0|4|76
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.16.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.16.1.1.0.4.0|4|372583581821
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.16.1.1.0.5.0|4|5
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.16.1.1.0.6.0|4|53051
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.17.1.1.0.3.0|4|11233964853734
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.17.1.1.0.4.0|4|25736204984823
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.17.1.1.0.5.0|4|2227940570399
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.17.1.1.0.6.0|4|317801796604
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.18.1.1.0.3.0|4|3706563357995
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.18.1.1.0.4.0|4|48628041353140
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.18.1.1.0.5.0|4|1049442015702
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.18.1.1.0.6.0|4|154774170181
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.19.1.1.0.3.0|4|1150502399621
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.19.1.1.0.4.0|4|84443173597252
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.19.1.1.0.5.0|4|461064530975
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.19.1.1.0.6.0|4|125882342796
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.20.1.1.0.3.0|4|907097152673
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.20.1.1.0.4.0|4|125901394087370
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.20.1.1.0.5.0|4|258528268228
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.20.1.1.0.6.0|4|36201625027
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.21.1.1.0.3.0|4|5171722526313
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.21.1.1.0.4.0|4|82069512536219
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.21.1.1.0.5.0|4|3290287340859
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.21.1.1.0.6.0|4|539321127469
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.22.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.22.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.22.1.1.0.5.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.22.1.1.0.6.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.23.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.23.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.23.1.1.0.5.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.23.1.1.0.6.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.24.1.1.0.3.0|4|23851963645187670
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.24.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.24.1.1.0.5.0|4|9664990847135423
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.24.1.1.0.6.0|4|853722817344251
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.25.1.1.0.3.0|4|26923699213009
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.25.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.25.1.1.0.5.0|4|11330879757437
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.25.1.1.0.6.0|4|1256479672805
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.26.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.26.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.26.1.1.0.5.0|4|5
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.26.1.1.0.6.0|4|26313
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.27.1.1.0.3.0|4|240349
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.27.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.27.1.1.0.5.0|4|240355
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.27.1.1.0.6.0|4|241726
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.28.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.28.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.28.1.1.0.5.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.28.1.1.0.6.0|4|288
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.29.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.29.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.29.1.1.0.5.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.29.1.1.0.6.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.30.1.1.0.3.0|4|10110458562570
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.30.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.30.1.1.0.5.0|4|3500740211659
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.30.1.1.0.6.0|4|284336890195
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.31.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.31.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.31.1.1.0.5.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.31.1.1.0.6.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.32.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.32.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.32.1.1.0.5.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.32.1.1.0.6.0|4|85
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.33.1.1.0.3.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.33.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.33.1.1.0.5.0|4|5
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.33.1.1.0.6.0|4|53117
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.34.1.1.0.3.0|4|8644636844352
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.34.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.34.1.1.0.5.0|4|3368751323754
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.34.1.1.0.6.0|4|418633335402
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.35.1.1.0.3.0|4|2261810539972
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.35.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.35.1.1.0.5.0|4|1513956958043
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.35.1.1.0.6.0|4|292997052563
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.36.1.1.0.3.0|4|904686926414
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.36.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.36.1.1.0.5.0|4|326424140562
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.36.1.1.0.6.0|4|26497120407
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.37.1.1.0.3.0|4|816759238264
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.37.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.37.1.1.0.5.0|4|240878184670
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.37.1.1.0.6.0|4|48288366491
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.38.1.1.0.3.0|4|4185351953443
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.38.1.1.0.4.0|4|0
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.38.1.1.0.5.0|4|2380132734405
|
||||
1.3.6.1.4.1.42229.1.2.4.1.35.1.1.38.1.1.0.6.0|4|185727261573
|
||||
1.3.6.1.4.1.42229.1.2.9.2.1.1.3.1|4|FP3.0.3
|
Reference in New Issue
Block a user