Move qnap to yaml discovery + extended discovery (#11882)

* Move qnap to yaml discovery + extended discovery

* Fix pre-cache
This commit is contained in:
TheGreatDoc 2020-07-01 13:53:59 +02:00 committed by GitHub
parent 5cf5627ff5
commit dd8844980f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 7721 additions and 156 deletions

42
LibreNMS/OS/Qnap.php Normal file
View File

@ -0,0 +1,42 @@
<?php
/**
* Qnap.php
*
* QNAP Turbo NAS OS
*
* 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 2020 Daniel Baeza
* @author Daniel Baeza <doctoruve@gmail.com>
*/
namespace LibreNMS\OS;
use Illuminate\Support\Str;
use LibreNMS\Interfaces\Discovery\OSDiscovery;
use LibreNMS\OS;
class Qnap extends OS implements OSDiscovery
{
public function discoverOS(): void
{
$device = $this->getDeviceModel();
$info = snmp_getnext_multi($this->getDevice(), 'enclosureModel enclosureSerialNum entPhysicalFirmwareRev', '-OQUs', 'NAS-MIB:ENTITY-MIB');
$device->version = Str::replaceFirst('\"', '', $info['entPhysicalFirmwareRev']);
$device->hardware = $info['enclosureModel'];
$device->serial = $info['enclosureSerialNum'];
}
}

View File

@ -0,0 +1,109 @@
mib: NAS-MIB
modules:
sensors:
pre-cache:
data:
-
oid:
- diskEnclosureID
temperature:
options:
skip_values: -1
data:
-
oid: enclosureTable
value: enclosureSystemTemp
num_oid: '.1.3.6.1.4.1.24681.1.4.1.1.1.1.1.2.1.7.{{ $index }}'
descr: 'Enclosure {{ $enclosureID }}'
index: 'enclosureSystemTemp.{{ $index }}'
group: 'System'
-
oid: cpuTemp
value: cpuTemp
num_oid: '.1.3.6.1.4.1.24681.1.4.1.1.1.1.4.2.{{ $index }}'
descr: 'CPU'
index: 'cpuTemp.{{ $index }}'
group: 'System'
-
oid: systemPowerTable
value: systemPowerTemp
num_oid: '.1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.6.{{ $index }}'
descr: 'Enclosure {{ $systemPowerEnclosureID }} PSU {{ $systemPowerID}}'
index: 'systemPowerTemp.{{ $index }}'
group: 'System'
-
oid: diskTable
value: diskTemperture
num_oid: '.1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.{{ $index }}'
descr: 'Disk {{ $index }} {{ $diskModel }}'
index: 'diskTemperture.{{ $index }}'
group: 'Disks enclosure {{ $diskEnclosureID }}'
fanspeed:
options:
skip_values: -1
data:
-
oid: systemFan2Table
value: systemFanSpeed
num_oid: '.1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.5.{{ $index }}'
descr: 'FAN {{ $index }}'
index: 'systemFanSpeed.{{ $index }}'
group: 'System enclosure {{ $systemFanEnclosureID }}'
-
oid: systemPowerTable
value: systemPowerFanSpeed
num_oid: '.1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.5.{{ $index }}'
descr: 'PSU {{ $systemPowerID }}'
index: 'systemPowerFanSpeed.{{ $index }}'
group: 'Power enclosure {{ $systemPowerEnclosureID }}'
state:
data:
-
oid: systemHdTable
value: hdStatus
num_oid: '.1.3.6.1.4.1.24681.1.2.11.1.4.{{ $index }}'
descr: 'Disk {{ $index }}'
index: 'hdStatus.{{ $index }}'
group: 'Disk Status'
state_name: hdStatus
states:
- { value: 0, generic: 0, graph: 0, descr: 'Ready' }
- { value: -5, generic: 3, graph: -5, descr: 'No Disk' }
- { value: -6, generic: 2, graph: -6, descr: 'Invalid' }
- { value: -9, generic: 2, graph: -9, descr: 'RW Error' }
- { value: -4, generic: 3, graph: -4, descr: 'Unknown' }
-
oid: diskTable
value: diskSmartInfo
num_oid: '.1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.{{ $index }}'
descr: 'Disk {{ $index }}'
index: 'diskSmartInfo.{{ $index }}'
group: 'Disk S.M.A.R.T. enclosure {{ $diskEnclosureID }}'
state_name: diskSmartInfo
states:
- { value: 2, generic: 2, graph: 2, descr: 'Abnormal' }
- { value: 1, generic: 1, graph: 1, descr: 'Warning' }
- { value: 0, generic: 0, graph: 0, descr: 'Good' }
- { value: -1, generic: 2, graph: -1, descr: 'Error' }
-
oid: systemFan2Table
value: systemFanStatus
num_oid: '.1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.{{ $index }}'
descr: 'FAN {{ $index }}'
index: 'systemFanStatus.{{ $index }}'
group: 'FANs enclosure {{ $systemFanEnclosureID }}'
state_name: systemFanStatus
states:
- { value: 0, generic: 0, graph: 0, descr: 'Ok' }
- { value: -1, generic: 2, graph: -1, descr: 'Fail' }
-
oid: systemPowerTable
value: systemPowerStatus
num_oid: '.1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.{{ $index }}'
descr: 'PSU {{ $index }}'
index: 'systemPowerStatus.{{ $index }}'
group: 'PSUs enclosure {{ $systemPowerEnclosureID }}'
state_name: systemPowerStatus
states:
- { value: 0, generic: 0, graph: 0, descr: 'Ok' }
- { value: -1, generic: 2, graph: -1, descr: 'Fail' }

View File

@ -1,36 +0,0 @@
<?php
/*
* LibreNMS QNAP NAS Fanspeeds information module
*
* Copyright (c) 2016 Cercel Valentin <crc@nuamchefazi.ro>
* 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.
*/
echo 'QNAP: ';
$fan_descr_oid = '.1.3.6.1.4.1.24681.1.2.15.1.2';
$fan_speed_oid = '.1.3.6.1.4.1.24681.1.2.15.1.3';
$fans_descr = snmpwalk_cache_numerical_oid($device, $fan_descr_oid, [], null, null, '-OQUsn');
$fans_speed = snmpwalk_cache_numerical_oid($device, $fan_speed_oid, [], null, null, '-OQUsn');
if (is_array($fans_speed) && !empty($fans_speed)) {
foreach ($fans_speed as $index => $entry) {
$oid = $fan_speed_oid . '.' . $index;
$fan_oid = $fan_descr_oid . '.' . $index;
$fan_speed = $entry[$oid];
$fan_serial = $fans_descr[$index][$fan_oid];
if ($fan_speed) {
discover_sensor($valid['sensor'], 'fanspeed', $device, $oid, $index, 'snmp', $fan_serial, '1', '1', null, null, null, null, $fan_speed);
}
}
}
unset(
$fans_descr,
$fans_speed
);

View File

@ -1,70 +0,0 @@
<?php
/*
* LibreNMS QNAP NAS HDD SMART/Status information module
*
* Copyright (c) 2016 Cercel Valentin <crc@nuamchefazi.ro>
* 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.
*/
echo 'QNAP: ';
$disks_oid = '.1.3.6.1.4.1.24681.1.2.10.0';
$total_disks = snmp_get($device, $disks_oid, '-Oqv');
$status_oid = '.1.3.6.1.4.1.24681.1.2.11.1.4.';
$smart_oid = '.1.3.6.1.4.1.24681.1.2.11.1.7.';
d_echo("QNAP HDD status\n");
for ($i = 1; $i <= $total_disks; $i++) {
$state = snmp_get($device, $status_oid . $i, '-Oqv');
$status_name = 'qnap_hdd_status_' . $i;
$status_descr = 'HDD ' . $i . ' status';
if (is_numeric($state)) {
$states = [
['value' => 0, 'generic' => 0, 'graph' => 1, 'descr' => 'ready'],
['value' => -4, 'generic' => 1, 'graph' => 0, 'descr' => 'unknown'],
['value' => -5, 'generic' => 1, 'graph' => 0, 'descr' => 'no disk'],
['value' => -6, 'generic' => 1, 'graph' => 0, 'descr' => 'invalid'],
['value' => -9, 'generic' => 2, 'graph' => 2, 'descr' => 'rw Error'],
];
create_state_index($state_name, $states);
discover_sensor($valid['sensor'], 'state', $device, $status_oid . $i, 1, $status_name, $status_descr, 1, 1, null, null, null, null, $state, 'snmp', 1);
create_sensor_to_state_index($device, $status_name, 1);
}
}
d_echo("QNAP HDD SMART\n");
for ($i = 1; $i <= $total_disks; $i++) {
$state = str_replace('"', '', snmp_get($device, $smart_oid . $i, '-Oqv'));
$smart_name = 'qnap_hdd_smart_' . $i;
$smart_descr = 'HDD ' . $i . ' SMART';
switch ($state) {
case 'Normal':
$state = 1;
break;
case '--':
$state = 0;
break;
case 'Warning':
$state = 2;
break;
}
if (is_numeric($state)) {
$states = [
['value' => 1, 'generic' => 0, 'graph' => 1, 'descr' => 'normal'],
['value' => 0, 'generic' => 1, 'graph' => 0, 'descr' => 'no disk'],
['value' => 2, 'generic' => 2, 'graph' => 2, 'descr' => 'warning'],
];
create_state_index($state_name, $states);
discover_sensor($valid['sensor'], 'state', $device, $smart_oid . $i, 1, $smart_name, $smart_descr, 1, 1, null, null, null, null, $state, 'snmp', 1);
create_sensor_to_state_index($device, $smart_name, 1);
}
}

View File

@ -1,50 +0,0 @@
<?php
/*
* LibreNMS QNAP NAS temperature information module
*
* Copyright (c) 2016 Cercel Valentin <crc@nuamchefazi.ro>
* 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.
*/
echo 'QNAP: ';
$cpu_temperature_oid = '.1.3.6.1.4.1.24681.1.3.5.0';
$cpu_temperature = snmp_get($device, $cpu_temperature_oid, '-Oqv');
discover_sensor($valid['sensor'], 'temperature', $device, $cpu_temperature_oid, '98', 'snmp', 'CPU Temperature', '1', '1', null, null, null, null, $cpu_temperature);
$system_temperature_oid = '.1.3.6.1.4.1.24681.1.3.6.0';
$system_temperature = snmp_get($device, $system_temperature_oid, '-Oqv');
discover_sensor($valid['sensor'], 'temperature', $device, $system_temperature_oid, '99', 'snmp', 'System Temperature', '1', '1', null, null, null, null, $system_temperature);
$disk_temperature_oid = '.1.3.6.1.4.1.24681.1.2.11.1.3';
$disk_serial_oid = '.1.3.6.1.4.1.24681.1.2.11.1.5';
$hdd_temps = snmpwalk_cache_numerical_oid($device, $disk_temperature_oid, [], null, null, '-OQUsn');
$hdd_serials = snmpwalk_cache_numerical_oid($device, $disk_serial_oid, [], null, null, '-OQUsn');
if (is_array($hdd_temps) && !empty($hdd_temps)) {
foreach ($hdd_temps as $index => $entry) {
$oid = $disk_temperature_oid . '.' . $index;
$disk_oid = $disk_serial_oid . '.' . $index;
$disk_temperature = $entry[$oid];
$disk_serial = $hdd_serials[$index][$disk_oid];
if ($disk_serial == '--') {
$disk_descr = "HDD $index empty bay";
} else {
$disk_descr = "HDD $index $disk_serial";
}
if ($disk_temperature) {
discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, 'snmp', $disk_descr, '1', '1', null, null, null, null, $disk_temperature);
}
}
}
unset(
$hdd_temps,
$hdd_serials
);

2910
mibs/qnap/NAS-MIB Normal file

File diff suppressed because it is too large Load Diff

3695
tests/data/qnap.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,968 @@
1.3.6.1.2.1.1.1.0|4|Linux hostname 4.2.2 1.3.6.1.2.1.1.1.0|4|Linux hostname 4.2.2
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.24681 1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.24681
1.3.6.1.2.1.2.2.1.2.1|4|lo
1.3.6.1.2.1.2.2.1.2.2|4|eth0
1.3.6.1.2.1.2.2.1.2.3|4|eth3
1.3.6.1.2.1.2.2.1.2.4|4|eth2
1.3.6.1.2.1.2.2.1.2.5|4|eth1
1.3.6.1.2.1.2.2.1.2.6|4|bond0
1.3.6.1.2.1.2.2.1.2.7|4|bond1
1.3.6.1.2.1.2.2.1.2.8|4|br0
1.3.6.1.2.1.2.2.1.3.1|2|24
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|6
1.3.6.1.2.1.2.2.1.3.8|2|6
1.3.6.1.2.1.2.2.1.4.1|2|65536
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.8|2|1500
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4x|00089BF14623
1.3.6.1.2.1.2.2.1.6.3|4x|00089BF14626
1.3.6.1.2.1.2.2.1.6.4|4x|00089BF14625
1.3.6.1.2.1.2.2.1.6.5|4x|00089BF14624
1.3.6.1.2.1.2.2.1.6.6|4x|56DE827B966D
1.3.6.1.2.1.2.2.1.6.7|4x|52A9FFC647F8
1.3.6.1.2.1.2.2.1.6.8|4x|00089BF14623
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|2
1.3.6.1.2.1.2.2.1.7.8|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|1
1.3.6.1.2.1.2.2.1.8.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|2
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|2
1.3.6.1.2.1.2.2.1.8.8|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|0
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|0
1.3.6.1.2.1.2.2.1.9.8|67|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|1582017
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.8|65|271148
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|0
1.3.6.1.2.1.2.2.1.14.8|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.8|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.8|65|0
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.10.0|65|2991236525
1.3.6.1.2.1.4.12.0|65|77
1.3.6.1.2.1.4.15.0|65|0
1.3.6.1.2.1.4.17.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.3.19.10|2|8
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
1.3.6.1.2.1.4.20.1.3.10.3.19.10|64|255.255.255.128
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0
1.3.6.1.2.1.4.22.1.2.8.10.3.19.1|4x|F4B52FFD5030
1.3.6.1.2.1.4.22.1.2.8.10.3.19.2|4x|0010DBFF1002
1.3.6.1.2.1.4.22.1.2.8.10.3.19.11|4x|00219B8FC537
1.3.6.1.2.1.4.22.1.2.8.10.3.19.13|4x|0CC47AAC2986
1.3.6.1.2.1.4.22.1.2.8.10.3.19.14|4x|001B2181A3E0
1.3.6.1.2.1.4.22.1.2.8.10.3.19.15|4x|00219B8DB394
1.3.6.1.2.1.4.22.1.2.8.10.3.19.31|4x|D89EF30E7F1D
1.3.6.1.2.1.4.22.1.2.8.10.3.19.41|4x|00155D131300
1.3.6.1.2.1.4.22.1.2.8.10.3.19.55|4x|1CC1DE0718E4
1.3.6.1.2.1.4.22.1.2.8.10.3.19.60|4x|9C8E992918F0
1.3.6.1.2.1.4.22.1.2.8.10.3.19.62|4x|0015170C0A46
1.3.6.1.2.1.4.22.1.2.8.10.3.19.65|4x|9890969D3AC3
1.3.6.1.2.1.4.22.1.2.8.10.3.19.66|4x|E4115BE19DDC
1.3.6.1.2.1.4.22.1.2.8.10.3.19.70|4x|D89EF31E10AB
1.3.6.1.2.1.4.22.1.2.8.10.3.19.90|4x|0011321021C5
1.3.6.1.2.1.4.22.1.2.8.10.3.19.99|4x|78E3B50F64DC
1.3.6.1.2.1.4.22.1.2.8.10.3.19.100|4x|0CC47A85E873
1.3.6.1.2.1.4.22.1.2.8.10.3.19.116|4x|0CC47A85E873
1.3.6.1.2.1.4.22.1.2.8.10.3.19.117|4x|0CC47A85E873
1.3.6.1.2.1.4.22.1.2.8.10.3.19.118|4x|0CC47A85E873
1.3.6.1.2.1.4.22.1.2.8.10.3.19.121|4x|0CC47A85E873
1.3.6.1.2.1.4.31.1.1.3.1|65|2381642775
1.3.6.1.2.1.4.31.1.1.4.1|70|45331315735
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|3
1.3.6.1.2.1.4.31.1.1.9.1|65|0
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|3
1.3.6.1.2.1.4.31.1.1.13.1|70|3
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|2370238889
1.3.6.1.2.1.4.31.1.1.19.1|70|45319911849
1.3.6.1.2.1.4.31.1.1.20.1|65|2991222045
1.3.6.1.2.1.4.31.1.1.21.1|70|28761025821
1.3.6.1.2.1.4.31.1.1.22.1|65|77
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|1073807
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|2990148161
1.3.6.1.2.1.4.31.1.1.31.1|70|28759951937
1.3.6.1.2.1.4.31.1.1.34.1|65|39464618
1.3.6.1.2.1.4.31.1.1.35.1|70|39464618
1.3.6.1.2.1.4.31.1.1.38.1|65|3342939
1.3.6.1.2.1.4.31.1.1.39.1|70|3342939
1.3.6.1.2.1.4.31.1.1.42.1|65|15282742
1.3.6.1.2.1.4.31.1.1.43.1|70|15282742
1.3.6.1.2.1.4.31.1.1.44.1|65|334428
1.3.6.1.2.1.4.31.1.1.45.1|70|334428
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|60000
1.3.6.1.2.1.4.35.1.4.2.1.4.8.8.8.8|4x|000000000000
1.3.6.1.2.1.4.35.1.4.3.1.4.8.8.8.8|4x|000000000000
1.3.6.1.2.1.4.35.1.4.4.1.4.8.8.8.8|4x|000000000000
1.3.6.1.2.1.4.35.1.4.5.1.4.8.8.8.8|4x|000000000000
1.3.6.1.2.1.4.35.1.4.6.1.4.8.8.8.8|4x|000000000000
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.1|4x|F4B52FFD5030
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.2|4x|0010DBFF1002
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.11|4x|00219B8FC537
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.12|4x|001B21548C30
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.13|4x|0CC47AAC2986
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.14|4x|001B2181A3E0
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.15|4x|00219B8DB394
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.16|4x|E0DB550A5094
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.17|4x|001B217055C0
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.18|4x|001B2144E724
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.31|4x|D89EF30E7F1D
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.41|4x|00155D131300
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.51|4x|18A9057128D8
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.55|4x|1CC1DE0718E4
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.60|4x|9C8E992918F0
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.62|4x|0015170C0A46
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.65|4x|9890969D3AC3
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.66|4x|E4115BE19DDC
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.70|4x|D89EF31E10AB
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.90|4x|0011321021C5
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.99|4x|78E3B50F64DC
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.100|4x|0CC47A85E873
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.116|4x|0CC47A85E873
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.117|4x|0CC47A85E873
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.118|4x|0CC47A85E873
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.119|4x|0CC47A85E873
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.120|4x|0CC47A85E873
1.3.6.1.2.1.4.35.1.4.8.1.4.10.3.19.121|4x|0CC47A85E873
1.3.6.1.2.1.5.2.0|65|684
1.3.6.1.2.1.5.4.0|65|1084190
1.3.6.1.2.1.5.6.0|65|0
1.3.6.1.2.1.5.8.0|65|2854
1.3.6.1.2.1.5.10.0|65|6
1.3.6.1.2.1.5.12.0|65|0
1.3.6.1.2.1.5.14.0|65|0
1.3.6.1.2.1.5.16.0|65|0
1.3.6.1.2.1.5.18.0|65|0
1.3.6.1.2.1.5.20.0|65|0
1.3.6.1.2.1.5.22.0|65|9
1.3.6.1.2.1.5.24.0|65|0
1.3.6.1.2.1.5.26.0|65|0
1.3.6.1.2.1.5.29.1.2.1|65|1099873
1.3.6.1.2.1.5.29.1.2.2|65|0
1.3.6.1.2.1.5.29.1.3.1|65|684
1.3.6.1.2.1.5.29.1.3.2|65|0
1.3.6.1.2.1.5.29.1.4.1|65|0
1.3.6.1.2.1.5.29.1.4.2|65|0
1.3.6.1.2.1.5.29.1.5.1|65|1096993
1.3.6.1.2.1.5.29.1.5.2|65|0
1.3.6.1.2.1.5.30.1.3.0.128|65|0
1.3.6.1.2.1.5.30.1.3.1.0|65|6
1.3.6.1.2.1.5.30.1.3.1.3|65|1084190
1.3.6.1.2.1.5.30.1.3.1.5|65|2854
1.3.6.1.2.1.5.30.1.3.1.8|65|12820
1.3.6.1.2.1.5.30.1.3.1.11|65|3
1.3.6.1.2.1.5.30.1.3.2.0|65|0
1.3.6.1.2.1.5.30.1.3.2.130|65|0
1.3.6.1.2.1.5.30.1.3.2.131|65|0
1.3.6.1.2.1.5.30.1.3.2.132|65|0
1.3.6.1.2.1.5.30.1.3.2.133|65|0
1.3.6.1.2.1.5.30.1.3.2.134|65|0
1.3.6.1.2.1.5.30.1.3.2.135|65|0
1.3.6.1.2.1.5.30.1.3.2.136|65|0
1.3.6.1.2.1.5.30.1.3.2.137|65|0
1.3.6.1.2.1.5.30.1.4.1.0|65|12820
1.3.6.1.2.1.5.30.1.4.1.3|65|1084164
1.3.6.1.2.1.5.30.1.4.1.8|65|9
1.3.6.1.2.1.5.30.1.4.2.0|65|0
1.3.6.1.2.1.5.30.1.4.2.130|65|0
1.3.6.1.2.1.5.30.1.4.2.131|65|0
1.3.6.1.2.1.5.30.1.4.2.132|65|0
1.3.6.1.2.1.5.30.1.4.2.133|65|0
1.3.6.1.2.1.5.30.1.4.2.134|65|0
1.3.6.1.2.1.5.30.1.4.2.135|65|0
1.3.6.1.2.1.5.30.1.4.2.136|65|0
1.3.6.1.2.1.5.30.1.4.2.137|65|0
1.3.6.1.2.1.6.6.0|65|368537253
1.3.6.1.2.1.6.8.0|65|3160301
1.3.6.1.2.1.6.10.0|65|2311130381
1.3.6.1.2.1.6.12.0|65|1216138
1.3.6.1.2.1.6.15.0|65|1875195
1.3.6.1.2.1.6.19.1.7.1.4.10.3.19.10.445.1.4.10.3.19.14.58464|2|48385
1.3.6.1.2.1.7.2.0|65|1073897
1.3.6.1.2.1.7.4.0|65|3651363
1.3.6.1.2.1.11.2.0|65|16376
1.3.6.1.2.1.11.4.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.10.0|65|0
1.3.6.1.2.1.11.12.0|65|0
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.16.0|65|2388
1.3.6.1.2.1.11.18.0|65|0
1.3.6.1.2.1.11.20.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.26.0|65|0
1.3.6.1.2.1.11.28.0|65|16378
1.3.6.1.2.1.11.30.0|2|2
1.3.6.1.2.1.11.32.0|65|0
1.3.6.1.2.1.25.1.1.0|67|95390646
1.3.6.1.2.1.25.1.4.0|4|consoleblank=0 console=/dev/null video=HDMI-A-1:800x600@60 video=HDMI-A-2:800x600@60 video=HDMI-A-3:d intel_iommu=on,igfx_off io
1.3.6.1.2.1.25.1.5.0|66|0
1.3.6.1.2.1.25.1.6.0|66|338
1.3.6.1.2.1.25.2.3.1.1.1|2|1
1.3.6.1.2.1.25.2.3.1.1.3|2|3
1.3.6.1.2.1.25.2.3.1.1.6|2|6
1.3.6.1.2.1.25.2.3.1.1.7|2|7
1.3.6.1.2.1.25.2.3.1.1.8|2|8
1.3.6.1.2.1.25.2.3.1.1.10|2|10
1.3.6.1.2.1.25.2.3.1.1.31|2|31
1.3.6.1.2.1.25.2.3.1.1.32|2|32
1.3.6.1.2.1.25.2.3.1.1.33|2|33
1.3.6.1.2.1.25.2.3.1.1.34|2|34
1.3.6.1.2.1.25.2.3.1.1.35|2|35
1.3.6.1.2.1.25.2.3.1.1.36|2|36
1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.2
1.3.6.1.2.1.25.2.3.1.2.3|6|1.3.6.1.2.1.25.2.1.3
1.3.6.1.2.1.25.2.3.1.2.6|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.8|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.10|6|1.3.6.1.2.1.25.2.1.3
1.3.6.1.2.1.25.2.3.1.2.31|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.32|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.33|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.34|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.35|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.36|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.3.1|4|Physical memory
1.3.6.1.2.1.25.2.3.1.3.3|4|Virtual memory
1.3.6.1.2.1.25.2.3.1.3.6|4|Memory buffers
1.3.6.1.2.1.25.2.3.1.3.7|4|Cached memory
1.3.6.1.2.1.25.2.3.1.3.8|4|Shared memory
1.3.6.1.2.1.25.2.3.1.3.10|4|Swap space
1.3.6.1.2.1.25.2.3.1.3.31|4|/mnt/HDA_ROOT
1.3.6.1.2.1.25.2.3.1.3.32|4|/sys/fs/cgroup/memory
1.3.6.1.2.1.25.2.3.1.3.33|4|/share/CACHEDEV1_DATA
1.3.6.1.2.1.25.2.3.1.3.34|4|/share/CACHEDEV2_DATA
1.3.6.1.2.1.25.2.3.1.3.35|4|/share/CACHEDEV3_DATA
1.3.6.1.2.1.25.2.3.1.3.36|4|/mnt/ext
1.3.6.1.2.1.25.2.3.1.4.1|2|1024
1.3.6.1.2.1.25.2.3.1.4.3|2|1024
1.3.6.1.2.1.25.2.3.1.4.6|2|1024
1.3.6.1.2.1.25.2.3.1.4.7|2|1024
1.3.6.1.2.1.25.2.3.1.4.8|2|1024
1.3.6.1.2.1.25.2.3.1.4.10|2|1024
1.3.6.1.2.1.25.2.3.1.4.31|2|4096
1.3.6.1.2.1.25.2.3.1.4.32|2|4096
1.3.6.1.2.1.25.2.3.1.4.33|2|16384
1.3.6.1.2.1.25.2.3.1.4.34|2|16384
1.3.6.1.2.1.25.2.3.1.4.35|2|32768
1.3.6.1.2.1.25.2.3.1.4.36|2|4096
1.3.6.1.2.1.25.2.3.1.5.1|2|8114712
1.3.6.1.2.1.25.2.3.1.5.3|2|25422032
1.3.6.1.2.1.25.2.3.1.5.6|2|8114712
1.3.6.1.2.1.25.2.3.1.5.7|2|3014780
1.3.6.1.2.1.25.2.3.1.5.8|2|0
1.3.6.1.2.1.25.2.3.1.5.10|2|17307320
1.3.6.1.2.1.25.2.3.1.5.31|2|126325
1.3.6.1.2.1.25.2.3.1.5.32|2|0
1.3.6.1.2.1.25.2.3.1.5.33|2|1430382622
1.3.6.1.2.1.25.2.3.1.5.34|2|1790302775
1.3.6.1.2.1.25.2.3.1.5.35|2|1195594638
1.3.6.1.2.1.25.2.3.1.5.36|2|90876
1.3.6.1.2.1.25.2.3.1.6.1|2|7074700
1.3.6.1.2.1.25.2.3.1.6.3|2|8047424
1.3.6.1.2.1.25.2.3.1.6.6|2|707180
1.3.6.1.2.1.25.2.3.1.6.7|2|3014780
1.3.6.1.2.1.25.2.3.1.6.10|2|972724
1.3.6.1.2.1.25.2.3.1.6.31|2|30999
1.3.6.1.2.1.25.2.3.1.6.32|2|0
1.3.6.1.2.1.25.2.3.1.6.33|2|1004424133
1.3.6.1.2.1.25.2.3.1.6.34|2|1079398137
1.3.6.1.2.1.25.2.3.1.6.35|2|1060565037
1.3.6.1.2.1.25.2.3.1.6.36|2|84621
1.3.6.1.2.1.25.3.2.1.1.768|2|768
1.3.6.1.2.1.25.3.2.1.1.769|2|769
1.3.6.1.2.1.25.3.2.1.1.770|2|770
1.3.6.1.2.1.25.3.2.1.1.771|2|771
1.3.6.1.2.1.25.3.2.1.1.1025|2|1025
1.3.6.1.2.1.25.3.2.1.1.1026|2|1026
1.3.6.1.2.1.25.3.2.1.1.1027|2|1027
1.3.6.1.2.1.25.3.2.1.1.1028|2|1028
1.3.6.1.2.1.25.3.2.1.1.1029|2|1029
1.3.6.1.2.1.25.3.2.1.1.1030|2|1030
1.3.6.1.2.1.25.3.2.1.1.1031|2|1031
1.3.6.1.2.1.25.3.2.1.1.1032|2|1032
1.3.6.1.2.1.25.3.2.1.1.1552|2|1552
1.3.6.1.2.1.25.3.2.1.1.1553|2|1553
1.3.6.1.2.1.25.3.2.1.1.1554|2|1554
1.3.6.1.2.1.25.3.2.1.1.1555|2|1555
1.3.6.1.2.1.25.3.2.1.1.1556|2|1556
1.3.6.1.2.1.25.3.2.1.1.1557|2|1557
1.3.6.1.2.1.25.3.2.1.1.1558|2|1558
1.3.6.1.2.1.25.3.2.1.1.1559|2|1559
1.3.6.1.2.1.25.3.2.1.1.1560|2|1560
1.3.6.1.2.1.25.3.2.1.1.1561|2|1561
1.3.6.1.2.1.25.3.2.1.1.1562|2|1562
1.3.6.1.2.1.25.3.2.1.1.1563|2|1563
1.3.6.1.2.1.25.3.2.1.1.1564|2|1564
1.3.6.1.2.1.25.3.2.1.1.1565|2|1565
1.3.6.1.2.1.25.3.2.1.1.1566|2|1566
1.3.6.1.2.1.25.3.2.1.1.1567|2|1567
1.3.6.1.2.1.25.3.2.1.1.1569|2|1569
1.3.6.1.2.1.25.3.2.1.1.1570|2|1570
1.3.6.1.2.1.25.3.2.1.1.1571|2|1571
1.3.6.1.2.1.25.3.2.1.1.1600|2|1600
1.3.6.1.2.1.25.3.2.1.1.1616|2|1616
1.3.6.1.2.1.25.3.2.1.1.1632|2|1632
1.3.6.1.2.1.25.3.2.1.1.3072|2|3072
1.3.6.1.2.1.25.3.2.1.2.768|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.769|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.770|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.771|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.1025|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1026|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1027|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1028|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1029|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1030|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1031|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1032|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1552|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1553|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1554|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1555|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1556|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1557|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1558|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1559|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1560|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1561|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1562|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1563|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1564|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1565|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1566|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1567|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1569|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1570|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1571|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1600|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1616|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1632|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.3072|6|1.3.6.1.2.1.25.3.1.12
1.3.6.1.2.1.25.3.2.1.3.768|4|GenuineIntel: Intel(R) Core(TM) i5-4590S CPU @ 3.00GHz
1.3.6.1.2.1.25.3.2.1.3.769|4|GenuineIntel: Intel(R) Core(TM) i5-4590S CPU @ 3.00GHz
1.3.6.1.2.1.25.3.2.1.3.770|4|GenuineIntel: Intel(R) Core(TM) i5-4590S CPU @ 3.00GHz
1.3.6.1.2.1.25.3.2.1.3.771|4|GenuineIntel: Intel(R) Core(TM) i5-4590S CPU @ 3.00GHz
1.3.6.1.2.1.25.3.2.1.3.1025|4|network interface lo
1.3.6.1.2.1.25.3.2.1.3.1026|4|network interface eth0
1.3.6.1.2.1.25.3.2.1.3.1027|4|network interface eth3
1.3.6.1.2.1.25.3.2.1.3.1028|4|network interface eth2
1.3.6.1.2.1.25.3.2.1.3.1029|4|network interface eth1
1.3.6.1.2.1.25.3.2.1.3.1030|4|network interface bond0
1.3.6.1.2.1.25.3.2.1.3.1031|4|network interface bond1
1.3.6.1.2.1.25.3.2.1.3.1032|4|network interface br0
1.3.6.1.2.1.25.3.2.1.3.1552|4|SCSI disk (/dev/sda)
1.3.6.1.2.1.25.3.2.1.3.1553|4|SCSI disk (/dev/sdb)
1.3.6.1.2.1.25.3.2.1.3.1554|4|SCSI disk (/dev/sdc)
1.3.6.1.2.1.25.3.2.1.3.1555|4|SCSI disk (/dev/sdd)
1.3.6.1.2.1.25.3.2.1.3.1556|4|SCSI disk (/dev/sde)
1.3.6.1.2.1.25.3.2.1.3.1557|4|SCSI disk (/dev/sdf)
1.3.6.1.2.1.25.3.2.1.3.1558|4|SCSI disk (/dev/sdg)
1.3.6.1.2.1.25.3.2.1.3.1559|4|SCSI disk (/dev/sdh)
1.3.6.1.2.1.25.3.2.1.3.1560|4|SCSI disk (/dev/sdi)
1.3.6.1.2.1.25.3.2.1.3.1561|4|SCSI disk (/dev/sdj)
1.3.6.1.2.1.25.3.2.1.3.1562|4|SCSI disk (/dev/sdk)
1.3.6.1.2.1.25.3.2.1.3.1563|4|SCSI disk (/dev/sdl)
1.3.6.1.2.1.25.3.2.1.3.1564|4|SCSI disk (/dev/sdm)
1.3.6.1.2.1.25.3.2.1.3.1565|4|SCSI disk (/dev/sdn)
1.3.6.1.2.1.25.3.2.1.3.1566|4|SCSI disk (/dev/sdo)
1.3.6.1.2.1.25.3.2.1.3.1567|4|SCSI disk (/dev/sdp)
1.3.6.1.2.1.25.3.2.1.3.1569|4|RAID disk (/dev/md1)
1.3.6.1.2.1.25.3.2.1.3.1570|4|RAID disk (/dev/md2)
1.3.6.1.2.1.25.3.2.1.3.1571|4|RAID disk (/dev/md3)
1.3.6.1.2.1.25.3.2.1.3.1600|4|LVM volume (vg289-lv3)
1.3.6.1.2.1.25.3.2.1.3.1616|4|LVM volume (vg288-lv2)
1.3.6.1.2.1.25.3.2.1.3.1632|4|LVM volume (vg1-lv1)
1.3.6.1.2.1.25.3.2.1.3.3072|4|Guessing that there's a floating point co-processor
1.3.6.1.2.1.25.3.2.1.4.768|6|0.0
1.3.6.1.2.1.25.3.2.1.4.769|6|0.0
1.3.6.1.2.1.25.3.2.1.4.770|6|0.0
1.3.6.1.2.1.25.3.2.1.4.771|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1025|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1026|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1027|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1028|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1029|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1030|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1031|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1032|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1552|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1553|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1554|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1555|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1556|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1557|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1558|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1559|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1560|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1561|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1562|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1563|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1564|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1565|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1566|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1567|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1569|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1570|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1571|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1600|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1616|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1632|6|0.0
1.3.6.1.2.1.25.3.2.1.4.3072|6|0.0
1.3.6.1.2.1.25.3.2.1.5.768|2|2
1.3.6.1.2.1.25.3.2.1.5.769|2|2
1.3.6.1.2.1.25.3.2.1.5.770|2|2
1.3.6.1.2.1.25.3.2.1.5.771|2|2
1.3.6.1.2.1.25.3.2.1.5.1025|2|2
1.3.6.1.2.1.25.3.2.1.5.1026|2|2
1.3.6.1.2.1.25.3.2.1.5.1027|2|2
1.3.6.1.2.1.25.3.2.1.5.1028|2|2
1.3.6.1.2.1.25.3.2.1.5.1029|2|2
1.3.6.1.2.1.25.3.2.1.5.1030|2|2
1.3.6.1.2.1.25.3.2.1.5.1031|2|5
1.3.6.1.2.1.25.3.2.1.5.1032|2|2
1.3.6.1.2.1.25.3.2.1.6.1025|65|0
1.3.6.1.2.1.25.3.2.1.6.1026|65|0
1.3.6.1.2.1.25.3.2.1.6.1027|65|0
1.3.6.1.2.1.25.3.2.1.6.1028|65|0
1.3.6.1.2.1.25.3.2.1.6.1029|65|0
1.3.6.1.2.1.25.3.2.1.6.1030|65|0
1.3.6.1.2.1.25.3.2.1.6.1031|65|0
1.3.6.1.2.1.25.3.2.1.6.1032|65|0
1.3.6.1.2.1.25.3.3.1.1.768|6|0.0
1.3.6.1.2.1.25.3.3.1.1.769|6|0.0
1.3.6.1.2.1.25.3.3.1.1.770|6|0.0
1.3.6.1.2.1.25.3.3.1.1.771|6|0.0
1.3.6.1.2.1.25.3.3.1.2.768|2|3
1.3.6.1.2.1.25.3.3.1.2.769|2|1
1.3.6.1.2.1.25.3.3.1.2.770|2|1
1.3.6.1.2.1.25.3.3.1.2.771|2|1
1.3.6.1.2.1.31.1.1.1.1.1|4|lo
1.3.6.1.2.1.31.1.1.1.1.2|4|eth0
1.3.6.1.2.1.31.1.1.1.1.3|4|eth3
1.3.6.1.2.1.31.1.1.1.1.4|4|eth2
1.3.6.1.2.1.31.1.1.1.1.5|4|eth1
1.3.6.1.2.1.31.1.1.1.1.6|4|bond0
1.3.6.1.2.1.31.1.1.1.1.7|4|bond1
1.3.6.1.2.1.31.1.1.1.1.8|4|br0
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|74051228
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|0
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|0
1.3.6.1.2.1.31.1.1.1.2.8|65|0
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|0
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|0
1.3.6.1.2.1.31.1.1.1.3.8|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|0
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|0
1.3.6.1.2.1.31.1.1.1.4.8|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|0
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|0
1.3.6.1.2.1.31.1.1.1.5.8|65|0
1.3.6.1.2.1.31.1.1.1.6.1|70|20262813323
1.3.6.1.2.1.31.1.1.1.6.2|70|109699361700371
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|0
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|0
1.3.6.1.2.1.31.1.1.1.6.8|70|104958392721982
1.3.6.1.2.1.31.1.1.1.7.1|70|50166804
1.3.6.1.2.1.31.1.1.1.7.2|70|103570515333
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|0
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|0
1.3.6.1.2.1.31.1.1.1.7.8|70|45484401535
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|74051228
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|0
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|0
1.3.6.1.2.1.31.1.1.1.8.8|70|0
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|0
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|0
1.3.6.1.2.1.31.1.1.1.9.8|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|20262813323
1.3.6.1.2.1.31.1.1.1.10.2|70|150653149713056
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|0
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|0
1.3.6.1.2.1.31.1.1.1.10.8|70|144395210702338
1.3.6.1.2.1.31.1.1.1.11.1|70|50166804
1.3.6.1.2.1.31.1.1.1.11.2|70|124234439160
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|0
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|0
1.3.6.1.2.1.31.1.1.1.11.8|70|28713527146
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|0
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|0
1.3.6.1.2.1.31.1.1.1.12.8|70|0
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|0
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|0
1.3.6.1.2.1.31.1.1.1.13.8|70|0
1.3.6.1.2.1.31.1.1.1.15.1|66|10
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|0
1.3.6.1.2.1.31.1.1.1.15.4|66|0
1.3.6.1.2.1.31.1.1.1.15.5|66|0
1.3.6.1.2.1.31.1.1.1.15.6|66|0
1.3.6.1.2.1.31.1.1.1.15.7|66|0
1.3.6.1.2.1.31.1.1.1.15.8|66|10
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.8|2|2
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.8|2|1
1.3.6.1.2.1.31.1.1.1.18.1|4|
1.3.6.1.2.1.31.1.1.1.18.2|4|
1.3.6.1.2.1.31.1.1.1.18.3|4|
1.3.6.1.2.1.31.1.1.1.18.4|4|
1.3.6.1.2.1.31.1.1.1.18.5|4|
1.3.6.1.2.1.31.1.1.1.18.6|4|
1.3.6.1.2.1.31.1.1.1.18.7|4|
1.3.6.1.2.1.31.1.1.1.18.8|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.8|67|0
1.3.6.1.2.1.47.1.1.1.1.2.1|4|QNAP Turbo NAS TVS-871U-RP
1.3.6.1.2.1.47.1.1.1.1.3.1|6|0.0.0
1.3.6.1.2.1.47.1.1.1.1.4.1|2|0
1.3.6.1.2.1.47.1.1.1.1.5.1|2|3
1.3.6.1.2.1.47.1.1.1.1.6.1|2|0
1.3.6.1.2.1.47.1.1.1.1.7.1|4|Turbo NAS TVS-871U-RP
1.3.6.1.2.1.47.1.1.1.1.8.1|4|1.0
1.3.6.1.2.1.47.1.1.1.1.9.1|4|\"4.3.3
1.3.6.1.2.1.47.1.1.1.1.10.1|4|\4.3.3
1.3.6.1.2.1.47.1.1.1.1.11.1|4|Q157I12451
1.3.6.1.2.1.47.1.1.1.1.12.1|4|QNAP 1.3.6.1.2.1.47.1.1.1.1.12.1|4|QNAP
1.3.6.1.2.1.47.1.1.1.1.13.1|4|TVS-871U-RP
1.3.6.1.2.1.47.1.1.1.1.14.1|4|
1.3.6.1.2.1.47.1.1.1.1.15.1|4|
1.3.6.1.2.1.47.1.1.1.1.16.1|2|0
1.3.6.1.2.1.47.1.1.1.1.17.1|4|
1.3.6.1.2.1.47.1.1.1.1.18.1|4|
1.3.6.1.4.1.24681.1.2.11.1.1.1|2|1
1.3.6.1.4.1.24681.1.2.11.1.1.2|2|2
1.3.6.1.4.1.24681.1.2.11.1.1.3|2|3
1.3.6.1.4.1.24681.1.2.11.1.1.4|2|4
1.3.6.1.4.1.24681.1.2.11.1.1.5|2|5
1.3.6.1.4.1.24681.1.2.11.1.1.6|2|6
1.3.6.1.4.1.24681.1.2.11.1.1.7|2|7
1.3.6.1.4.1.24681.1.2.11.1.1.8|2|8
1.3.6.1.4.1.24681.1.2.11.1.2.1|4|HDD1
1.3.6.1.4.1.24681.1.2.11.1.2.2|4|HDD2
1.3.6.1.4.1.24681.1.2.11.1.2.3|4|HDD3
1.3.6.1.4.1.24681.1.2.11.1.2.4|4|HDD4
1.3.6.1.4.1.24681.1.2.11.1.2.5|4|HDD5
1.3.6.1.4.1.24681.1.2.11.1.2.6|4|HDD6
1.3.6.1.4.1.24681.1.2.11.1.2.7|4|HDD7
1.3.6.1.4.1.24681.1.2.11.1.2.8|4|HDD8
1.3.6.1.4.1.24681.1.2.11.1.3.1|4|28 C/82 F
1.3.6.1.4.1.24681.1.2.11.1.3.2|4|30 C/86 F
1.3.6.1.4.1.24681.1.2.11.1.3.3|4|30 C/86 F
1.3.6.1.4.1.24681.1.2.11.1.3.4|4|30 C/86 F
1.3.6.1.4.1.24681.1.2.11.1.3.5|4|27 C/80 F
1.3.6.1.4.1.24681.1.2.11.1.3.6|4|28 C/82 F
1.3.6.1.4.1.24681.1.2.11.1.3.7|4|28 C/82 F
1.3.6.1.4.1.24681.1.2.11.1.3.8|4|28 C/82 F
1.3.6.1.4.1.24681.1.2.11.1.4.1|2|0
1.3.6.1.4.1.24681.1.2.11.1.4.2|2|0
1.3.6.1.4.1.24681.1.2.11.1.4.3|2|0
1.3.6.1.4.1.24681.1.2.11.1.4.4|2|0
1.3.6.1.4.1.24681.1.2.11.1.4.5|2|0
1.3.6.1.4.1.24681.1.2.11.1.4.6|2|0
1.3.6.1.4.1.24681.1.2.11.1.4.7|2|0
1.3.6.1.4.1.24681.1.2.11.1.4.8|2|0
1.3.6.1.4.1.24681.1.2.11.1.5.1|4|WD6003FFBX-68MU3N0
1.3.6.1.4.1.24681.1.2.11.1.5.2|4|WD6003FFBX-68MU3N0
1.3.6.1.4.1.24681.1.2.11.1.5.3|4|WD6001FFWX-68Z39N0
1.3.6.1.4.1.24681.1.2.11.1.5.4|4|WD6001FFWX-68Z39N0
1.3.6.1.4.1.24681.1.2.11.1.5.5|4|WD6001FFWX-68Z39N0
1.3.6.1.4.1.24681.1.2.11.1.5.6|4|WD6001FFWX-68Z39N0
1.3.6.1.4.1.24681.1.2.11.1.5.7|4|WD6001FFWX-68Z39N0
1.3.6.1.4.1.24681.1.2.11.1.5.8|4|WD6001FFWX-68Z39N0
1.3.6.1.4.1.24681.1.2.11.1.6.1|4|5.46 TB
1.3.6.1.4.1.24681.1.2.11.1.6.2|4|5.46 TB
1.3.6.1.4.1.24681.1.2.11.1.6.3|4|5.46 TB
1.3.6.1.4.1.24681.1.2.11.1.6.4|4|5.46 TB
1.3.6.1.4.1.24681.1.2.11.1.6.5|4|5.46 TB
1.3.6.1.4.1.24681.1.2.11.1.6.6|4|5.46 TB
1.3.6.1.4.1.24681.1.2.11.1.6.7|4|5.46 TB
1.3.6.1.4.1.24681.1.2.11.1.6.8|4|5.46 TB
1.3.6.1.4.1.24681.1.2.11.1.7.1|4|GOOD
1.3.6.1.4.1.24681.1.2.11.1.7.2|4|GOOD
1.3.6.1.4.1.24681.1.2.11.1.7.3|4|GOOD
1.3.6.1.4.1.24681.1.2.11.1.7.4|4|GOOD
1.3.6.1.4.1.24681.1.2.11.1.7.5|4|GOOD
1.3.6.1.4.1.24681.1.2.11.1.7.6|4|GOOD
1.3.6.1.4.1.24681.1.2.11.1.7.7|4|GOOD
1.3.6.1.4.1.24681.1.2.11.1.7.8|4|GOOD
1.3.6.1.4.1.24681.1.4.1.1.1.1.1.2.1.1.1|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.1.2.1.1.2|2|2
1.3.6.1.4.1.24681.1.4.1.1.1.1.1.2.1.2.1|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.1.2.1.2.2|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.1.2.1.3.1|4|TVS-871U-RP
1.3.6.1.4.1.24681.1.4.1.1.1.1.1.2.1.3.2|4|UX-1200U
1.3.6.1.4.1.24681.1.4.1.1.1.1.1.2.1.4.1|4|Q157I12451
1.3.6.1.4.1.24681.1.4.1.1.1.1.1.2.1.4.2|4|Q149I17439
1.3.6.1.4.1.24681.1.4.1.1.1.1.1.2.1.5.1|2|8
1.3.6.1.4.1.24681.1.4.1.1.1.1.1.2.1.5.2|2|12
1.3.6.1.4.1.24681.1.4.1.1.1.1.1.2.1.6.1|4|KAPITAL-NAS
1.3.6.1.4.1.24681.1.4.1.1.1.1.1.2.1.6.2|4|KAPITAL-NAS
1.3.6.1.4.1.24681.1.4.1.1.1.1.1.2.1.7.1|2|33
1.3.6.1.4.1.24681.1.4.1.1.1.1.1.2.1.7.2|2|32
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.1.1|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.1.2|2|2
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.1.3|2|3
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.1.4|2|4
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.1.5|2|5
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.2.1|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.2.2|2|2
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.2.3|2|3
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.2.4|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.2.5|2|2
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.3.1|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.3.2|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.3.3|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.3.4|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.3.5|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.4.1|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.4.2|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.4.3|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.4.4|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.4.5|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.5.1|2|4504
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.5.2|2|4451
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.5.3|2|4373
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.5.4|2|6480
1.3.6.1.4.1.24681.1.4.1.1.1.1.2.2.1.5.5|2|6480
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.1.1|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.1.2|2|2
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.1.3|2|3
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.1.4|2|4
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.2.1|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.2.2|2|2
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.2.3|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.2.4|2|2
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.3.1|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.3.2|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.3.3|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.3.4|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.4.1|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.4.2|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.4.3|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.4.4|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.5.1|2|-1
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.5.2|2|-1
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.5.3|2|-1
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.5.4|2|-1
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.6.1|2|-1
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.6.2|2|-1
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.6.3|2|-1
1.3.6.1.4.1.24681.1.4.1.1.1.1.3.2.1.6.4|2|-1
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.1|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.2|2|2
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.3|2|3
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.4|2|4
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.5|2|5
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.6|2|6
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.7|2|7
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.8|2|8
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.9|2|9
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.10|2|10
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.11|2|11
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.12|2|12
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.13|2|13
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.14|2|14
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.15|2|15
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.16|2|16
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.17|2|17
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.18|2|18
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.19|2|19
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.1.20|2|20
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.1|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.2|2|2
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.3|2|3
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.4|2|4
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.5|2|5
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.6|2|6
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.7|2|7
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.8|2|8
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.9|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.10|2|2
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.11|2|3
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.12|2|4
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.13|2|5
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.14|2|6
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.15|2|7
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.16|2|8
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.17|2|9
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.18|2|10
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.19|2|11
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.2.20|2|12
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.1|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.2|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.3|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.4|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.5|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.6|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.7|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.8|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.9|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.10|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.11|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.12|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.13|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.14|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.15|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.16|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.17|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.18|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.19|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.3.20|2|1
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.1|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.2|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.3|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.4|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.5|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.6|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.7|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.8|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.9|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.10|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.11|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.12|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.13|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.14|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.15|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.16|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.17|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.18|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.19|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.4.20|4|Good
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.1|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.2|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.3|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.4|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.5|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.6|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.7|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.8|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.9|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.10|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.11|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.12|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.13|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.14|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.15|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.16|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.17|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.18|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.19|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.5.20|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.1|2|28
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.2|2|30
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.3|2|30
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.4|2|30
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.5|2|27
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.6|2|28
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.7|2|28
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.8|2|28
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.9|2|27
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.10|2|30
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.11|2|31
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.12|2|32
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.13|2|30
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.14|2|50
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.15|2|46
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.16|2|45
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.17|2|39
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.18|2|41
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.19|2|45
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.6.20|2|42
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.1|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.2|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.3|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.4|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.5|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.6|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.7|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.8|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.9|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.10|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.11|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.12|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.13|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.14|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.15|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.16|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.17|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.18|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.19|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.7.20|2|0
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.1|4|WDC WD6003FFBX-68MU3N0 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.2|4|WDC WD6003FFBX-68MU3N0 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.3|4|WDC WD6001FFWX-68Z39N0 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.4|4|WDC WD6001FFWX-68Z39N0 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.5|4|WDC WD6001FFWX-68Z39N0 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.6|4|WDC WD6001FFWX-68Z39N0 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.7|4|WDC WD6001FFWX-68Z39N0 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.8|4|WDC WD6001FFWX-68Z39N0 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.9|4|WDC WD6002FFWX-68TZ4N0 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.10|4|WDC WD6002FFWX-68TZ4N0 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.11|4|WDC WD6002FFWX-68TZ4N0 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.12|4|WDC WD6002FFWX-68TZ4N0 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.13|4|WDC WD6002FFWX-68TZ4N0 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.14|4|WDC WD6002FFWX-68TZ4N0 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.15|4|Seagate ST8000VN0022-2EL112 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.16|4|Seagate ST8000VN0022-2EL112 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.17|4|Seagate ST8000VN0022-2EL112 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.18|4|Seagate ST8000VN0022-2EL112 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.19|4|Seagate ST8000VN0022-2EL112 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.8.20|4|Seagate ST8000VN0022-2EL112 (SATA)
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.1|70|6001175126016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.2|70|6001175126016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.3|70|6001175126016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.4|70|6001175126016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.5|70|6001175126016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.6|70|6001175126016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.7|70|6001175126016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.8|70|6001175126016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.9|70|6001175126016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.10|70|6001175126016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.11|70|6001175126016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.12|70|6001175126016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.13|70|6001175126016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.14|70|6001175126016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.15|70|8001563222016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.16|70|8001563222016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.17|70|8001563222016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.18|70|8001563222016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.19|70|8001563222016
1.3.6.1.4.1.24681.1.4.1.1.1.1.5.2.1.9.20|70|8001563222016
1.3.6.1.6.3.10.2.1.3.0|2|61046