From 935f9b924d0dda2bfc92e586bb3d33419e2ee1ef Mon Sep 17 00:00:00 2001 From: TheGreatDoc <32565115+TheGreatDoc@users.noreply.github.com> Date: Fri, 18 Sep 2020 07:51:02 +0200 Subject: [PATCH] Synology DSM: Moved to yaml discovery (#11962) * Synology DSM: Moved to yaml discovery * Fix styleci issues + sensors indexes to match php ones * Fixed test * Tests on DS214se Tests on DS214se * remove ds214 * Update dsm_ds916.json Co-authored-by: PipoCanaja <38363551+PipoCanaja@users.noreply.github.com> --- .../os/dsm.inc.php => LibreNMS/OS/Dsm.php | 28 +- includes/definitions/discovery/dsm.yaml | 117 + includes/discovery/sensors/state/dsm.inc.php | 170 - .../discovery/sensors/temperature/dsm.inc.php | 29 - includes/polling/os/unix.inc.php | 17 - tests/data/dsm.json | 2935 ++++++++++++++++- tests/data/dsm_ds214.json | 55 - tests/data/dsm_ds214se.json | 1528 +++++++++ tests/data/dsm_ds916.json | 37 +- tests/snmpsim/dsm.snmprec | 2068 +++++++++++- tests/snmpsim/dsm_ds214.snmprec | 3 - tests/snmpsim/dsm_ds214se.snmprec | 495 +++ 12 files changed, 7172 insertions(+), 310 deletions(-) rename includes/polling/os/dsm.inc.php => LibreNMS/OS/Dsm.php (53%) create mode 100644 includes/definitions/discovery/dsm.yaml delete mode 100644 includes/discovery/sensors/state/dsm.inc.php delete mode 100644 includes/discovery/sensors/temperature/dsm.inc.php delete mode 100644 tests/data/dsm_ds214.json create mode 100644 tests/data/dsm_ds214se.json delete mode 100644 tests/snmpsim/dsm_ds214.snmprec create mode 100644 tests/snmpsim/dsm_ds214se.snmprec diff --git a/includes/polling/os/dsm.inc.php b/LibreNMS/OS/Dsm.php similarity index 53% rename from includes/polling/os/dsm.inc.php rename to LibreNMS/OS/Dsm.php index d064799c24..97b681eb06 100644 --- a/includes/polling/os/dsm.inc.php +++ b/LibreNMS/OS/Dsm.php @@ -1,6 +1,6 @@ . * - * @package LibreNMS * @link http://librenms.org * @copyright 2018 Nick Peelman + * @copyright 2020 Daniel Baeza * @author Nick Peelman + * @author Daniel Baeza */ -$tmp_dsm = snmp_get_multi_oid($device, ['modelName.0', 'version.0', 'serialNumber.0'], '-OUQs', 'SYNOLOGY-SYSTEM-MIB'); -$hardware = $tmp_dsm['modelName.0']; -$version = $tmp_dsm['version.0']; -$serial = $tmp_dsm['serialNumber.0']; -unset($tmp_dsm); +namespace LibreNMS\OS; + +use Illuminate\Support\Str; +use LibreNMS\Interfaces\Discovery\OSDiscovery; +use LibreNMS\OS; + +class Dsm extends OS implements OSDiscovery +{ + public function discoverOS(): void + { + $device = $this->getDeviceModel(); + $tmp_dsm = snmp_get_multi_oid($this->getDevice(), ['modelName.0', 'version.0', 'serialNumber.0'], '-OUQs', 'SYNOLOGY-SYSTEM-MIB'); + $device->hardware = $tmp_dsm['modelName.0']; + $device->version = Str::replaceFirst('DSM ', '', $tmp_dsm['version.0']); + $device->serial = $tmp_dsm['serialNumber.0']; + unset($tmp_dsm); + } +} diff --git a/includes/definitions/discovery/dsm.yaml b/includes/definitions/discovery/dsm.yaml new file mode 100644 index 0000000000..05bea73cf1 --- /dev/null +++ b/includes/definitions/discovery/dsm.yaml @@ -0,0 +1,117 @@ +mib: SYNOLOGY-SYSTEM-MIB:SYNOLOGY-RAID-MIB:SYNOLOGY-DISK-MIB +modules: + sensors: + temperature: + data: + - + oid: temperature + num_oid: '.1.3.6.1.4.1.6574.1.2.{{ $index }}' + descr: 'System' + index: '99' + group: 'System' + - + oid: diskTable + value: diskTemperature + num_oid: '.1.3.6.1.4.1.6574.2.1.1.6.{{ $index }}' + descr: '{{ $diskID }} {{ $diskModel }}' + index: '{{ $index }}' + group: 'Disks' + state: + data: + - + oid: systemStatus + num_oid: '.1.3.6.1.4.1.6574.1.1.{{ $index }}' + descr: 'System' + index: '{{ $index }}' + group: 'System' + state_name: systemStatusState + states: + - { value: 1, generic: 0, graph: 0, descr: 'Normal' } + - { value: 2, generic: 2, graph: 0, descr: 'Failed' } + - + oid: powerStatus + num_oid: '.1.3.6.1.4.1.6574.1.3.{{ $index }}' + descr: 'Power' + index: '{{ $index }}' + group: 'System' + state_name: powerStatusState + states: + - { value: 1, generic: 0, graph: 0, descr: 'Normal' } + - { value: 2, generic: 2, graph: 0, descr: 'Failed' } + - + oid: systemFanStatus + num_oid: '.1.3.6.1.4.1.6574.1.4.1.{{ $index }}' + descr: 'FAN - System' + index: '{{ $index }}' + group: 'System' + state_name: systemFanStatusState + states: + - { value: 1, generic: 0, graph: 0, descr: 'Normal' } + - { value: 2, generic: 2, graph: 0, descr: 'Failed' } + - + oid: cpuFanStatus + num_oid: '.1.3.6.1.4.1.6574.1.4.2.{{ $index }}' + descr: 'FAN - CPU' + index: '{{ $index }}' + group: 'System' + state_name: cpuFanStatusState + states: + - { value: 1, generic: 0, graph: 0, descr: 'Normal' } + - { value: 2, generic: 2, graph: 0, descr: 'Failed' } + - + oid: upgradeAvailable + num_oid: '.1.3.6.1.4.1.6574.1.5.4.{{ $index }}' + descr: 'Upgrade Availability' + index: '{{ $index }}' + group: 'System' + state_name: upgradeAvailableState + states: + - { value: 1, generic: 1, graph: 0, descr: 'Available' } + - { value: 2, generic: 0, graph: 0, descr: 'Unavailable' } + - { value: 3, generic: 3, graph: 0, descr: 'Connecting' } + - { value: 4, generic: 3, graph: 0, descr: 'Disconnected' } + - { value: 5, generic: 3, graph: 0, descr: 'Others' } + - + oid: raidTable + value: raidStatus + num_oid: '.1.3.6.1.4.1.6574.3.1.1.3.{{ $index }}' + descr: '{{ $raidName }}' + index: '{{ $index }}' + group: 'RAIDs' + state_name: raidStatusState + states: + - { value: 1, generic: 0, graph: 0, descr: 'Normal' } + - { value: 2, generic: 1, graph: 0, descr: 'Repairing' } + - { value: 3, generic: 1, graph: 0, descr: 'Migrating' } + - { value: 4, generic: 1, graph: 0, descr: 'Expanding' } + - { value: 5, generic: 1, graph: 0, descr: 'Deleting' } + - { value: 6, generic: 1, graph: 0, descr: 'Creating' } + - { value: 7, generic: 1, graph: 0, descr: 'RaidSyncing' } + - { value: 8, generic: 1, graph: 0, descr: 'RaidParityChecking' } + - { value: 9, generic: 1, graph: 0, descr: 'RaidAssembling' } + - { value: 10, generic: 1, graph: 0, descr: 'Canceling' } + - { value: 11, generic: 2, graph: 0, descr: 'Degrade' } + - { value: 12, generic: 2, graph: 0, descr: 'Crashed' } + - { value: 13, generic: 1, graph: 0, descr: 'DataScrubbing' } + - { value: 14, generic: 1, graph: 0, descr: 'RaidDeploying' } + - { value: 15, generic: 1, graph: 0, descr: 'RaidUnDeploying' } + - { value: 16, generic: 1, graph: 0, descr: 'RaidMountCache' } + - { value: 17, generic: 1, graph: 0, descr: 'RaidUnmountCache' } + - { value: 18, generic: 1, graph: 0, descr: 'RaidExpandingUnfinishedSHR' } + - { value: 19, generic: 1, graph: 0, descr: 'RaidConvertSHRToPool' } + - { value: 20, generic: 1, graph: 0, descr: 'RaidMigrateSHR1ToSHR2' } + - { value: 21, generic: 3, graph: 0, descr: 'RaidUnknownStatus' } + - + oid: diskTable + value: diskStatus + num_oid: '.1.3.6.1.4.1.6574.2.1.1.5.{{ $index }}' + descr: '{{ $diskID }} {{ $diskModel }}' + index: '{{ $index }}' + group: 'Disks' + state_name: diskStatusState + states: + - { value: 1, generic: 0, graph: 0, descr: 'Normal' } + - { value: 2, generic: 1, graph: 0, descr: 'Initialized' } + - { value: 3, generic: 1, graph: 0, descr: 'NotInitialized' } + - { value: 4, generic: 2, graph: 0, descr: 'SystemPartitionFailed' } + - { value: 5, generic: 2, graph: 0, descr: 'Crashed' } diff --git a/includes/discovery/sensors/state/dsm.inc.php b/includes/discovery/sensors/state/dsm.inc.php deleted file mode 100644 index 5391e435e8..0000000000 --- a/includes/discovery/sensors/state/dsm.inc.php +++ /dev/null @@ -1,170 +0,0 @@ - 1, 'generic' => 0, 'graph' => 0, 'descr' => 'Normal'], - ['value' => 2, 'generic' => 2, 'graph' => 0, 'descr' => 'Failed'], - ]; - create_state_index($state_name, $states); - - //Discover Sensors - discover_sensor($valid['sensor'], 'state', $device, $cur_oid, $index, $state_name, 'System Status', 1, 1, null, null, null, null, $state, 'snmp', $index); - - //Create Sensor To State Index - create_sensor_to_state_index($device, $state_name, $index); -} - -// Power Status OID (Value : 1 Normal, 2 Failed) -$state = snmp_get($device, "powerStatus.0", "-Ovqe", 'SYNOLOGY-SYSTEM-MIB'); -$cur_oid = '.1.3.6.1.4.1.6574.1.3.0'; -$index = '0'; - -if (is_numeric($state)) { - //Create State Index - $state_name = 'powerStatusState'; - $states = [ - ['value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'Normal'], - ['value' => 2, 'generic' => 2, 'graph' => 0, 'descr' => 'Failed'], - ]; - create_state_index($state_name, $states); - - //Discover Sensors - discover_sensor($valid['sensor'], 'state', $device, $cur_oid, $index, $state_name, 'Power Status', 1, 1, null, null, null, null, $state, 'snmp', $index); - - //Create Sensor To State Index - create_sensor_to_state_index($device, $state_name, $index); -} - -// System Fan Status OID (Value : 1 Normal, 2 Failed) -$state = snmp_get($device, "systemFanStatus.0", "-Ovqe", 'SYNOLOGY-SYSTEM-MIB'); -$cur_oid = '.1.3.6.1.4.1.6574.1.4.1.0'; -$index = '0'; - -if (is_numeric($state)) { - //Create State Index - $state_name = 'systemFanStatusState'; - $states = [ - ['value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'Normal'], - ['value' => 2, 'generic' => 2, 'graph' => 0, 'descr' => 'Failed'], - ]; - create_state_index($state_name, $states); - - - //Discover Sensors - discover_sensor($valid['sensor'], 'state', $device, $cur_oid, $index, $state_name, 'System Fan Status', 1, 1, null, null, null, null, $state, 'snmp', $index); - - //Create Sensor To State Index - create_sensor_to_state_index($device, $state_name, $index); -} - -// CPU Fan Status OID (Value : 1 Normal, 2 Failed) -$state = snmp_get($device, "cpuFanStatus.0", "-Ovqe", 'SYNOLOGY-SYSTEM-MIB'); -$cur_oid = '.1.3.6.1.4.1.6574.1.4.2.0'; -$index = '0'; - -if (is_numeric($state)) { - //Create State Index - $state_name = 'cpuFanStatusState'; - $states = [ - ['value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'Normal'], - ['value' => 2, 'generic' => 2, 'graph' => 0, 'descr' => 'Failed'], - ]; - create_state_index($state_name, $states); - - //Discover Sensors - discover_sensor($valid['sensor'], 'state', $device, $cur_oid, $index, $state_name, 'CPU Fan Status', 1, 1, null, null, null, null, $state, 'snmp', $index); - - //Create Sensor To State Index - create_sensor_to_state_index($device, $state_name, $index); -} - -// DSM Upgrade Available OID (Value : 1 Available, 2 Unavailable, 3 Connecting, 4 Disconnected, 5 Others) -$state = snmp_get($device, "upgradeAvailable.0", "-Ovqe", 'SYNOLOGY-SYSTEM-MIB'); -$cur_oid = '.1.3.6.1.4.1.6574.1.5.4.0'; -$index = '0'; - -if (is_numeric($state)) { - //Create State Index - $state_name = 'upgradeAvailableState'; - $states = [ - ['value' => 1, 'generic' => 1, 'graph' => 0, 'descr' => 'Available'], - ['value' => 2, 'generic' => 0, 'graph' => 0, 'descr' => 'Unavailable'], - ['value' => 3, 'generic' => 3, 'graph' => 0, 'descr' => 'Connecting'], - ['value' => 4, 'generic' => 3, 'graph' => 0, 'descr' => 'Disconnected'], - ['value' => 5, 'generic' => 3, 'graph' => 0, 'descr' => 'Others'], - ]; - create_state_index($state_name, $states); - - //Discover Sensors - discover_sensor($valid['sensor'], 'state', $device, $cur_oid, $index, $state_name, 'Upgrade Availability', 1, 1, null, null, null, null, $state, 'snmp', $index); - - //Create Sensor To State Index - create_sensor_to_state_index($device, $state_name, $index); -} - -// RAID Status OID (Value : 1 Normal, 2 Repairing, 3 Migrating, 4 Expanding, 5 Deleting, 6 Creating, 7 RaidSyncing, 8 RaidParityChecking, 9 RaidAssembling, 10 Canceling, 11 Degrade, 12 Crashed, 13 DataScrubbing) -$oids = snmpwalk_cache_multi_oid($device, 'raidTable', [], 'SYNOLOGY-RAID-MIB'); -$cur_oid = '.1.3.6.1.4.1.6574.3.1.1.3.'; - -if (is_array($oids)) { - //Create State Index - $state_name = 'raidStatusState'; - $states = [ - ['value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'Normal'], - ['value' => 2, 'generic' => 1, 'graph' => 0, 'descr' => 'Repairing'], - ['value' => 3, 'generic' => 1, 'graph' => 0, 'descr' => 'Migrating'], - ['value' => 4, 'generic' => 1, 'graph' => 0, 'descr' => 'Expanding'], - ['value' => 5, 'generic' => 1, 'graph' => 0, 'descr' => 'Deleting'], - ['value' => 6, 'generic' => 1, 'graph' => 0, 'descr' => 'Creating'], - ['value' => 7, 'generic' => 1, 'graph' => 0, 'descr' => 'RaidSyncing'], - ['value' => 8, 'generic' => 1, 'graph' => 0, 'descr' => 'RaidParityChecking'], - ['value' => 9, 'generic' => 1, 'graph' => 0, 'descr' => 'RaidAssembling'], - ['value' => 10, 'generic' => 1, 'graph' => 0, 'descr' => 'Canceling'], - ['value' => 11, 'generic' => 2, 'graph' => 0, 'descr' => 'Degrade'], - ['value' => 12, 'generic' => 2, 'graph' => 0, 'descr' => 'Crashed'], - ['value' => 13, 'generic' => 1, 'graph' => 0, 'descr' => 'DataScrubbing'], - ]; - create_state_index($state_name, $states); - - foreach ($oids as $index => $entry) { - //Discover Sensors - discover_sensor($valid['sensor'], 'state', $device, $cur_oid.$index, $index, $state_name, 'RAID Status', 1, 1, null, null, null, null, $entry['raidStatus'], 'snmp', $index); - - //Create Sensor To State Index - create_sensor_to_state_index($device, $state_name, $index); - } -} - -// Disks Status OID (Value : 1 Normal, 2 Initialized, 3 Not Initialized, 4 System Partition Failed, 5 Crashed ) -$oids = snmpwalk_cache_multi_oid($device, 'diskTable', [], 'SYNOLOGY-DISK-MIB'); -$cur_oid = '.1.3.6.1.4.1.6574.2.1.1.5.'; - -if (is_array($oids)) { - //Create State Index - $state_name = 'diskStatusState'; - $states = [ - ['value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'Normal'], - ['value' => 3, 'generic' => 1, 'graph' => 0, 'descr' => 'Initialized'], - ['value' => 3, 'generic' => 1, 'graph' => 0, 'descr' => 'Not Initialized'], - ['value' => 4, 'generic' => 2, 'graph' => 0, 'descr' => 'System Partition Failed'], - ['value' => 5, 'generic' => 2, 'graph' => 0, 'descr' => 'Crashed'], - ]; - create_state_index($state_name, $states); - - foreach ($oids as $index => $entry) { - //Discover Sensors - discover_sensor($valid['sensor'], 'state', $device, $cur_oid.$index, $index, $state_name, 'Disk Status '.$index, 1, 1, null, null, null, null, $entry['diskStatus'], 'snmp', $index); - - //Create Sensor To State Index - create_sensor_to_state_index($device, $state_name, $index); - } -} diff --git a/includes/discovery/sensors/temperature/dsm.inc.php b/includes/discovery/sensors/temperature/dsm.inc.php deleted file mode 100644 index e9f49f9358..0000000000 --- a/includes/discovery/sensors/temperature/dsm.inc.php +++ /dev/null @@ -1,29 +0,0 @@ - $entry) { - // Get the disk temperature full oid - $disk_oid = $disk_temperature_oid.$disk_number; - // Get the temperature for the disk - $disk_temperature = $entry['diskTemperature']; - // Getting the disk information (Number and model) - $disk_information = $entry['diskID'].' '.$entry['diskModel']; - // Save the temperature for the disk - discover_sensor($valid['sensor'], 'temperature', $device, $disk_oid, $disk_number, 'snmp', $disk_information, '1', '1', null, null, null, null, $disk_temperature); - } -} diff --git a/includes/polling/os/unix.inc.php b/includes/polling/os/unix.inc.php index c4dcf8a62b..d5d956662f 100644 --- a/includes/polling/os/unix.inc.php +++ b/includes/polling/os/unix.inc.php @@ -154,23 +154,6 @@ if (in_array($device['os'], array("linux", "endian", "proxmox", "recoveryos"))) list(,,$version,$hardware,$freebsda, $freebsdb, $arch) = explode(" ", $device['sysDescr']); $features = $freebsda . " " . $freebsdb; $hardware = "$hardware ($arch)"; -} elseif ($device['os'] == "dsm") { - # This only gets us the build, not the actual version number, so won't use this.. yet. - # list(,,,$version,) = explode(" ",$device['sysDescr'],5); - # $version = "Build " . trim($version,'#'); - - $hrSystemInitialLoadParameters = trim(snmp_get($device, "hrSystemInitialLoadParameters.0", "-Osqnv")); - - $options = explode(" ", $hrSystemInitialLoadParameters); - - foreach ($options as $option) { - list($key,$value) = explode("=", $option, 2); - if ($key == "syno_hw_version") { - $hardware = $value; - } - } - - $version = snmp_get($device, "version.0", "-Osqnv", "SYNOLOGY-SYSTEM-MIB"); } elseif ($device['os'] == "pfsense") { $output = preg_split("/ /", $device['sysDescr']); $version = $output[2]; diff --git a/tests/data/dsm.json b/tests/data/dsm.json index 255b584398..e302e7bc14 100644 --- a/tests/data/dsm.json +++ b/tests/data/dsm.json @@ -3,16 +3,16 @@ "discovery": { "devices": [ { - "sysName": "", + "sysName": "", "sysObjectID": ".1.3.6.1.4.1.8072.3.2.10", "sysDescr": "Linux hostname 3.10.77 #8451 SMP Wed Jan 4 00:31:32 CST 2017 x86_64", "sysContact": null, - "version": null, - "hardware": null, + "version": "6.1-15217", + "hardware": "RS2212RP+", "features": null, "os": "dsm", "type": "storage", - "serial": null, + "serial": "3005AWL999111", "icon": "synology.svg", "location": null } @@ -21,18 +21,18 @@ "poller": { "devices": [ { - "sysName": "", + "sysName": "", "sysObjectID": ".1.3.6.1.4.1.8072.3.2.10", "sysDescr": "Linux hostname 3.10.77 #8451 SMP Wed Jan 4 00:31:32 CST 2017 x86_64", - "sysContact": null, - "version": "DSM 6.1-15217", - "hardware": "DS1817+", + "sysContact": "", + "version": "6.1-15217", + "hardware": "RS2212RP+", "features": null, "os": "dsm", "type": "storage", "serial": "3005AWL999111", "icon": "synology.svg", - "location": null + "location": "" } ] } @@ -40,21 +40,1221 @@ "sensors": { "discovery": { "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.1.4.2.0", + "sensor_index": "0", + "sensor_type": "cpuFanStatusState", + "sensor_descr": "FAN - CPU", + "group": "System", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cpuFanStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.0", + "sensor_index": "0", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 1 ST3320620NS", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.1", + "sensor_index": "1", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 2 WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.10", + "sensor_index": "10", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 1 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.11", + "sensor_index": "11", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 2 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.12", + "sensor_index": "12", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 3 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.13", + "sensor_index": "13", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 4 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.14", + "sensor_index": "14", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 5 (RX1214rp-1) WD60EFAX-68SHWN0", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.15", + "sensor_index": "15", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 6 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.16", + "sensor_index": "16", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 7 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.17", + "sensor_index": "17", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 8 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.18", + "sensor_index": "18", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 9 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.19", + "sensor_index": "19", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 10 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.2", + "sensor_index": "2", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 3 WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.20", + "sensor_index": "20", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 11 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.21", + "sensor_index": "21", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 12 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.3", + "sensor_index": "3", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 4 WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.4", + "sensor_index": "4", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 5 WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.5", + "sensor_index": "5", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 6 WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.6", + "sensor_index": "6", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 7 WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.7", + "sensor_index": "7", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 8 WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.8", + "sensor_index": "8", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 9 WD50EFRX-68L0BN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.9", + "sensor_index": "9", + "sensor_type": "diskStatusState", + "sensor_descr": "Disk 10 WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.1.3.0", + "sensor_index": "0", + "sensor_type": "powerStatusState", + "sensor_descr": "Power", + "group": "System", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "powerStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.3.1.1.3.0", + "sensor_index": "0", + "sensor_type": "raidStatusState", + "sensor_descr": "Volume 1", + "group": "RAIDs", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "raidStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.1.4.1.0", + "sensor_index": "0", + "sensor_type": "systemFanStatusState", + "sensor_descr": "FAN - System", + "group": "System", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "systemFanStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.1.1.0", + "sensor_index": "0", + "sensor_type": "systemStatusState", + "sensor_descr": "System", + "group": "System", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "systemStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.1.5.4.0", + "sensor_index": "0", + "sensor_type": "upgradeAvailableState", + "sensor_descr": "Upgrade Availability", + "group": "System", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upgradeAvailableState" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.0", + "sensor_index": "0", + "sensor_type": "dsm", + "sensor_descr": "Disk 1 ST3320620NS", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 42, + "sensor_limit": 62, + "sensor_limit_warn": null, + "sensor_limit_low": 32, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.1", + "sensor_index": "1", + "sensor_type": "dsm", + "sensor_descr": "Disk 2 WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 42, + "sensor_limit": 62, + "sensor_limit_warn": null, + "sensor_limit_low": 32, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.10", + "sensor_index": "10", + "sensor_type": "dsm", + "sensor_descr": "Disk 1 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 36, + "sensor_limit": 56, + "sensor_limit_warn": null, + "sensor_limit_low": 26, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.11", + "sensor_index": "11", + "sensor_type": "dsm", + "sensor_descr": "Disk 2 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 38, + "sensor_limit": 58, + "sensor_limit_warn": null, + "sensor_limit_low": 28, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.12", + "sensor_index": "12", + "sensor_type": "dsm", + "sensor_descr": "Disk 3 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 37, + "sensor_limit": 57, + "sensor_limit_warn": null, + "sensor_limit_low": 27, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.13", + "sensor_index": "13", + "sensor_type": "dsm", + "sensor_descr": "Disk 4 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 36, + "sensor_limit": 56, + "sensor_limit_warn": null, + "sensor_limit_low": 26, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.14", + "sensor_index": "14", + "sensor_type": "dsm", + "sensor_descr": "Disk 5 (RX1214rp-1) WD60EFAX-68SHWN0", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 31, + "sensor_limit": 51, + "sensor_limit_warn": null, + "sensor_limit_low": 21, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.15", + "sensor_index": "15", + "sensor_type": "dsm", + "sensor_descr": "Disk 6 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 35, + "sensor_limit": 55, + "sensor_limit_warn": null, + "sensor_limit_low": 25, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.16", + "sensor_index": "16", + "sensor_type": "dsm", + "sensor_descr": "Disk 7 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 36, + "sensor_limit": 56, + "sensor_limit_warn": null, + "sensor_limit_low": 26, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.17", + "sensor_index": "17", + "sensor_type": "dsm", + "sensor_descr": "Disk 8 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 35, + "sensor_limit": 55, + "sensor_limit_warn": null, + "sensor_limit_low": 25, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.18", + "sensor_index": "18", + "sensor_type": "dsm", + "sensor_descr": "Disk 9 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 54, + "sensor_limit_warn": null, + "sensor_limit_low": 24, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.19", + "sensor_index": "19", + "sensor_type": "dsm", + "sensor_descr": "Disk 10 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 54, + "sensor_limit_warn": null, + "sensor_limit_low": 24, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.2", + "sensor_index": "2", + "sensor_type": "dsm", + "sensor_descr": "Disk 3 WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 40, + "sensor_limit": 60, + "sensor_limit_warn": null, + "sensor_limit_low": 30, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.20", + "sensor_index": "20", + "sensor_type": "dsm", + "sensor_descr": "Disk 11 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 35, + "sensor_limit": 55, + "sensor_limit_warn": null, + "sensor_limit_low": 25, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.21", + "sensor_index": "21", + "sensor_type": "dsm", + "sensor_descr": "Disk 12 (RX1214rp-1) WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 35, + "sensor_limit": 55, + "sensor_limit_warn": null, + "sensor_limit_low": 25, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.3", + "sensor_index": "3", + "sensor_type": "dsm", + "sensor_descr": "Disk 4 WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 41, + "sensor_limit": 61, + "sensor_limit_warn": null, + "sensor_limit_low": 31, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.4", + "sensor_index": "4", + "sensor_type": "dsm", + "sensor_descr": "Disk 5 WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 43, + "sensor_limit": 63, + "sensor_limit_warn": null, + "sensor_limit_low": 33, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.5", + "sensor_index": "5", + "sensor_type": "dsm", + "sensor_descr": "Disk 6 WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 41, + "sensor_limit": 61, + "sensor_limit_warn": null, + "sensor_limit_low": 31, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.6", + "sensor_index": "6", + "sensor_type": "dsm", + "sensor_descr": "Disk 7 WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 41, + "sensor_limit": 61, + "sensor_limit_warn": null, + "sensor_limit_low": 31, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.7", + "sensor_index": "7", + "sensor_type": "dsm", + "sensor_descr": "Disk 8 WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 43, + "sensor_limit": 63, + "sensor_limit_warn": null, + "sensor_limit_low": 33, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.8", + "sensor_index": "8", + "sensor_type": "dsm", + "sensor_descr": "Disk 9 WD50EFRX-68L0BN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 41, + "sensor_limit": 61, + "sensor_limit_warn": null, + "sensor_limit_low": 31, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.9", + "sensor_index": "9", + "sensor_type": "dsm", + "sensor_descr": "Disk 10 WD50EFRX-68MYMN1", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 38, + "sensor_limit": 58, + "sensor_limit_warn": null, + "sensor_limit_low": 28, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "temperature", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.6574.1.2.0", "sensor_index": "99", - "sensor_type": "snmp", - "sensor_descr": "System Temperature", - "group": null, + "sensor_type": "dsm", + "sensor_descr": "System", + "group": "System", "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": 20, + "sensor_current": 48, + "sensor_limit": 68, "sensor_limit_warn": null, - "sensor_limit_low": -10, + "sensor_limit_low": 38, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -65,8 +1265,1711 @@ "state_name": null } ], - "state_indexes": [] + "state_indexes": [ + { + "state_name": "cpuFanStatusState", + "state_descr": "Normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cpuFanStatusState", + "state_descr": "Failed", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "diskStatusState", + "state_descr": "Normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "diskStatusState", + "state_descr": "Initialized", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "diskStatusState", + "state_descr": "NotInitialized", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "diskStatusState", + "state_descr": "SystemPartitionFailed", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 2 + }, + { + "state_name": "diskStatusState", + "state_descr": "Crashed", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 2 + }, + { + "state_name": "powerStatusState", + "state_descr": "Normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "powerStatusState", + "state_descr": "Failed", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "raidStatusState", + "state_descr": "Normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "raidStatusState", + "state_descr": "Repairing", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "Migrating", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "Expanding", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "Deleting", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "Creating", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidSyncing", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidParityChecking", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidAssembling", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "Canceling", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "Degrade", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 2 + }, + { + "state_name": "raidStatusState", + "state_descr": "Crashed", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 2 + }, + { + "state_name": "raidStatusState", + "state_descr": "DataScrubbing", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidDeploying", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidUnDeploying", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidMountCache", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidUnmountCache", + "state_draw_graph": 0, + "state_value": 17, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidExpandingUnfinishedSHR", + "state_draw_graph": 0, + "state_value": 18, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidConvertSHRToPool", + "state_draw_graph": 0, + "state_value": 19, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidMigrateSHR1ToSHR2", + "state_draw_graph": 0, + "state_value": 20, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidUnknownStatus", + "state_draw_graph": 0, + "state_value": 21, + "state_generic_value": 3 + }, + { + "state_name": "systemFanStatusState", + "state_descr": "Normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "systemFanStatusState", + "state_descr": "Failed", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "systemStatusState", + "state_descr": "Normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "systemStatusState", + "state_descr": "Failed", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "upgradeAvailableState", + "state_descr": "Available", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 1 + }, + { + "state_name": "upgradeAvailableState", + "state_descr": "Unavailable", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upgradeAvailableState", + "state_descr": "Connecting", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 3 + }, + { + "state_name": "upgradeAvailableState", + "state_descr": "Disconnected", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "upgradeAvailableState", + "state_descr": "Others", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 3 + } + ] }, "poller": "matches discovery" + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lo", + "ifName": "lo", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "sit0", + "ifName": "sit0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "sit0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "eth0", + "ifName": "eth0", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "eth1", + "ifName": "eth1", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "bond0", + "ifName": "bond0", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "bond0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lo", + "ifName": "lo", + "portName": null, + "ifIndex": 1, + "ifSpeed": 10000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 65536, + "ifType": "softwareLoopback", + "ifAlias": "lo", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 196953094, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 196953094, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 32192981177, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 32192981177, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "sit0", + "ifName": "sit0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1480, + "ifType": "tunnel", + "ifAlias": "sit0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "eth0", + "ifName": "eth0", + "portName": null, + "ifIndex": 3, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth0", + "ifPhysAddress": "0011321b6cdf", + "ifHardType": null, + "ifLastChange": 1261654485, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 29823931491, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 56516782723, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 635, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 35692338631034, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 79921372456608, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 11562019, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 45486147, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "eth1", + "ifName": "eth1", + "portName": null, + "ifIndex": 4, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth1", + "ifPhysAddress": "0011321b6cdf", + "ifHardType": null, + "ifLastChange": 1261654485, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 42961652642, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 40001730818, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 2044, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 50449973800008, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 55208641154932, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 10603417, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 82789085, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "bond0", + "ifName": "bond0", + "portName": null, + "ifIndex": 7, + "ifSpeed": 2000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 2000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "bond0", + "ifPhysAddress": "0011321b6cdf", + "ifHardType": null, + "ifLastChange": 1261654485, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 72785584133, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 96518513541, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 2679, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 86142312431042, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 135130013611540, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 22165436, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 128275232, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196608, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196608", + "processor_index": "196608", + "processor_type": "hr", + "processor_usage": 8, + "processor_descr": "Intel Atom D2701 @ 2.13GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196609, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196609", + "processor_index": "196609", + "processor_type": "hr", + "processor_usage": 8, + "processor_descr": "Intel Atom D2701 @ 2.13GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196610, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196610", + "processor_index": "196610", + "processor_type": "hr", + "processor_usage": 8, + "processor_descr": "Intel Atom D2701 @ 2.13GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196611, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196611", + "processor_index": "196611", + "processor_type": "hr", + "processor_usage": 10, + "processor_descr": "Intel Atom D2701 @ 2.13GHz", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "1", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Physical memory", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "3", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Virtual memory", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "10", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Swap space", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": { + "mempools": [ + { + "mempool_index": "1", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Physical memory", + "mempool_perc": 89, + "mempool_used": 917839872, + "mempool_free": 118865920, + "mempool_total": 1036705792, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "3", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Virtual memory", + "mempool_perc": 34, + "mempool_used": 1289469952, + "mempool_free": 2517495808, + "mempool_total": 3806965760, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "10", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Swap space", + "mempool_perc": 13, + "mempool_used": 371630080, + "mempool_free": 2398629888, + "mempool_total": 2770259968, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + } + }, + "storage": { + "discovery": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "31", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/", + "storage_size": 2442780672, + "storage_units": 4096, + "storage_used": 881020928, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "36", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp", + "storage_size": 518352896, + "storage_units": 4096, + "storage_used": 21966848, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "37", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/run", + "storage_size": 518352896, + "storage_units": 4096, + "storage_used": 18292736, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "38", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/shm", + "storage_size": 518352896, + "storage_units": 4096, + "storage_used": 4096, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "39", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/sys/fs/cgroup", + "storage_size": 4096, + "storage_units": 4096, + "storage_used": 0, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "40", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/run/cgmanager/fs", + "storage_size": 102400, + "storage_units": 4096, + "storage_used": 0, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "51", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/volume1", + "storage_size": 94178937405440, + "storage_units": 65536, + "storage_used": 64566361194496, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + }, + "poller": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "31", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/", + "storage_size": 2442780672, + "storage_units": 4096, + "storage_used": 881020928, + "storage_free": 1561759744, + "storage_perc": 36, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "36", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp", + "storage_size": 518352896, + "storage_units": 4096, + "storage_used": 21966848, + "storage_free": 496386048, + "storage_perc": 4, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "37", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/run", + "storage_size": 518352896, + "storage_units": 4096, + "storage_used": 18292736, + "storage_free": 500060160, + "storage_perc": 4, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "38", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/shm", + "storage_size": 518352896, + "storage_units": 4096, + "storage_used": 4096, + "storage_free": 518348800, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "39", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/sys/fs/cgroup", + "storage_size": 4096, + "storage_units": 4096, + "storage_used": 0, + "storage_free": 4096, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "40", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/run/cgmanager/fs", + "storage_size": 102400, + "storage_units": 4096, + "storage_used": 0, + "storage_free": 102400, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "51", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/volume1", + "storage_size": 94178937405440, + "storage_units": 65536, + "storage_used": 64566361194496, + "storage_free": 29612576210944, + "storage_perc": 69, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + } } } diff --git a/tests/data/dsm_ds214.json b/tests/data/dsm_ds214.json deleted file mode 100644 index ece94b3edd..0000000000 --- a/tests/data/dsm_ds214.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "os": { - "discovery": { - "devices": [ - { - "sysName": "", - "sysObjectID": ".1.3.6.1.4.1.8072.3.2.10", - "sysDescr": "Linux xxxxx 3.2.40 #7393 SMP PREEMPT Thu Jun 2 19:47:23 CST 2016 i686", - "sysContact": null, - "version": null, - "hardware": null, - "features": null, - "os": "dsm", - "type": "storage", - "serial": null, - "icon": "synology.svg", - "location": null - } - ] - }, - "poller": "matches discovery" - }, - "sensors": { - "discovery": { - "sensors": [ - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6574.1.2.0", - "sensor_index": "99", - "sensor_type": "snmp", - "sensor_descr": "System Temperature", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": 20, - "sensor_limit_warn": null, - "sensor_limit_low": -10, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "state_name": null - } - ], - "state_indexes": [] - }, - "poller": "matches discovery" - } -} diff --git a/tests/data/dsm_ds214se.json b/tests/data/dsm_ds214se.json new file mode 100644 index 0000000000..fab596f727 --- /dev/null +++ b/tests/data/dsm_ds214se.json @@ -0,0 +1,1528 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.8072.3.2.10", + "sysDescr": "Linux Nas 3.2.40 #25426 Wed Jul 8 03:15:48 CST 2020 armv7l", + "sysContact": null, + "version": "6.2-25426", + "hardware": "DS214se", + "features": null, + "os": "dsm", + "type": "storage", + "serial": "139M8N0094", + "icon": "synology.svg", + "location": null + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.8072.3.2.10", + "sysDescr": "Linux Nas 3.2.40 #25426 Wed Jul 8 03:15:48 CST 2020 armv7l", + "sysContact": "", + "version": "6.2-25426", + "hardware": "DS214se", + "features": null, + "os": "dsm", + "type": "storage", + "serial": "139M8N0094", + "icon": "synology.svg", + "location": "" + } + ] + } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lo", + "ifName": "lo", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "eth0", + "ifName": "eth0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "sit0", + "ifName": "sit0", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "sit0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lo", + "ifName": "lo", + "portName": null, + "ifIndex": 1, + "ifSpeed": 10000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 16436, + "ifType": "softwareLoopback", + "ifAlias": "lo", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 16, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 16, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1248, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1248, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "eth0", + "ifName": "eth0", + "portName": null, + "ifIndex": 2, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth0", + "ifPhysAddress": "00113224f9eb", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 3626, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1969, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 393191, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 853137, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "sit0", + "ifName": "sit0", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1480, + "ifType": "tunnel", + "ifAlias": "sit0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 196608, + "processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.196608", + "processor_index": "196608", + "processor_type": "hr", + "processor_usage": 2, + "processor_descr": "Processor", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "1", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Physical memory", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "3", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Virtual memory", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "10", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Swap space", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": { + "mempools": [ + { + "mempool_index": "1", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Physical memory", + "mempool_perc": 94, + "mempool_used": 238727168, + "mempool_free": 15073280, + "mempool_total": 253800448, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "3", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Virtual memory", + "mempool_perc": 10, + "mempool_used": 243458048, + "mempool_free": 2157756416, + "mempool_total": 2401214464, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "10", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "hrstorage", + "mempool_precision": 1024, + "mempool_descr": "Swap space", + "mempool_perc": 0, + "mempool_used": 4730880, + "mempool_free": 2142683136, + "mempool_total": 2147414016, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.1.4.2.0", + "sensor_index": "0", + "sensor_type": "cpuFanStatusState", + "sensor_descr": "FAN - CPU", + "group": "System", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cpuFanStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.0", + "sensor_index": "0", + "sensor_type": "diskStatusState", + "sensor_descr": " ", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.5.1", + "sensor_index": "1", + "sensor_type": "diskStatusState", + "sensor_descr": " ", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "diskStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.1.3.0", + "sensor_index": "0", + "sensor_type": "powerStatusState", + "sensor_descr": "Power", + "group": "System", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "powerStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.3.1.1.3.0", + "sensor_index": "0", + "sensor_type": "raidStatusState", + "sensor_descr": "Volume 1", + "group": "RAIDs", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "raidStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.1.4.1.0", + "sensor_index": "0", + "sensor_type": "systemFanStatusState", + "sensor_descr": "FAN - System", + "group": "System", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "systemFanStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.1.1.0", + "sensor_index": "0", + "sensor_type": "systemStatusState", + "sensor_descr": "System", + "group": "System", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "systemStatusState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.1.5.4.0", + "sensor_index": "0", + "sensor_type": "upgradeAvailableState", + "sensor_descr": "Upgrade Availability", + "group": "System", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upgradeAvailableState" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.0", + "sensor_index": "0", + "sensor_type": "dsm", + "sensor_descr": " ", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 35, + "sensor_limit": 55, + "sensor_limit_warn": null, + "sensor_limit_low": 25, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.2.1.1.6.1", + "sensor_index": "1", + "sensor_type": "dsm", + "sensor_descr": " ", + "group": "Disks", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 37, + "sensor_limit": 57, + "sensor_limit_warn": null, + "sensor_limit_low": 27, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6574.1.2.0", + "sensor_index": "99", + "sensor_type": "dsm", + "sensor_descr": "System", + "group": "System", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 47, + "sensor_limit": 67, + "sensor_limit_warn": null, + "sensor_limit_low": 37, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "cpuFanStatusState", + "state_descr": "Normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cpuFanStatusState", + "state_descr": "Failed", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "diskStatusState", + "state_descr": "Normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "diskStatusState", + "state_descr": "Initialized", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "diskStatusState", + "state_descr": "NotInitialized", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "diskStatusState", + "state_descr": "SystemPartitionFailed", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 2 + }, + { + "state_name": "diskStatusState", + "state_descr": "Crashed", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 2 + }, + { + "state_name": "powerStatusState", + "state_descr": "Normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "powerStatusState", + "state_descr": "Failed", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "raidStatusState", + "state_descr": "Normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "raidStatusState", + "state_descr": "Repairing", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "Migrating", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "Expanding", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "Deleting", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "Creating", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidSyncing", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidParityChecking", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidAssembling", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "Canceling", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "Degrade", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 2 + }, + { + "state_name": "raidStatusState", + "state_descr": "Crashed", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 2 + }, + { + "state_name": "raidStatusState", + "state_descr": "DataScrubbing", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidDeploying", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidUnDeploying", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidMountCache", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidUnmountCache", + "state_draw_graph": 0, + "state_value": 17, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidExpandingUnfinishedSHR", + "state_draw_graph": 0, + "state_value": 18, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidConvertSHRToPool", + "state_draw_graph": 0, + "state_value": 19, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidMigrateSHR1ToSHR2", + "state_draw_graph": 0, + "state_value": 20, + "state_generic_value": 1 + }, + { + "state_name": "raidStatusState", + "state_descr": "RaidUnknownStatus", + "state_draw_graph": 0, + "state_value": 21, + "state_generic_value": 3 + }, + { + "state_name": "systemFanStatusState", + "state_descr": "Normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "systemFanStatusState", + "state_descr": "Failed", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "systemStatusState", + "state_descr": "Normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "systemStatusState", + "state_descr": "Failed", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "upgradeAvailableState", + "state_descr": "Available", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 1 + }, + { + "state_name": "upgradeAvailableState", + "state_descr": "Unavailable", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upgradeAvailableState", + "state_descr": "Connecting", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 3 + }, + { + "state_name": "upgradeAvailableState", + "state_descr": "Disconnected", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "upgradeAvailableState", + "state_descr": "Others", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 3 + } + ] + }, + "poller": "matches discovery" + }, + "storage": { + "discovery": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "31", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/", + "storage_size": 2509889536, + "storage_units": 4096, + "storage_used": 960073728, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "36", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp", + "storage_size": 126898176, + "storage_units": 4096, + "storage_used": 794624, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "37", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/run", + "storage_size": 126898176, + "storage_units": 4096, + "storage_used": 2125824, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "38", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/shm", + "storage_size": 126898176, + "storage_units": 4096, + "storage_used": 4096, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "41", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/volume1", + "storage_size": 1964237742080, + "storage_units": 4096, + "storage_used": 1681329889280, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "42", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/volume1/LectureVideo/Video", + "storage_size": 1964237742080, + "storage_units": 4096, + "storage_used": 1681329889280, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + }, + "poller": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "31", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/", + "storage_size": 2509889536, + "storage_units": 4096, + "storage_used": 960073728, + "storage_free": 1549815808, + "storage_perc": 38, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "36", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp", + "storage_size": 126898176, + "storage_units": 4096, + "storage_used": 794624, + "storage_free": 126103552, + "storage_perc": 1, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "37", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/run", + "storage_size": 126898176, + "storage_units": 4096, + "storage_used": 2125824, + "storage_free": 124772352, + "storage_perc": 2, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "38", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/shm", + "storage_size": 126898176, + "storage_units": 4096, + "storage_used": 4096, + "storage_free": 126894080, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "41", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/volume1", + "storage_size": 1964237742080, + "storage_units": 4096, + "storage_used": 1681329889280, + "storage_free": 282907852800, + "storage_perc": 86, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "42", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/volume1/LectureVideo/Video", + "storage_size": 1964237742080, + "storage_units": 4096, + "storage_used": 1681329889280, + "storage_free": 282907852800, + "storage_perc": 86, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + } + } +} diff --git a/tests/data/dsm_ds916.json b/tests/data/dsm_ds916.json index 2c2416d192..55de1f0a42 100644 --- a/tests/data/dsm_ds916.json +++ b/tests/data/dsm_ds916.json @@ -93,19 +93,19 @@ "sensors": [ { "sensor_deleted": 0, - "sensor_class": "temperature", + "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6574.1.2.0", - "sensor_index": "99", - "sensor_type": "snmp", - "sensor_descr": "System Temperature", - "group": null, + "sensor_oid": ".1.3.6.1.4.1.6574.1.1.0", + "sensor_index": "0", + "sensor_type": "systemStatusState", + "sensor_descr": "System", + "group": "System", "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": 20, + "sensor_current": 1, + "sensor_limit": null, "sensor_limit_warn": null, - "sensor_limit_low": -10, + "sensor_limit_low": null, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -113,10 +113,25 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": null + "state_name": "systemStatusState" } ], - "state_indexes": [] + "state_indexes": [ + { + "state_name": "systemStatusState", + "state_descr": "Normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "systemStatusState", + "state_descr": "Failed", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + } + ] }, "poller": "matches discovery" } diff --git a/tests/snmpsim/dsm.snmprec b/tests/snmpsim/dsm.snmprec index a35f4d245a..ce105c903f 100644 --- a/tests/snmpsim/dsm.snmprec +++ b/tests/snmpsim/dsm.snmprec @@ -1,6 +1,2070 @@ 1.3.6.1.2.1.1.1.0|4|Linux hostname 3.10.77 #8451 SMP Wed Jan 4 00:31:32 CST 2017 x86_64 1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10 +1.3.6.1.2.1.1.3.0|67|4215722485 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +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|sit0 +1.3.6.1.2.1.2.2.1.2.3|4|eth0 +1.3.6.1.2.1.2.2.1.2.4|4|eth1 +1.3.6.1.2.1.2.2.1.2.7|4|bond0 +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|131 +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.7|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|1480 +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.7|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|4| +1.3.6.1.2.1.2.2.1.6.3|4x|0011321B6CDF +1.3.6.1.2.1.2.2.1.6.4|4x|0011321B6CDF +1.3.6.1.2.1.2.2.1.6.7|4x|0011321B6CDF +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|2 +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.7|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|2 +1.3.6.1.2.1.2.2.1.8.3|2|1 +1.3.6.1.2.1.2.2.1.8.4|2|1 +1.3.6.1.2.1.2.2.1.8.7|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|1261654485 +1.3.6.1.2.1.2.2.1.9.4|67|1261654485 +1.3.6.1.2.1.2.2.1.9.7|67|1261654485 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.13.3|65|11562019 +1.3.6.1.2.1.2.2.1.13.4|65|10603417 +1.3.6.1.2.1.2.2.1.13.7|65|22165436 +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|635 +1.3.6.1.2.1.2.2.1.14.4|65|2044 +1.3.6.1.2.1.2.2.1.14.7|65|2679 +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.7|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.7|65|0 +1.3.6.1.2.1.4.3.0|65|1658818563 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|0 +1.3.6.1.2.1.4.6.0|65|0 +1.3.6.1.2.1.4.7.0|65|0 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|1646523341 +1.3.6.1.2.1.4.10.0|65|3821033673 +1.3.6.1.2.1.4.11.0|65|784 +1.3.6.1.2.1.4.12.0|65|0 +1.3.6.1.2.1.4.14.0|65|13568778 +1.3.6.1.2.1.4.15.0|65|4483028 +1.3.6.1.2.1.4.16.0|65|136741 +1.3.6.1.2.1.4.17.0|65|0 +1.3.6.1.2.1.4.18.0|65|0 +1.3.6.1.2.1.4.19.0|65|0 +1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1 +1.3.6.1.2.1.4.20.1.2.172.26.10.248|2|7 +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.20.1.3.172.26.10.248|64|255.255.255.0 +1.3.6.1.2.1.4.22.1.2.7.172.20.24.100|4x|00E04C6842D1 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.1|4x|A4BADBF8D3D9 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.2|4x|A4BADBF78445 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.5|4x|A4BADBEE31AC +1.3.6.1.2.1.4.22.1.2.7.172.26.10.6|4x|08606ED65228 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.7|4x|E0D55EE7D036 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.22|4x|4437E64EF589 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.51|4x|08626605DA00 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.101|4x|001B21BBE6F0 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.102|4x|001B21BBE6F1 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.103|4x|001B21BBE6EA +1.3.6.1.2.1.4.22.1.2.7.172.26.10.104|4x|001B21BBE6EC +1.3.6.1.2.1.4.22.1.2.7.172.26.10.105|4x|001B21BBE6F6 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.106|4x|001B21BBE6F5 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.107|4x|001B21BBE6EF +1.3.6.1.2.1.4.22.1.2.7.172.26.10.108|4x|B42E99161DFD +1.3.6.1.2.1.4.22.1.2.7.172.26.10.109|4x|309C2366F163 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.110|4x|1C872C41BB0D +1.3.6.1.2.1.4.22.1.2.7.172.26.10.111|4x|78321B044787 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.121|4x|E477D404B14B +1.3.6.1.2.1.4.22.1.2.7.172.26.10.135|4x|40167E996A6B +1.3.6.1.2.1.4.22.1.2.7.172.26.10.186|4x|12D65BB14A00 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.200|4x|C4AD34D1BB8C +1.3.6.1.2.1.4.22.1.2.7.172.26.10.216|4x|00E04C6842D1 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.240|4x|E0D55E4F48C4 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.242|4x|245EBE36B8D2 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.244|4x|BCAEC5280BDA +1.3.6.1.2.1.4.22.1.2.7.172.26.10.247|4x|001132418F65 +1.3.6.1.2.1.4.22.1.2.7.172.26.10.249|4x|842B2BFC256E +1.3.6.1.2.1.4.22.1.2.7.172.26.10.254|4x|744D285C17F2 +1.3.6.1.2.1.4.31.1.1.3.1|65|1658817806 +1.3.6.1.2.1.4.31.1.1.3.2|65|7344124 +1.3.6.1.2.1.4.31.1.1.4.1|70|23133654286 +1.3.6.1.2.1.4.31.1.1.4.2|70|7344124 +1.3.6.1.2.1.4.31.1.1.5.1|65|1535483511 +1.3.6.1.2.1.4.31.1.1.5.2|65|1101281626 +1.3.6.1.2.1.4.31.1.1.6.1|70|82542216978039 +1.3.6.1.2.1.4.31.1.1.6.2|70|1101281626 +1.3.6.1.2.1.4.31.1.1.7.1|65|0 +1.3.6.1.2.1.4.31.1.1.7.2|65|0 +1.3.6.1.2.1.4.31.1.1.8.1|65|0 +1.3.6.1.2.1.4.31.1.1.8.2|65|0 +1.3.6.1.2.1.4.31.1.1.9.1|65|0 +1.3.6.1.2.1.4.31.1.1.9.2|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.10.2|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.11.2|65|0 +1.3.6.1.2.1.4.31.1.1.12.1|65|0 +1.3.6.1.2.1.4.31.1.1.12.2|65|0 +1.3.6.1.2.1.4.31.1.1.13.1|70|0 +1.3.6.1.2.1.4.31.1.1.13.2|70|0 +1.3.6.1.2.1.4.31.1.1.14.1|65|13568778 +1.3.6.1.2.1.4.31.1.1.14.2|65|0 +1.3.6.1.2.1.4.31.1.1.15.1|65|4483028 +1.3.6.1.2.1.4.31.1.1.15.2|65|0 +1.3.6.1.2.1.4.31.1.1.16.1|65|136741 +1.3.6.1.2.1.4.31.1.1.16.2|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.17.2|65|3417378 +1.3.6.1.2.1.4.31.1.1.18.1|65|1646522584 +1.3.6.1.2.1.4.31.1.1.18.2|65|1393857 +1.3.6.1.2.1.4.31.1.1.19.1|70|23121359064 +1.3.6.1.2.1.4.31.1.1.19.2|70|1393857 +1.3.6.1.2.1.4.31.1.1.20.1|65|3821032953 +1.3.6.1.2.1.4.31.1.1.20.2|65|2568 +1.3.6.1.2.1.4.31.1.1.21.1|70|16705934841 +1.3.6.1.2.1.4.31.1.1.21.2|70|2568 +1.3.6.1.2.1.4.31.1.1.22.1|65|0 +1.3.6.1.2.1.4.31.1.1.22.2|65|6634 +1.3.6.1.2.1.4.31.1.1.23.1|65|0 +1.3.6.1.2.1.4.31.1.1.23.2|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.24.2|70|0 +1.3.6.1.2.1.4.31.1.1.25.1|65|783 +1.3.6.1.2.1.4.31.1.1.25.2|65|2 +1.3.6.1.2.1.4.31.1.1.26.1|65|0 +1.3.6.1.2.1.4.31.1.1.26.2|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.27.2|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.28.2|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.29.2|65|0 +1.3.6.1.2.1.4.31.1.1.30.1|65|3821032170 +1.3.6.1.2.1.4.31.1.1.30.2|65|4294963228 +1.3.6.1.2.1.4.31.1.1.31.1|70|16705934058 +1.3.6.1.2.1.4.31.1.1.31.2|70|18446744073709547548 +1.3.6.1.2.1.4.31.1.1.32.1|65|1823447015 +1.3.6.1.2.1.4.31.1.1.32.2|65|330400 +1.3.6.1.2.1.4.31.1.1.33.1|70|129765670361063 +1.3.6.1.2.1.4.31.1.1.33.2|70|330400 +1.3.6.1.2.1.4.31.1.1.34.1|65|53755718 +1.3.6.1.2.1.4.31.1.1.34.2|65|3926664 +1.3.6.1.2.1.4.31.1.1.35.1|70|53755718 +1.3.6.1.2.1.4.31.1.1.35.2|70|3926664 +1.3.6.1.2.1.4.31.1.1.36.1|65|885448255 +1.3.6.1.2.1.4.31.1.1.36.2|65|541169108 +1.3.6.1.2.1.4.31.1.1.37.1|70|22360284735 +1.3.6.1.2.1.4.31.1.1.37.2|70|541169108 +1.3.6.1.2.1.4.31.1.1.38.1|65|26706 +1.3.6.1.2.1.4.31.1.1.38.2|65|2484 +1.3.6.1.2.1.4.31.1.1.39.1|70|26706 +1.3.6.1.2.1.4.31.1.1.39.2|70|2484 +1.3.6.1.2.1.4.31.1.1.40.1|65|2495544 +1.3.6.1.2.1.4.31.1.1.40.2|65|324508 +1.3.6.1.2.1.4.31.1.1.41.1|70|2495544 +1.3.6.1.2.1.4.31.1.1.41.2|70|324508 +1.3.6.1.2.1.4.31.1.1.42.1|65|73201071 +1.3.6.1.2.1.4.31.1.1.43.1|70|73201071 +1.3.6.1.2.1.4.31.1.1.44.1|65|737530 +1.3.6.1.2.1.4.31.1.1.45.1|70|737530 +1.3.6.1.2.1.4.31.1.1.46.1|67|0 +1.3.6.1.2.1.4.31.1.1.46.2|67|0 +1.3.6.1.2.1.4.31.1.1.47.1|66|60000 +1.3.6.1.2.1.4.31.1.1.47.2|66|60000 +1.3.6.1.2.1.5.1.0|65|5746248 +1.3.6.1.2.1.5.2.0|65|144986 +1.3.6.1.2.1.5.3.0|65|0 +1.3.6.1.2.1.5.4.0|65|998158 +1.3.6.1.2.1.5.5.0|65|1 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|0 +1.3.6.1.2.1.5.9.0|65|4748087 +1.3.6.1.2.1.5.10.0|65|2 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|0 +1.3.6.1.2.1.5.15.0|65|4896728 +1.3.6.1.2.1.5.16.0|65|0 +1.3.6.1.2.1.5.17.0|65|148624 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|0 +1.3.6.1.2.1.5.22.0|65|17 +1.3.6.1.2.1.5.23.0|65|4748087 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.5.29.1.2.1|65|5746248 +1.3.6.1.2.1.5.29.1.2.2|65|920 +1.3.6.1.2.1.5.29.1.3.1|65|144986 +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|69 +1.3.6.1.2.1.5.29.1.5.1|65|4896728 +1.3.6.1.2.1.5.29.1.5.2|65|0 +1.3.6.1.2.1.5.30.1.3.1.0|65|2 +1.3.6.1.2.1.5.30.1.3.1.3|65|998158 +1.3.6.1.2.1.5.30.1.3.1.8|65|4748087 +1.3.6.1.2.1.5.30.1.3.1.11|65|1 +1.3.6.1.2.1.5.30.1.3.2.134|65|184 +1.3.6.1.2.1.5.30.1.3.2.136|65|736 +1.3.6.1.2.1.5.30.1.4.1.0|65|4748087 +1.3.6.1.2.1.5.30.1.4.1.3|65|148624 +1.3.6.1.2.1.5.30.1.4.1.8|65|17 +1.3.6.1.2.1.5.30.1.4.2.133|65|5 +1.3.6.1.2.1.5.30.1.4.2.143|65|64 +1.3.6.1.2.1.6.5.0|65|878742 +1.3.6.1.2.1.6.6.0|65|1473981 +1.3.6.1.2.1.6.7.0|65|7777 +1.3.6.1.2.1.6.8.0|65|72955 +1.3.6.1.2.1.6.9.0|66|3 +1.3.6.1.2.1.6.10.0|65|1300990371 +1.3.6.1.2.1.6.11.0|65|1622791217 +1.3.6.1.2.1.6.12.0|65|24251473 +1.3.6.1.2.1.6.14.0|65|214 +1.3.6.1.2.1.6.15.0|65|41484 +1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.21|66|541 +1.3.6.1.2.1.7.1.0|65|277518744 +1.3.6.1.2.1.7.2.0|65|3 +1.3.6.1.2.1.7.3.0|65|12783 +1.3.6.1.2.1.7.4.0|65|223649235 +1.3.6.1.2.1.11.1.0|65|125132003 +1.3.6.1.2.1.11.2.0|65|125131986 +1.3.6.1.2.1.11.3.0|65|0 +1.3.6.1.2.1.11.4.0|65|16 +1.3.6.1.2.1.11.5.0|65|0 +1.3.6.1.2.1.11.6.0|65|0 +1.3.6.1.2.1.11.8.0|65|0 +1.3.6.1.2.1.11.9.0|65|0 +1.3.6.1.2.1.11.10.0|65|0 +1.3.6.1.2.1.11.11.0|65|0 +1.3.6.1.2.1.11.12.0|65|0 +1.3.6.1.2.1.11.13.0|65|758196852 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|6198212 +1.3.6.1.2.1.11.16.0|65|93298720 +1.3.6.1.2.1.11.17.0|65|0 +1.3.6.1.2.1.11.18.0|65|0 +1.3.6.1.2.1.11.19.0|65|0 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|0 +1.3.6.1.2.1.11.22.0|65|0 +1.3.6.1.2.1.11.24.0|65|0 +1.3.6.1.2.1.11.25.0|65|0 +1.3.6.1.2.1.11.26.0|65|0 +1.3.6.1.2.1.11.27.0|65|0 +1.3.6.1.2.1.11.28.0|65|125131988 +1.3.6.1.2.1.11.29.0|65|0 +1.3.6.1.2.1.11.30.0|2|2 +1.3.6.1.2.1.11.31.0|65|0 +1.3.6.1.2.1.11.32.0|65|0 +1.3.6.1.2.1.25.1.1.0|67|4215741992 1.3.6.1.2.1.25.1.4.0|4|syno_hw_version -1.3.6.1.4.1.6574.1.5.1.0|4|DS1817+ -1.3.6.1.4.1.6574.1.5.3.0|4|DSM 6.1-15217 +1.3.6.1.2.1.25.1.5.0|66|0 +1.3.6.1.2.1.25.1.6.0|66|233 +1.3.6.1.2.1.25.2.2.0|2|1012408 +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.36|2|36 +1.3.6.1.2.1.25.2.3.1.1.37|2|37 +1.3.6.1.2.1.25.2.3.1.1.38|2|38 +1.3.6.1.2.1.25.2.3.1.1.39|2|39 +1.3.6.1.2.1.25.2.3.1.1.40|2|40 +1.3.6.1.2.1.25.2.3.1.1.51|2|51 +1.3.6.1.2.1.25.2.3.1.1.54|2|54 +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.36|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.37|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.38|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.39|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.40|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.51|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.54|6|1.3.6.1.2.1.25.2.1.10 +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|/ +1.3.6.1.2.1.25.2.3.1.3.36|4|/tmp +1.3.6.1.2.1.25.2.3.1.3.37|4|/run +1.3.6.1.2.1.25.2.3.1.3.38|4|/dev/shm +1.3.6.1.2.1.25.2.3.1.3.39|4|/sys/fs/cgroup +1.3.6.1.2.1.25.2.3.1.3.40|4|/run/cgmanager/fs +1.3.6.1.2.1.25.2.3.1.3.51|4|/volume1 +1.3.6.1.2.1.25.2.3.1.3.54|4|/volume1/Archivo/para_archivar +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.36|2|4096 +1.3.6.1.2.1.25.2.3.1.4.37|2|4096 +1.3.6.1.2.1.25.2.3.1.4.38|2|4096 +1.3.6.1.2.1.25.2.3.1.4.39|2|4096 +1.3.6.1.2.1.25.2.3.1.4.40|2|4096 +1.3.6.1.2.1.25.2.3.1.4.51|2|65536 +1.3.6.1.2.1.25.2.3.1.4.54|2|8192 +1.3.6.1.2.1.25.2.3.1.5.1|2|1012408 +1.3.6.1.2.1.25.2.3.1.5.3|2|3717740 +1.3.6.1.2.1.25.2.3.1.5.6|2|1012408 +1.3.6.1.2.1.25.2.3.1.5.7|2|223264 +1.3.6.1.2.1.25.2.3.1.5.8|2|107568 +1.3.6.1.2.1.25.2.3.1.5.10|2|2705332 +1.3.6.1.2.1.25.2.3.1.5.31|2|596382 +1.3.6.1.2.1.25.2.3.1.5.36|2|126551 +1.3.6.1.2.1.25.2.3.1.5.37|2|126551 +1.3.6.1.2.1.25.2.3.1.5.38|2|126551 +1.3.6.1.2.1.25.2.3.1.5.39|2|1 +1.3.6.1.2.1.25.2.3.1.5.40|2|25 +1.3.6.1.2.1.25.2.3.1.5.51|2|1437056540 +1.3.6.1.2.1.25.2.3.1.5.54|2|1908233564 +1.3.6.1.2.1.25.2.3.1.6.1|2|896328 +1.3.6.1.2.1.25.2.3.1.6.3|2|1259248 +1.3.6.1.2.1.25.2.3.1.6.6|2|56720 +1.3.6.1.2.1.25.2.3.1.6.7|2|223264 +1.3.6.1.2.1.25.2.3.1.6.8|2|107568 +1.3.6.1.2.1.25.2.3.1.6.10|2|362920 +1.3.6.1.2.1.25.2.3.1.6.31|2|215093 +1.3.6.1.2.1.25.2.3.1.6.36|2|5363 +1.3.6.1.2.1.25.2.3.1.6.37|2|4466 +1.3.6.1.2.1.25.2.3.1.6.38|2|1 +1.3.6.1.2.1.25.2.3.1.6.39|2|0 +1.3.6.1.2.1.25.2.3.1.6.40|2|0 +1.3.6.1.2.1.25.2.3.1.6.51|2|985204486 +1.3.6.1.2.1.25.2.3.1.6.54|2|1671017413 +1.3.6.1.2.1.25.3.2.1.1.196608|2|196608 +1.3.6.1.2.1.25.3.2.1.1.196609|2|196609 +1.3.6.1.2.1.25.3.2.1.1.196610|2|196610 +1.3.6.1.2.1.25.3.2.1.1.196611|2|196611 +1.3.6.1.2.1.25.3.2.1.1.262145|2|262145 +1.3.6.1.2.1.25.3.2.1.1.262146|2|262146 +1.3.6.1.2.1.25.3.2.1.1.262147|2|262147 +1.3.6.1.2.1.25.3.2.1.1.262148|2|262148 +1.3.6.1.2.1.25.3.2.1.1.262151|2|262151 +1.3.6.1.2.1.25.3.2.1.1.393216|2|393216 +1.3.6.1.2.1.25.3.2.1.1.393232|2|393232 +1.3.6.1.2.1.25.3.2.1.1.393233|2|393233 +1.3.6.1.2.1.25.3.2.1.1.393234|2|393234 +1.3.6.1.2.1.25.3.2.1.1.393235|2|393235 +1.3.6.1.2.1.25.3.2.1.1.393236|2|393236 +1.3.6.1.2.1.25.3.2.1.1.393237|2|393237 +1.3.6.1.2.1.25.3.2.1.1.393238|2|393238 +1.3.6.1.2.1.25.3.2.1.1.393239|2|393239 +1.3.6.1.2.1.25.3.2.1.1.393240|2|393240 +1.3.6.1.2.1.25.3.2.1.1.393241|2|393241 +1.3.6.1.2.1.25.3.2.1.1.393248|2|393248 +1.3.6.1.2.1.25.3.2.1.1.393249|2|393249 +1.3.6.1.2.1.25.3.2.1.1.393250|2|393250 +1.3.6.1.2.1.25.3.2.1.1.393280|2|393280 +1.3.6.1.2.1.25.3.2.1.1.786432|2|786432 +1.3.6.1.2.1.25.3.2.1.2.196608|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.196609|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.196610|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.196611|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.262145|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262146|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262147|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262148|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262151|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.393216|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393232|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393233|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393234|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393235|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393236|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393237|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393238|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393239|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393240|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393241|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393248|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393249|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393250|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393280|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.786432|6|1.3.6.1.2.1.25.3.1.12 +1.3.6.1.2.1.25.3.2.1.3.196608|4|GenuineIntel: Intel(R) Atom(TM) CPU D2701 @ 2.13GHz +1.3.6.1.2.1.25.3.2.1.3.196609|4|GenuineIntel: Intel(R) Atom(TM) CPU D2701 @ 2.13GHz +1.3.6.1.2.1.25.3.2.1.3.196610|4|GenuineIntel: Intel(R) Atom(TM) CPU D2701 @ 2.13GHz +1.3.6.1.2.1.25.3.2.1.3.196611|4|GenuineIntel: Intel(R) Atom(TM) CPU D2701 @ 2.13GHz +1.3.6.1.2.1.25.3.2.1.3.262145|4|network interface lo +1.3.6.1.2.1.25.3.2.1.3.262146|4|network interface sit0 +1.3.6.1.2.1.25.3.2.1.3.262147|4|network interface eth0 +1.3.6.1.2.1.25.3.2.1.3.262148|4|network interface eth1 +1.3.6.1.2.1.25.3.2.1.3.262151|4|network interface bond0 +1.3.6.1.2.1.25.3.2.1.3.393216|4|ST3320620NS +1.3.6.1.2.1.25.3.2.1.3.393232|4|SCSI disk (/dev/sda) +1.3.6.1.2.1.25.3.2.1.3.393233|4|SCSI disk (/dev/sdb) +1.3.6.1.2.1.25.3.2.1.3.393234|4|SCSI disk (/dev/sdc) +1.3.6.1.2.1.25.3.2.1.3.393235|4|SCSI disk (/dev/sdd) +1.3.6.1.2.1.25.3.2.1.3.393236|4|SCSI disk (/dev/sde) +1.3.6.1.2.1.25.3.2.1.3.393237|4|SCSI disk (/dev/sdf) +1.3.6.1.2.1.25.3.2.1.3.393238|4|SCSI disk (/dev/sdg) +1.3.6.1.2.1.25.3.2.1.3.393239|4|SCSI disk (/dev/sdh) +1.3.6.1.2.1.25.3.2.1.3.393240|4|SCSI disk (/dev/sdi) +1.3.6.1.2.1.25.3.2.1.3.393241|4|SCSI disk (/dev/sdj) +1.3.6.1.2.1.25.3.2.1.3.393248|4|RAID disk (/dev/md0) +1.3.6.1.2.1.25.3.2.1.3.393249|4|RAID disk (/dev/md1) +1.3.6.1.2.1.25.3.2.1.3.393250|4|RAID disk (/dev/md2) +1.3.6.1.2.1.25.3.2.1.3.393280|4|LVM volume (vol1-origin) +1.3.6.1.2.1.25.3.2.1.3.786432|4|Guessing that there's a floating point co-processor +1.3.6.1.2.1.25.3.2.1.4.196608|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.196609|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.196610|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.196611|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262145|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262146|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262147|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262148|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262151|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393216|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393232|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393233|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393234|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393235|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393236|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393237|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393238|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393239|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393240|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393241|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393248|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393249|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393250|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393280|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.786432|6|0.0 +1.3.6.1.2.1.25.3.2.1.5.196608|2|2 +1.3.6.1.2.1.25.3.2.1.5.196609|2|2 +1.3.6.1.2.1.25.3.2.1.5.196610|2|2 +1.3.6.1.2.1.25.3.2.1.5.196611|2|2 +1.3.6.1.2.1.25.3.2.1.5.262145|2|2 +1.3.6.1.2.1.25.3.2.1.5.262146|2|5 +1.3.6.1.2.1.25.3.2.1.5.262147|2|2 +1.3.6.1.2.1.25.3.2.1.5.262148|2|2 +1.3.6.1.2.1.25.3.2.1.5.262151|2|2 +1.3.6.1.2.1.25.3.2.1.6.262145|65|0 +1.3.6.1.2.1.25.3.2.1.6.262146|65|0 +1.3.6.1.2.1.25.3.2.1.6.262147|65|635 +1.3.6.1.2.1.25.3.2.1.6.262148|65|2044 +1.3.6.1.2.1.25.3.2.1.6.262151|65|2679 +1.3.6.1.2.1.25.3.3.1.1.196608|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196609|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196610|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196611|6|0.0 +1.3.6.1.2.1.25.3.3.1.2.196608|2|8 +1.3.6.1.2.1.25.3.3.1.2.196609|2|8 +1.3.6.1.2.1.25.3.3.1.2.196610|2|8 +1.3.6.1.2.1.25.3.3.1.2.196611|2|10 +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|sit0 +1.3.6.1.2.1.31.1.1.1.1.3|4|eth0 +1.3.6.1.2.1.31.1.1.1.1.4|4|eth1 +1.3.6.1.2.1.31.1.1.1.1.7|4|bond0 +1.3.6.1.2.1.31.1.1.1.2.1|65|0 +1.3.6.1.2.1.31.1.1.1.2.2|65|0 +1.3.6.1.2.1.31.1.1.1.2.3|65|45486147 +1.3.6.1.2.1.31.1.1.1.2.4|65|82789085 +1.3.6.1.2.1.31.1.1.1.2.7|65|128275232 +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.7|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.7|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.7|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|32192981177 +1.3.6.1.2.1.31.1.1.1.6.2|70|0 +1.3.6.1.2.1.31.1.1.1.6.3|70|35692338631034 +1.3.6.1.2.1.31.1.1.1.6.4|70|50449973800008 +1.3.6.1.2.1.31.1.1.1.6.7|70|86142312431042 +1.3.6.1.2.1.31.1.1.1.7.1|70|196953094 +1.3.6.1.2.1.31.1.1.1.7.2|70|0 +1.3.6.1.2.1.31.1.1.1.7.3|70|29823931491 +1.3.6.1.2.1.31.1.1.1.7.4|70|42961652642 +1.3.6.1.2.1.31.1.1.1.7.7|70|72785584133 +1.3.6.1.2.1.31.1.1.1.8.1|70|0 +1.3.6.1.2.1.31.1.1.1.8.2|70|0 +1.3.6.1.2.1.31.1.1.1.8.3|70|45486147 +1.3.6.1.2.1.31.1.1.1.8.4|70|82789085 +1.3.6.1.2.1.31.1.1.1.8.7|70|128275232 +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.7|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|32192981177 +1.3.6.1.2.1.31.1.1.1.10.2|70|0 +1.3.6.1.2.1.31.1.1.1.10.3|70|79921372456608 +1.3.6.1.2.1.31.1.1.1.10.4|70|55208641154932 +1.3.6.1.2.1.31.1.1.1.10.7|70|135130013611540 +1.3.6.1.2.1.31.1.1.1.11.1|70|196953094 +1.3.6.1.2.1.31.1.1.1.11.2|70|0 +1.3.6.1.2.1.31.1.1.1.11.3|70|56516782723 +1.3.6.1.2.1.31.1.1.1.11.4|70|40001730818 +1.3.6.1.2.1.31.1.1.1.11.7|70|96518513541 +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.7|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.7|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|0 +1.3.6.1.2.1.31.1.1.1.15.3|66|1000 +1.3.6.1.2.1.31.1.1.1.15.4|66|1000 +1.3.6.1.2.1.31.1.1.1.15.7|66|2000 +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.7|2|2 +1.3.6.1.2.1.31.1.1.1.17.1|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.7|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.7|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.7|67|0 +1.3.6.1.4.1.2021.4.3.0|2|2705332 +1.3.6.1.4.1.2021.4.4.0|2|2342412 +1.3.6.1.4.1.2021.4.5.0|2|1012408 +1.3.6.1.4.1.2021.4.6.0|2|117032 +1.3.6.1.4.1.2021.4.11.0|2|2459444 +1.3.6.1.4.1.2021.4.13.0|2|107568 +1.3.6.1.4.1.2021.4.14.0|2|56456 +1.3.6.1.4.1.2021.4.15.0|2|222376 +1.3.6.1.4.1.2021.10.1.5.1|2|161 +1.3.6.1.4.1.2021.10.1.5.2|2|110 +1.3.6.1.4.1.2021.10.1.5.3|2|97 +1.3.6.1.4.1.2021.11.1.0|2|1 +1.3.6.1.4.1.2021.11.2.0|4|systemStats +1.3.6.1.4.1.2021.11.3.0|2|0 +1.3.6.1.4.1.2021.11.4.0|2|0 +1.3.6.1.4.1.2021.11.5.0|2|0 +1.3.6.1.4.1.2021.11.6.0|2|0 +1.3.6.1.4.1.2021.11.7.0|2|101 +1.3.6.1.4.1.2021.11.8.0|2|120 +1.3.6.1.4.1.2021.11.9.0|2|9 +1.3.6.1.4.1.2021.11.10.0|2|3 +1.3.6.1.4.1.2021.11.11.0|2|84 +1.3.6.1.4.1.2021.11.50.0|65|305270133 +1.3.6.1.4.1.2021.11.51.0|65|103083 +1.3.6.1.4.1.2021.11.52.0|65|788135074 +1.3.6.1.4.1.2021.11.53.0|65|2243720908 +1.3.6.1.4.1.2021.11.54.0|65|382899923 +1.3.6.1.4.1.2021.11.55.0|65|0 +1.3.6.1.4.1.2021.11.56.0|65|0 +1.3.6.1.4.1.2021.11.57.0|65|3189752078 +1.3.6.1.4.1.2021.11.58.0|65|185774334 +1.3.6.1.4.1.2021.11.59.0|65|347447267 +1.3.6.1.4.1.2021.11.60.0|65|2275785610 +1.3.6.1.4.1.2021.11.61.0|65|46491001 +1.3.6.1.4.1.2021.11.62.0|65|338503731 +1.3.6.1.4.1.2021.11.63.0|65|81868832 +1.3.6.1.4.1.2021.11.64.0|65|0 +1.3.6.1.4.1.2021.11.65.0|65|0 +1.3.6.1.4.1.2021.11.66.0|65|0 +1.3.6.1.4.1.2021.11.67.0|2|4 +1.3.6.1.4.1.2021.13.15.1.1.1.1|2|1 +1.3.6.1.4.1.2021.13.15.1.1.1.2|2|2 +1.3.6.1.4.1.2021.13.15.1.1.1.3|2|3 +1.3.6.1.4.1.2021.13.15.1.1.1.4|2|4 +1.3.6.1.4.1.2021.13.15.1.1.1.5|2|5 +1.3.6.1.4.1.2021.13.15.1.1.1.6|2|6 +1.3.6.1.4.1.2021.13.15.1.1.1.7|2|7 +1.3.6.1.4.1.2021.13.15.1.1.1.8|2|8 +1.3.6.1.4.1.2021.13.15.1.1.1.9|2|9 +1.3.6.1.4.1.2021.13.15.1.1.1.10|2|10 +1.3.6.1.4.1.2021.13.15.1.1.1.11|2|11 +1.3.6.1.4.1.2021.13.15.1.1.1.12|2|12 +1.3.6.1.4.1.2021.13.15.1.1.1.13|2|13 +1.3.6.1.4.1.2021.13.15.1.1.1.14|2|14 +1.3.6.1.4.1.2021.13.15.1.1.1.15|2|15 +1.3.6.1.4.1.2021.13.15.1.1.1.16|2|16 +1.3.6.1.4.1.2021.13.15.1.1.1.17|2|17 +1.3.6.1.4.1.2021.13.15.1.1.1.18|2|18 +1.3.6.1.4.1.2021.13.15.1.1.1.19|2|19 +1.3.6.1.4.1.2021.13.15.1.1.1.20|2|20 +1.3.6.1.4.1.2021.13.15.1.1.1.21|2|21 +1.3.6.1.4.1.2021.13.15.1.1.1.22|2|22 +1.3.6.1.4.1.2021.13.15.1.1.1.23|2|23 +1.3.6.1.4.1.2021.13.15.1.1.1.24|2|24 +1.3.6.1.4.1.2021.13.15.1.1.1.25|2|25 +1.3.6.1.4.1.2021.13.15.1.1.1.26|2|26 +1.3.6.1.4.1.2021.13.15.1.1.1.27|2|27 +1.3.6.1.4.1.2021.13.15.1.1.1.28|2|28 +1.3.6.1.4.1.2021.13.15.1.1.1.29|2|29 +1.3.6.1.4.1.2021.13.15.1.1.1.30|2|30 +1.3.6.1.4.1.2021.13.15.1.1.1.31|2|31 +1.3.6.1.4.1.2021.13.15.1.1.1.32|2|32 +1.3.6.1.4.1.2021.13.15.1.1.1.33|2|33 +1.3.6.1.4.1.2021.13.15.1.1.1.34|2|34 +1.3.6.1.4.1.2021.13.15.1.1.1.35|2|35 +1.3.6.1.4.1.2021.13.15.1.1.1.36|2|36 +1.3.6.1.4.1.2021.13.15.1.1.1.37|2|37 +1.3.6.1.4.1.2021.13.15.1.1.1.38|2|38 +1.3.6.1.4.1.2021.13.15.1.1.1.39|2|39 +1.3.6.1.4.1.2021.13.15.1.1.1.40|2|40 +1.3.6.1.4.1.2021.13.15.1.1.1.41|2|41 +1.3.6.1.4.1.2021.13.15.1.1.1.42|2|42 +1.3.6.1.4.1.2021.13.15.1.1.1.43|2|43 +1.3.6.1.4.1.2021.13.15.1.1.1.44|2|44 +1.3.6.1.4.1.2021.13.15.1.1.1.45|2|45 +1.3.6.1.4.1.2021.13.15.1.1.1.46|2|46 +1.3.6.1.4.1.2021.13.15.1.1.1.47|2|47 +1.3.6.1.4.1.2021.13.15.1.1.1.48|2|48 +1.3.6.1.4.1.2021.13.15.1.1.1.49|2|49 +1.3.6.1.4.1.2021.13.15.1.1.1.50|2|50 +1.3.6.1.4.1.2021.13.15.1.1.1.51|2|51 +1.3.6.1.4.1.2021.13.15.1.1.1.52|2|52 +1.3.6.1.4.1.2021.13.15.1.1.1.53|2|53 +1.3.6.1.4.1.2021.13.15.1.1.1.54|2|54 +1.3.6.1.4.1.2021.13.15.1.1.1.55|2|55 +1.3.6.1.4.1.2021.13.15.1.1.1.56|2|56 +1.3.6.1.4.1.2021.13.15.1.1.1.57|2|57 +1.3.6.1.4.1.2021.13.15.1.1.1.58|2|58 +1.3.6.1.4.1.2021.13.15.1.1.1.59|2|59 +1.3.6.1.4.1.2021.13.15.1.1.1.60|2|60 +1.3.6.1.4.1.2021.13.15.1.1.1.61|2|61 +1.3.6.1.4.1.2021.13.15.1.1.1.62|2|62 +1.3.6.1.4.1.2021.13.15.1.1.1.63|2|63 +1.3.6.1.4.1.2021.13.15.1.1.1.64|2|64 +1.3.6.1.4.1.2021.13.15.1.1.1.65|2|65 +1.3.6.1.4.1.2021.13.15.1.1.1.66|2|66 +1.3.6.1.4.1.2021.13.15.1.1.1.67|2|67 +1.3.6.1.4.1.2021.13.15.1.1.1.68|2|68 +1.3.6.1.4.1.2021.13.15.1.1.1.69|2|69 +1.3.6.1.4.1.2021.13.15.1.1.1.70|2|70 +1.3.6.1.4.1.2021.13.15.1.1.1.71|2|71 +1.3.6.1.4.1.2021.13.15.1.1.1.72|2|72 +1.3.6.1.4.1.2021.13.15.1.1.1.73|2|73 +1.3.6.1.4.1.2021.13.15.1.1.1.74|2|74 +1.3.6.1.4.1.2021.13.15.1.1.1.75|2|75 +1.3.6.1.4.1.2021.13.15.1.1.1.76|2|76 +1.3.6.1.4.1.2021.13.15.1.1.1.77|2|77 +1.3.6.1.4.1.2021.13.15.1.1.1.78|2|78 +1.3.6.1.4.1.2021.13.15.1.1.1.79|2|79 +1.3.6.1.4.1.2021.13.15.1.1.1.80|2|80 +1.3.6.1.4.1.2021.13.15.1.1.1.81|2|81 +1.3.6.1.4.1.2021.13.15.1.1.1.82|2|82 +1.3.6.1.4.1.2021.13.15.1.1.1.83|2|83 +1.3.6.1.4.1.2021.13.15.1.1.1.84|2|84 +1.3.6.1.4.1.2021.13.15.1.1.1.85|2|85 +1.3.6.1.4.1.2021.13.15.1.1.1.86|2|86 +1.3.6.1.4.1.2021.13.15.1.1.1.87|2|87 +1.3.6.1.4.1.2021.13.15.1.1.1.88|2|88 +1.3.6.1.4.1.2021.13.15.1.1.1.89|2|89 +1.3.6.1.4.1.2021.13.15.1.1.1.90|2|90 +1.3.6.1.4.1.2021.13.15.1.1.1.91|2|91 +1.3.6.1.4.1.2021.13.15.1.1.1.92|2|92 +1.3.6.1.4.1.2021.13.15.1.1.1.93|2|93 +1.3.6.1.4.1.2021.13.15.1.1.1.94|2|94 +1.3.6.1.4.1.2021.13.15.1.1.1.95|2|95 +1.3.6.1.4.1.2021.13.15.1.1.1.96|2|96 +1.3.6.1.4.1.2021.13.15.1.1.1.97|2|97 +1.3.6.1.4.1.2021.13.15.1.1.1.98|2|98 +1.3.6.1.4.1.2021.13.15.1.1.1.99|2|99 +1.3.6.1.4.1.2021.13.15.1.1.1.100|2|100 +1.3.6.1.4.1.2021.13.15.1.1.1.101|2|101 +1.3.6.1.4.1.2021.13.15.1.1.1.102|2|102 +1.3.6.1.4.1.2021.13.15.1.1.1.103|2|103 +1.3.6.1.4.1.2021.13.15.1.1.1.104|2|104 +1.3.6.1.4.1.2021.13.15.1.1.1.105|2|105 +1.3.6.1.4.1.2021.13.15.1.1.1.106|2|106 +1.3.6.1.4.1.2021.13.15.1.1.1.107|2|107 +1.3.6.1.4.1.2021.13.15.1.1.1.108|2|108 +1.3.6.1.4.1.2021.13.15.1.1.1.109|2|109 +1.3.6.1.4.1.2021.13.15.1.1.1.110|2|110 +1.3.6.1.4.1.2021.13.15.1.1.1.111|2|111 +1.3.6.1.4.1.2021.13.15.1.1.1.112|2|112 +1.3.6.1.4.1.2021.13.15.1.1.1.113|2|113 +1.3.6.1.4.1.2021.13.15.1.1.1.114|2|114 +1.3.6.1.4.1.2021.13.15.1.1.1.115|2|115 +1.3.6.1.4.1.2021.13.15.1.1.1.116|2|116 +1.3.6.1.4.1.2021.13.15.1.1.1.117|2|117 +1.3.6.1.4.1.2021.13.15.1.1.1.118|2|118 +1.3.6.1.4.1.2021.13.15.1.1.1.119|2|119 +1.3.6.1.4.1.2021.13.15.1.1.1.120|2|120 +1.3.6.1.4.1.2021.13.15.1.1.2.1|4|ram0 +1.3.6.1.4.1.2021.13.15.1.1.2.2|4|ram1 +1.3.6.1.4.1.2021.13.15.1.1.2.3|4|ram2 +1.3.6.1.4.1.2021.13.15.1.1.2.4|4|ram3 +1.3.6.1.4.1.2021.13.15.1.1.2.5|4|ram4 +1.3.6.1.4.1.2021.13.15.1.1.2.6|4|ram5 +1.3.6.1.4.1.2021.13.15.1.1.2.7|4|ram6 +1.3.6.1.4.1.2021.13.15.1.1.2.8|4|ram7 +1.3.6.1.4.1.2021.13.15.1.1.2.9|4|ram8 +1.3.6.1.4.1.2021.13.15.1.1.2.10|4|ram9 +1.3.6.1.4.1.2021.13.15.1.1.2.11|4|ram10 +1.3.6.1.4.1.2021.13.15.1.1.2.12|4|ram11 +1.3.6.1.4.1.2021.13.15.1.1.2.13|4|ram12 +1.3.6.1.4.1.2021.13.15.1.1.2.14|4|ram13 +1.3.6.1.4.1.2021.13.15.1.1.2.15|4|ram14 +1.3.6.1.4.1.2021.13.15.1.1.2.16|4|ram15 +1.3.6.1.4.1.2021.13.15.1.1.2.17|4|sda +1.3.6.1.4.1.2021.13.15.1.1.2.18|4|sda1 +1.3.6.1.4.1.2021.13.15.1.1.2.19|4|sda2 +1.3.6.1.4.1.2021.13.15.1.1.2.20|4|sdb +1.3.6.1.4.1.2021.13.15.1.1.2.21|4|sdb1 +1.3.6.1.4.1.2021.13.15.1.1.2.22|4|sdb2 +1.3.6.1.4.1.2021.13.15.1.1.2.23|4|sdb3 +1.3.6.1.4.1.2021.13.15.1.1.2.24|4|sdc +1.3.6.1.4.1.2021.13.15.1.1.2.25|4|sdc1 +1.3.6.1.4.1.2021.13.15.1.1.2.26|4|sdc2 +1.3.6.1.4.1.2021.13.15.1.1.2.27|4|sdc3 +1.3.6.1.4.1.2021.13.15.1.1.2.28|4|sdd +1.3.6.1.4.1.2021.13.15.1.1.2.29|4|sdd1 +1.3.6.1.4.1.2021.13.15.1.1.2.30|4|sdd2 +1.3.6.1.4.1.2021.13.15.1.1.2.31|4|sdd3 +1.3.6.1.4.1.2021.13.15.1.1.2.32|4|sde +1.3.6.1.4.1.2021.13.15.1.1.2.33|4|sde1 +1.3.6.1.4.1.2021.13.15.1.1.2.34|4|sde2 +1.3.6.1.4.1.2021.13.15.1.1.2.35|4|sde3 +1.3.6.1.4.1.2021.13.15.1.1.2.36|4|sdf +1.3.6.1.4.1.2021.13.15.1.1.2.37|4|sdf1 +1.3.6.1.4.1.2021.13.15.1.1.2.38|4|sdf2 +1.3.6.1.4.1.2021.13.15.1.1.2.39|4|sdf3 +1.3.6.1.4.1.2021.13.15.1.1.2.40|4|sdg +1.3.6.1.4.1.2021.13.15.1.1.2.41|4|sdg1 +1.3.6.1.4.1.2021.13.15.1.1.2.42|4|sdg2 +1.3.6.1.4.1.2021.13.15.1.1.2.43|4|sdg3 +1.3.6.1.4.1.2021.13.15.1.1.2.44|4|sdh +1.3.6.1.4.1.2021.13.15.1.1.2.45|4|sdh1 +1.3.6.1.4.1.2021.13.15.1.1.2.46|4|sdh2 +1.3.6.1.4.1.2021.13.15.1.1.2.47|4|sdh3 +1.3.6.1.4.1.2021.13.15.1.1.2.48|4|sdi +1.3.6.1.4.1.2021.13.15.1.1.2.49|4|sdi1 +1.3.6.1.4.1.2021.13.15.1.1.2.50|4|sdi2 +1.3.6.1.4.1.2021.13.15.1.1.2.51|4|sdi3 +1.3.6.1.4.1.2021.13.15.1.1.2.52|4|sdj +1.3.6.1.4.1.2021.13.15.1.1.2.53|4|sdj1 +1.3.6.1.4.1.2021.13.15.1.1.2.54|4|sdj2 +1.3.6.1.4.1.2021.13.15.1.1.2.55|4|sdj3 +1.3.6.1.4.1.2021.13.15.1.1.2.56|4|sdkb +1.3.6.1.4.1.2021.13.15.1.1.2.57|4|sdkb1 +1.3.6.1.4.1.2021.13.15.1.1.2.58|4|sdkb2 +1.3.6.1.4.1.2021.13.15.1.1.2.59|4|sdkb3 +1.3.6.1.4.1.2021.13.15.1.1.2.60|4|sdka +1.3.6.1.4.1.2021.13.15.1.1.2.61|4|sdka1 +1.3.6.1.4.1.2021.13.15.1.1.2.62|4|sdka2 +1.3.6.1.4.1.2021.13.15.1.1.2.63|4|sdka3 +1.3.6.1.4.1.2021.13.15.1.1.2.64|4|sdkc +1.3.6.1.4.1.2021.13.15.1.1.2.65|4|sdkc1 +1.3.6.1.4.1.2021.13.15.1.1.2.66|4|sdkc2 +1.3.6.1.4.1.2021.13.15.1.1.2.67|4|sdkc3 +1.3.6.1.4.1.2021.13.15.1.1.2.68|4|sdla +1.3.6.1.4.1.2021.13.15.1.1.2.69|4|sdla1 +1.3.6.1.4.1.2021.13.15.1.1.2.70|4|sdla2 +1.3.6.1.4.1.2021.13.15.1.1.2.71|4|sdla3 +1.3.6.1.4.1.2021.13.15.1.1.2.72|4|sdlc +1.3.6.1.4.1.2021.13.15.1.1.2.73|4|sdlc1 +1.3.6.1.4.1.2021.13.15.1.1.2.74|4|sdlc2 +1.3.6.1.4.1.2021.13.15.1.1.2.75|4|sdlc3 +1.3.6.1.4.1.2021.13.15.1.1.2.76|4|sdmb +1.3.6.1.4.1.2021.13.15.1.1.2.77|4|sdmb1 +1.3.6.1.4.1.2021.13.15.1.1.2.78|4|sdmb2 +1.3.6.1.4.1.2021.13.15.1.1.2.79|4|sdmb3 +1.3.6.1.4.1.2021.13.15.1.1.2.80|4|sdma +1.3.6.1.4.1.2021.13.15.1.1.2.81|4|sdma1 +1.3.6.1.4.1.2021.13.15.1.1.2.82|4|sdma2 +1.3.6.1.4.1.2021.13.15.1.1.2.83|4|sdma3 +1.3.6.1.4.1.2021.13.15.1.1.2.84|4|sdmc +1.3.6.1.4.1.2021.13.15.1.1.2.85|4|sdmc1 +1.3.6.1.4.1.2021.13.15.1.1.2.86|4|sdmc2 +1.3.6.1.4.1.2021.13.15.1.1.2.87|4|sdmc3 +1.3.6.1.4.1.2021.13.15.1.1.2.88|4|sdnb +1.3.6.1.4.1.2021.13.15.1.1.2.89|4|sdnb1 +1.3.6.1.4.1.2021.13.15.1.1.2.90|4|sdnb2 +1.3.6.1.4.1.2021.13.15.1.1.2.91|4|sdnb3 +1.3.6.1.4.1.2021.13.15.1.1.2.92|4|sdnc +1.3.6.1.4.1.2021.13.15.1.1.2.93|4|sdnc1 +1.3.6.1.4.1.2021.13.15.1.1.2.94|4|sdnc2 +1.3.6.1.4.1.2021.13.15.1.1.2.95|4|sdnc3 +1.3.6.1.4.1.2021.13.15.1.1.2.96|4|md0 +1.3.6.1.4.1.2021.13.15.1.1.2.97|4|md1 +1.3.6.1.4.1.2021.13.15.1.1.2.98|4|zram0 +1.3.6.1.4.1.2021.13.15.1.1.2.99|4|zram1 +1.3.6.1.4.1.2021.13.15.1.1.2.100|4|md2 +1.3.6.1.4.1.2021.13.15.1.1.2.101|4|dm-0 +1.3.6.1.4.1.2021.13.15.1.1.2.102|4|synoboot +1.3.6.1.4.1.2021.13.15.1.1.2.103|4|synoboot1 +1.3.6.1.4.1.2021.13.15.1.1.2.104|4|synoboot2 +1.3.6.1.4.1.2021.13.15.1.1.2.105|4|loop0 +1.3.6.1.4.1.2021.13.15.1.1.2.106|4|loop1 +1.3.6.1.4.1.2021.13.15.1.1.2.107|4|loop2 +1.3.6.1.4.1.2021.13.15.1.1.2.108|4|loop3 +1.3.6.1.4.1.2021.13.15.1.1.2.109|4|loop4 +1.3.6.1.4.1.2021.13.15.1.1.2.110|4|loop5 +1.3.6.1.4.1.2021.13.15.1.1.2.111|4|loop6 +1.3.6.1.4.1.2021.13.15.1.1.2.112|4|loop7 +1.3.6.1.4.1.2021.13.15.1.1.2.113|4|sdna +1.3.6.1.4.1.2021.13.15.1.1.2.114|4|sdna1 +1.3.6.1.4.1.2021.13.15.1.1.2.115|4|sdna2 +1.3.6.1.4.1.2021.13.15.1.1.2.116|4|sdna3 +1.3.6.1.4.1.2021.13.15.1.1.2.117|4|sdlb +1.3.6.1.4.1.2021.13.15.1.1.2.118|4|sdlb1 +1.3.6.1.4.1.2021.13.15.1.1.2.119|4|sdlb2 +1.3.6.1.4.1.2021.13.15.1.1.2.120|4|sdlb3 +1.3.6.1.4.1.2021.13.15.1.1.3.1|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.2|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.3|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.4|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.5|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.6|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.7|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.8|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.9|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.10|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.11|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.12|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.13|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.14|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.15|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.16|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.17|65|391137280 +1.3.6.1.4.1.2021.13.15.1.1.3.18|65|4246632448 +1.3.6.1.4.1.2021.13.15.1.1.3.19|65|439111680 +1.3.6.1.4.1.2021.13.15.1.1.3.20|65|4120975360 +1.3.6.1.4.1.2021.13.15.1.1.3.21|65|2029588480 +1.3.6.1.4.1.2021.13.15.1.1.3.22|65|2176569344 +1.3.6.1.4.1.2021.13.15.1.1.3.23|65|4209162240 +1.3.6.1.4.1.2021.13.15.1.1.3.24|65|283029504 +1.3.6.1.4.1.2021.13.15.1.1.3.25|65|3840962560 +1.3.6.1.4.1.2021.13.15.1.1.3.26|65|1461936128 +1.3.6.1.4.1.2021.13.15.1.1.3.27|65|3569430528 +1.3.6.1.4.1.2021.13.15.1.1.3.28|65|366993408 +1.3.6.1.4.1.2021.13.15.1.1.3.29|65|682070016 +1.3.6.1.4.1.2021.13.15.1.1.3.30|65|1756626944 +1.3.6.1.4.1.2021.13.15.1.1.3.31|65|2222641152 +1.3.6.1.4.1.2021.13.15.1.1.3.32|65|706277376 +1.3.6.1.4.1.2021.13.15.1.1.3.33|65|395628544 +1.3.6.1.4.1.2021.13.15.1.1.3.34|65|212647936 +1.3.6.1.4.1.2021.13.15.1.1.3.35|65|97366016 +1.3.6.1.4.1.2021.13.15.1.1.3.36|65|902840320 +1.3.6.1.4.1.2021.13.15.1.1.3.37|65|3431731200 +1.3.6.1.4.1.2021.13.15.1.1.3.38|65|4152111104 +1.3.6.1.4.1.2021.13.15.1.1.3.39|65|1908310016 +1.3.6.1.4.1.2021.13.15.1.1.3.40|65|3817680896 +1.3.6.1.4.1.2021.13.15.1.1.3.41|65|2146430976 +1.3.6.1.4.1.2021.13.15.1.1.3.42|65|3747147776 +1.3.6.1.4.1.2021.13.15.1.1.3.43|65|2218446848 +1.3.6.1.4.1.2021.13.15.1.1.3.44|65|611160064 +1.3.6.1.4.1.2021.13.15.1.1.3.45|65|861999104 +1.3.6.1.4.1.2021.13.15.1.1.3.46|65|3366584320 +1.3.6.1.4.1.2021.13.15.1.1.3.47|65|676921344 +1.3.6.1.4.1.2021.13.15.1.1.3.48|65|1064218624 +1.3.6.1.4.1.2021.13.15.1.1.3.49|65|1678172160 +1.3.6.1.4.1.2021.13.15.1.1.3.50|65|3098324992 +1.3.6.1.4.1.2021.13.15.1.1.3.51|65|582066176 +1.3.6.1.4.1.2021.13.15.1.1.3.52|65|11921408 +1.3.6.1.4.1.2021.13.15.1.1.3.53|65|4193651712 +1.3.6.1.4.1.2021.13.15.1.1.3.54|65|2916264960 +1.3.6.1.4.1.2021.13.15.1.1.3.55|65|1491316736 +1.3.6.1.4.1.2021.13.15.1.1.3.56|65|2262476800 +1.3.6.1.4.1.2021.13.15.1.1.3.57|65|581632 +1.3.6.1.4.1.2021.13.15.1.1.3.58|65|425984 +1.3.6.1.4.1.2021.13.15.1.1.3.59|65|2261067776 +1.3.6.1.4.1.2021.13.15.1.1.3.60|65|1410752512 +1.3.6.1.4.1.2021.13.15.1.1.3.61|65|581632 +1.3.6.1.4.1.2021.13.15.1.1.3.62|65|425984 +1.3.6.1.4.1.2021.13.15.1.1.3.63|65|1409343488 +1.3.6.1.4.1.2021.13.15.1.1.3.64|65|2719879168 +1.3.6.1.4.1.2021.13.15.1.1.3.65|65|581632 +1.3.6.1.4.1.2021.13.15.1.1.3.66|65|425984 +1.3.6.1.4.1.2021.13.15.1.1.3.67|65|2718449664 +1.3.6.1.4.1.2021.13.15.1.1.3.68|65|864837632 +1.3.6.1.4.1.2021.13.15.1.1.3.69|65|581632 +1.3.6.1.4.1.2021.13.15.1.1.3.70|65|425984 +1.3.6.1.4.1.2021.13.15.1.1.3.71|65|863387648 +1.3.6.1.4.1.2021.13.15.1.1.3.72|65|160313344 +1.3.6.1.4.1.2021.13.15.1.1.3.73|65|581632 +1.3.6.1.4.1.2021.13.15.1.1.3.74|65|425984 +1.3.6.1.4.1.2021.13.15.1.1.3.75|65|158904320 +1.3.6.1.4.1.2021.13.15.1.1.3.76|65|3931602944 +1.3.6.1.4.1.2021.13.15.1.1.3.77|65|581632 +1.3.6.1.4.1.2021.13.15.1.1.3.78|65|425984 +1.3.6.1.4.1.2021.13.15.1.1.3.79|65|3930193920 +1.3.6.1.4.1.2021.13.15.1.1.3.80|65|1343606784 +1.3.6.1.4.1.2021.13.15.1.1.3.81|65|581632 +1.3.6.1.4.1.2021.13.15.1.1.3.82|65|425984 +1.3.6.1.4.1.2021.13.15.1.1.3.83|65|1342197760 +1.3.6.1.4.1.2021.13.15.1.1.3.84|65|2511065088 +1.3.6.1.4.1.2021.13.15.1.1.3.85|65|581632 +1.3.6.1.4.1.2021.13.15.1.1.3.86|65|425984 +1.3.6.1.4.1.2021.13.15.1.1.3.87|65|2509656064 +1.3.6.1.4.1.2021.13.15.1.1.3.88|65|4289929216 +1.3.6.1.4.1.2021.13.15.1.1.3.89|65|581632 +1.3.6.1.4.1.2021.13.15.1.1.3.90|65|425984 +1.3.6.1.4.1.2021.13.15.1.1.3.91|65|4288520192 +1.3.6.1.4.1.2021.13.15.1.1.3.92|65|629388288 +1.3.6.1.4.1.2021.13.15.1.1.3.93|65|581632 +1.3.6.1.4.1.2021.13.15.1.1.3.94|65|425984 +1.3.6.1.4.1.2021.13.15.1.1.3.95|65|627962880 +1.3.6.1.4.1.2021.13.15.1.1.3.96|65|2030426112 +1.3.6.1.4.1.2021.13.15.1.1.3.97|65|1852391424 +1.3.6.1.4.1.2021.13.15.1.1.3.98|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.99|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.100|65|3607208960 +1.3.6.1.4.1.2021.13.15.1.1.3.101|65|3605595136 +1.3.6.1.4.1.2021.13.15.1.1.3.102|65|1244672 +1.3.6.1.4.1.2021.13.15.1.1.3.103|65|665088 +1.3.6.1.4.1.2021.13.15.1.1.3.104|65|423936 +1.3.6.1.4.1.2021.13.15.1.1.3.105|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.106|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.107|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.108|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.109|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.110|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.111|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.112|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.113|65|4019624448 +1.3.6.1.4.1.2021.13.15.1.1.3.114|65|585728 +1.3.6.1.4.1.2021.13.15.1.1.3.115|65|765952 +1.3.6.1.4.1.2021.13.15.1.1.3.116|65|4015286784 +1.3.6.1.4.1.2021.13.15.1.1.3.117|65|2314463744 +1.3.6.1.4.1.2021.13.15.1.1.3.118|65|585728 +1.3.6.1.4.1.2021.13.15.1.1.3.119|65|765952 +1.3.6.1.4.1.2021.13.15.1.1.3.120|65|2310093312 +1.3.6.1.4.1.2021.13.15.1.1.4.1|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.2|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.3|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.4|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.5|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.6|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.7|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.8|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.9|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.10|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.11|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.12|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.13|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.14|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.15|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.16|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.17|65|3919659008 +1.3.6.1.4.1.2021.13.15.1.1.4.18|65|2142355456 +1.3.6.1.4.1.2021.13.15.1.1.4.19|65|1777303552 +1.3.6.1.4.1.2021.13.15.1.1.4.20|65|561669120 +1.3.6.1.4.1.2021.13.15.1.1.4.21|65|2142355456 +1.3.6.1.4.1.2021.13.15.1.1.4.22|65|1777303552 +1.3.6.1.4.1.2021.13.15.1.1.4.23|65|936965120 +1.3.6.1.4.1.2021.13.15.1.1.4.24|65|3799667712 +1.3.6.1.4.1.2021.13.15.1.1.4.25|65|2142355456 +1.3.6.1.4.1.2021.13.15.1.1.4.26|65|1777303552 +1.3.6.1.4.1.2021.13.15.1.1.4.27|65|4174963712 +1.3.6.1.4.1.2021.13.15.1.1.4.28|65|3196142592 +1.3.6.1.4.1.2021.13.15.1.1.4.29|65|2142355456 +1.3.6.1.4.1.2021.13.15.1.1.4.30|65|1777303552 +1.3.6.1.4.1.2021.13.15.1.1.4.31|65|3571438592 +1.3.6.1.4.1.2021.13.15.1.1.4.32|65|3671991296 +1.3.6.1.4.1.2021.13.15.1.1.4.33|65|2142355456 +1.3.6.1.4.1.2021.13.15.1.1.4.34|65|1777303552 +1.3.6.1.4.1.2021.13.15.1.1.4.35|65|4047287296 +1.3.6.1.4.1.2021.13.15.1.1.4.36|65|836133888 +1.3.6.1.4.1.2021.13.15.1.1.4.37|65|2142355456 +1.3.6.1.4.1.2021.13.15.1.1.4.38|65|1777303552 +1.3.6.1.4.1.2021.13.15.1.1.4.39|65|1211429888 +1.3.6.1.4.1.2021.13.15.1.1.4.40|65|604341248 +1.3.6.1.4.1.2021.13.15.1.1.4.41|65|2142355456 +1.3.6.1.4.1.2021.13.15.1.1.4.42|65|1777303552 +1.3.6.1.4.1.2021.13.15.1.1.4.43|65|979637248 +1.3.6.1.4.1.2021.13.15.1.1.4.44|65|3779294208 +1.3.6.1.4.1.2021.13.15.1.1.4.45|65|2142355456 +1.3.6.1.4.1.2021.13.15.1.1.4.46|65|1777303552 +1.3.6.1.4.1.2021.13.15.1.1.4.47|65|4154590208 +1.3.6.1.4.1.2021.13.15.1.1.4.48|65|3675554816 +1.3.6.1.4.1.2021.13.15.1.1.4.49|65|2142355456 +1.3.6.1.4.1.2021.13.15.1.1.4.50|65|1777303552 +1.3.6.1.4.1.2021.13.15.1.1.4.51|65|4050850816 +1.3.6.1.4.1.2021.13.15.1.1.4.52|65|3074503680 +1.3.6.1.4.1.2021.13.15.1.1.4.53|65|2142355456 +1.3.6.1.4.1.2021.13.15.1.1.4.54|65|1777303552 +1.3.6.1.4.1.2021.13.15.1.1.4.55|65|3449799680 +1.3.6.1.4.1.2021.13.15.1.1.4.56|65|3475993600 +1.3.6.1.4.1.2021.13.15.1.1.4.57|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.58|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.59|65|3475981312 +1.3.6.1.4.1.2021.13.15.1.1.4.60|65|226010112 +1.3.6.1.4.1.2021.13.15.1.1.4.61|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.62|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.63|65|225997824 +1.3.6.1.4.1.2021.13.15.1.1.4.64|65|4252046336 +1.3.6.1.4.1.2021.13.15.1.1.4.65|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.66|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.67|65|4252034048 +1.3.6.1.4.1.2021.13.15.1.1.4.68|65|172135424 +1.3.6.1.4.1.2021.13.15.1.1.4.69|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.70|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.71|65|172123136 +1.3.6.1.4.1.2021.13.15.1.1.4.72|65|4027458560 +1.3.6.1.4.1.2021.13.15.1.1.4.73|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.74|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.75|65|4027446272 +1.3.6.1.4.1.2021.13.15.1.1.4.76|65|4148532224 +1.3.6.1.4.1.2021.13.15.1.1.4.77|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.78|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.79|65|4148519936 +1.3.6.1.4.1.2021.13.15.1.1.4.80|65|1480029184 +1.3.6.1.4.1.2021.13.15.1.1.4.81|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.82|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.83|65|1480016896 +1.3.6.1.4.1.2021.13.15.1.1.4.84|65|61989888 +1.3.6.1.4.1.2021.13.15.1.1.4.85|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.86|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.87|65|61977600 +1.3.6.1.4.1.2021.13.15.1.1.4.88|65|1879200768 +1.3.6.1.4.1.2021.13.15.1.1.4.89|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.90|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.91|65|1879188480 +1.3.6.1.4.1.2021.13.15.1.1.4.92|65|3377492992 +1.3.6.1.4.1.2021.13.15.1.1.4.93|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.94|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.95|65|3377480704 +1.3.6.1.4.1.2021.13.15.1.1.4.96|65|2689933312 +1.3.6.1.4.1.2021.13.15.1.1.4.97|65|1722261504 +1.3.6.1.4.1.2021.13.15.1.1.4.98|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.99|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.100|65|3889221632 +1.3.6.1.4.1.2021.13.15.1.1.4.101|65|3889221632 +1.3.6.1.4.1.2021.13.15.1.1.4.102|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.103|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.104|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.105|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.106|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.107|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.108|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.109|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.110|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.111|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.112|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.113|65|1494614016 +1.3.6.1.4.1.2021.13.15.1.1.4.114|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.115|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.116|65|1494347776 +1.3.6.1.4.1.2021.13.15.1.1.4.117|65|3874288640 +1.3.6.1.4.1.2021.13.15.1.1.4.118|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.119|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.120|65|3874026496 +1.3.6.1.4.1.2021.13.15.1.1.5.1|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.2|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.3|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.4|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.5|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.6|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.7|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.8|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.9|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.10|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.11|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.12|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.13|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.14|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.15|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.16|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.17|65|27527912 +1.3.6.1.4.1.2021.13.15.1.1.5.18|65|24770472 +1.3.6.1.4.1.2021.13.15.1.1.5.19|65|2757413 +1.3.6.1.4.1.2021.13.15.1.1.5.20|65|158566233 +1.3.6.1.4.1.2021.13.15.1.1.5.21|65|12284182 +1.3.6.1.4.1.2021.13.15.1.1.5.22|65|1706220 +1.3.6.1.4.1.2021.13.15.1.1.5.23|65|144575789 +1.3.6.1.4.1.2021.13.15.1.1.5.24|65|147759794 +1.3.6.1.4.1.2021.13.15.1.1.5.25|65|2041902 +1.3.6.1.4.1.2021.13.15.1.1.5.26|65|993488 +1.3.6.1.4.1.2021.13.15.1.1.5.27|65|144724359 +1.3.6.1.4.1.2021.13.15.1.1.5.28|65|148601981 +1.3.6.1.4.1.2021.13.15.1.1.5.29|65|3443018 +1.3.6.1.4.1.2021.13.15.1.1.5.30|65|587468 +1.3.6.1.4.1.2021.13.15.1.1.5.31|65|144571453 +1.3.6.1.4.1.2021.13.15.1.1.5.32|65|150691294 +1.3.6.1.4.1.2021.13.15.1.1.5.33|65|6537954 +1.3.6.1.4.1.2021.13.15.1.1.5.34|65|424508 +1.3.6.1.4.1.2021.13.15.1.1.5.35|65|143728787 +1.3.6.1.4.1.2021.13.15.1.1.5.36|65|146406087 +1.3.6.1.4.1.2021.13.15.1.1.5.37|65|1275265 +1.3.6.1.4.1.2021.13.15.1.1.5.38|65|391946 +1.3.6.1.4.1.2021.13.15.1.1.5.39|65|144738834 +1.3.6.1.4.1.2021.13.15.1.1.5.40|65|145661988 +1.3.6.1.4.1.2021.13.15.1.1.5.41|65|789400 +1.3.6.1.4.1.2021.13.15.1.1.5.42|65|354328 +1.3.6.1.4.1.2021.13.15.1.1.5.43|65|144518218 +1.3.6.1.4.1.2021.13.15.1.1.5.44|65|145353264 +1.3.6.1.4.1.2021.13.15.1.1.5.45|65|512113 +1.3.6.1.4.1.2021.13.15.1.1.5.46|65|327985 +1.3.6.1.4.1.2021.13.15.1.1.5.47|65|144513124 +1.3.6.1.4.1.2021.13.15.1.1.5.48|65|144081599 +1.3.6.1.4.1.2021.13.15.1.1.5.49|65|336748 +1.3.6.1.4.1.2021.13.15.1.1.5.50|65|303566 +1.3.6.1.4.1.2021.13.15.1.1.5.51|65|143441243 +1.3.6.1.4.1.2021.13.15.1.1.5.52|65|144930869 +1.3.6.1.4.1.2021.13.15.1.1.5.53|65|235125 +1.3.6.1.4.1.2021.13.15.1.1.5.54|65|290937 +1.3.6.1.4.1.2021.13.15.1.1.5.55|65|144404765 +1.3.6.1.4.1.2021.13.15.1.1.5.56|65|141545109 +1.3.6.1.4.1.2021.13.15.1.1.5.57|65|87 +1.3.6.1.4.1.2021.13.15.1.1.5.58|65|49 +1.3.6.1.4.1.2021.13.15.1.1.5.59|65|141544933 +1.3.6.1.4.1.2021.13.15.1.1.5.60|65|142100444 +1.3.6.1.4.1.2021.13.15.1.1.5.61|65|87 +1.3.6.1.4.1.2021.13.15.1.1.5.62|65|49 +1.3.6.1.4.1.2021.13.15.1.1.5.63|65|142100268 +1.3.6.1.4.1.2021.13.15.1.1.5.64|65|141607500 +1.3.6.1.4.1.2021.13.15.1.1.5.65|65|87 +1.3.6.1.4.1.2021.13.15.1.1.5.66|65|49 +1.3.6.1.4.1.2021.13.15.1.1.5.67|65|141607322 +1.3.6.1.4.1.2021.13.15.1.1.5.68|65|143455034 +1.3.6.1.4.1.2021.13.15.1.1.5.69|65|87 +1.3.6.1.4.1.2021.13.15.1.1.5.70|65|49 +1.3.6.1.4.1.2021.13.15.1.1.5.71|65|143454854 +1.3.6.1.4.1.2021.13.15.1.1.5.72|65|56847547 +1.3.6.1.4.1.2021.13.15.1.1.5.73|65|87 +1.3.6.1.4.1.2021.13.15.1.1.5.74|65|49 +1.3.6.1.4.1.2021.13.15.1.1.5.75|65|56847371 +1.3.6.1.4.1.2021.13.15.1.1.5.76|65|142045493 +1.3.6.1.4.1.2021.13.15.1.1.5.77|65|87 +1.3.6.1.4.1.2021.13.15.1.1.5.78|65|49 +1.3.6.1.4.1.2021.13.15.1.1.5.79|65|142045317 +1.3.6.1.4.1.2021.13.15.1.1.5.80|65|140403670 +1.3.6.1.4.1.2021.13.15.1.1.5.81|65|87 +1.3.6.1.4.1.2021.13.15.1.1.5.82|65|49 +1.3.6.1.4.1.2021.13.15.1.1.5.83|65|140403494 +1.3.6.1.4.1.2021.13.15.1.1.5.84|65|143095871 +1.3.6.1.4.1.2021.13.15.1.1.5.85|65|87 +1.3.6.1.4.1.2021.13.15.1.1.5.86|65|49 +1.3.6.1.4.1.2021.13.15.1.1.5.87|65|143095695 +1.3.6.1.4.1.2021.13.15.1.1.5.88|65|141289617 +1.3.6.1.4.1.2021.13.15.1.1.5.89|65|87 +1.3.6.1.4.1.2021.13.15.1.1.5.90|65|49 +1.3.6.1.4.1.2021.13.15.1.1.5.91|65|141289441 +1.3.6.1.4.1.2021.13.15.1.1.5.92|65|143180493 +1.3.6.1.4.1.2021.13.15.1.1.5.93|65|87 +1.3.6.1.4.1.2021.13.15.1.1.5.94|65|49 +1.3.6.1.4.1.2021.13.15.1.1.5.95|65|143180313 +1.3.6.1.4.1.2021.13.15.1.1.5.96|65|54978769 +1.3.6.1.4.1.2021.13.15.1.1.5.97|65|24569492 +1.3.6.1.4.1.2021.13.15.1.1.5.98|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.99|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.100|65|3704953568 +1.3.6.1.4.1.2021.13.15.1.1.5.101|65|3704953174 +1.3.6.1.4.1.2021.13.15.1.1.5.102|65|143 +1.3.6.1.4.1.2021.13.15.1.1.5.103|65|58 +1.3.6.1.4.1.2021.13.15.1.1.5.104|65|52 +1.3.6.1.4.1.2021.13.15.1.1.5.105|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.106|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.107|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.108|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.109|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.110|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.111|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.112|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.113|65|62821028 +1.3.6.1.4.1.2021.13.15.1.1.5.114|65|88 +1.3.6.1.4.1.2021.13.15.1.1.5.115|65|66 +1.3.6.1.4.1.2021.13.15.1.1.5.116|65|62820702 +1.3.6.1.4.1.2021.13.15.1.1.5.117|65|3453756 +1.3.6.1.4.1.2021.13.15.1.1.5.118|65|88 +1.3.6.1.4.1.2021.13.15.1.1.5.119|65|66 +1.3.6.1.4.1.2021.13.15.1.1.5.120|65|3453428 +1.3.6.1.4.1.2021.13.15.1.1.6.1|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.2|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.3|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.4|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.5|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.6|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.7|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.8|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.9|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.10|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.11|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.12|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.13|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.14|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.15|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.16|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.17|65|15584249 +1.3.6.1.4.1.2021.13.15.1.1.6.18|65|12879234 +1.3.6.1.4.1.2021.13.15.1.1.6.19|65|2427024 +1.3.6.1.4.1.2021.13.15.1.1.6.20|65|50595945 +1.3.6.1.4.1.2021.13.15.1.1.6.21|65|12883979 +1.3.6.1.4.1.2021.13.15.1.1.6.22|65|3009508 +1.3.6.1.4.1.2021.13.15.1.1.6.23|65|34424464 +1.3.6.1.4.1.2021.13.15.1.1.6.24|65|50641001 +1.3.6.1.4.1.2021.13.15.1.1.6.25|65|12890198 +1.3.6.1.4.1.2021.13.15.1.1.6.26|65|3135111 +1.3.6.1.4.1.2021.13.15.1.1.6.27|65|34337698 +1.3.6.1.4.1.2021.13.15.1.1.6.28|65|50619622 +1.3.6.1.4.1.2021.13.15.1.1.6.29|65|12890340 +1.3.6.1.4.1.2021.13.15.1.1.6.30|65|3189357 +1.3.6.1.4.1.2021.13.15.1.1.6.31|65|34261931 +1.3.6.1.4.1.2021.13.15.1.1.6.32|65|50465118 +1.3.6.1.4.1.2021.13.15.1.1.6.33|65|12888257 +1.3.6.1.4.1.2021.13.15.1.1.6.34|65|3198540 +1.3.6.1.4.1.2021.13.15.1.1.6.35|65|34100327 +1.3.6.1.4.1.2021.13.15.1.1.6.36|65|50930319 +1.3.6.1.4.1.2021.13.15.1.1.6.37|65|12890310 +1.3.6.1.4.1.2021.13.15.1.1.6.38|65|3256412 +1.3.6.1.4.1.2021.13.15.1.1.6.39|65|34505603 +1.3.6.1.4.1.2021.13.15.1.1.6.40|65|50819587 +1.3.6.1.4.1.2021.13.15.1.1.6.41|65|12877794 +1.3.6.1.4.1.2021.13.15.1.1.6.42|65|3154011 +1.3.6.1.4.1.2021.13.15.1.1.6.43|65|34509788 +1.3.6.1.4.1.2021.13.15.1.1.6.44|65|50451317 +1.3.6.1.4.1.2021.13.15.1.1.6.45|65|12876839 +1.3.6.1.4.1.2021.13.15.1.1.6.46|65|3179656 +1.3.6.1.4.1.2021.13.15.1.1.6.47|65|34116828 +1.3.6.1.4.1.2021.13.15.1.1.6.48|65|50358446 +1.3.6.1.4.1.2021.13.15.1.1.6.49|65|12878167 +1.3.6.1.4.1.2021.13.15.1.1.6.50|65|3173351 +1.3.6.1.4.1.2021.13.15.1.1.6.51|65|34028934 +1.3.6.1.4.1.2021.13.15.1.1.6.52|65|50577221 +1.3.6.1.4.1.2021.13.15.1.1.6.53|65|12878186 +1.3.6.1.4.1.2021.13.15.1.1.6.54|65|3185203 +1.3.6.1.4.1.2021.13.15.1.1.6.55|65|34235838 +1.3.6.1.4.1.2021.13.15.1.1.6.56|65|33371732 +1.3.6.1.4.1.2021.13.15.1.1.6.57|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.58|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.59|65|33371729 +1.3.6.1.4.1.2021.13.15.1.1.6.60|65|33566018 +1.3.6.1.4.1.2021.13.15.1.1.6.61|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.62|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.63|65|33566015 +1.3.6.1.4.1.2021.13.15.1.1.6.64|65|33679861 +1.3.6.1.4.1.2021.13.15.1.1.6.65|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.66|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.67|65|33679858 +1.3.6.1.4.1.2021.13.15.1.1.6.68|65|33882357 +1.3.6.1.4.1.2021.13.15.1.1.6.69|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.70|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.71|65|33882354 +1.3.6.1.4.1.2021.13.15.1.1.6.72|65|56239758 +1.3.6.1.4.1.2021.13.15.1.1.6.73|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.74|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.75|65|56239755 +1.3.6.1.4.1.2021.13.15.1.1.6.76|65|33586431 +1.3.6.1.4.1.2021.13.15.1.1.6.77|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.78|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.79|65|33586428 +1.3.6.1.4.1.2021.13.15.1.1.6.80|65|33426139 +1.3.6.1.4.1.2021.13.15.1.1.6.81|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.82|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.83|65|33426136 +1.3.6.1.4.1.2021.13.15.1.1.6.84|65|33867506 +1.3.6.1.4.1.2021.13.15.1.1.6.85|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.86|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.87|65|33867503 +1.3.6.1.4.1.2021.13.15.1.1.6.88|65|33864556 +1.3.6.1.4.1.2021.13.15.1.1.6.89|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.90|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.91|65|33864553 +1.3.6.1.4.1.2021.13.15.1.1.6.92|65|33839731 +1.3.6.1.4.1.2021.13.15.1.1.6.93|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.94|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.95|65|33839728 +1.3.6.1.4.1.2021.13.15.1.1.6.96|65|22659690 +1.3.6.1.4.1.2021.13.15.1.1.6.97|65|6711933 +1.3.6.1.4.1.2021.13.15.1.1.6.98|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.99|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.100|65|1773579829 +1.3.6.1.4.1.2021.13.15.1.1.6.101|65|1773579829 +1.3.6.1.4.1.2021.13.15.1.1.6.102|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.103|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.104|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.105|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.106|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.107|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.108|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.109|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.110|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.111|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.112|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.113|65|27943487 +1.3.6.1.4.1.2021.13.15.1.1.6.114|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.115|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.116|65|27943430 +1.3.6.1.4.1.2021.13.15.1.1.6.117|65|11593115 +1.3.6.1.4.1.2021.13.15.1.1.6.118|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.119|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.120|65|11593059 +1.3.6.1.4.1.2021.13.15.1.1.9.1|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.2|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.3|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.4|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.5|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.6|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.7|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.8|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.9|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.10|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.11|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.12|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.13|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.14|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.15|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.16|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.17|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.18|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.19|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.20|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.21|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.22|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.23|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.24|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.25|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.26|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.27|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.28|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.29|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.30|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.31|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.32|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.33|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.34|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.35|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.36|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.37|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.38|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.39|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.40|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.41|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.42|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.43|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.44|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.45|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.46|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.47|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.48|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.49|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.50|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.51|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.52|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.53|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.54|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.55|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.56|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.57|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.58|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.59|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.60|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.61|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.62|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.63|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.64|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.65|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.66|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.67|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.68|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.69|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.70|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.71|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.72|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.73|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.74|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.75|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.76|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.77|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.78|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.79|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.80|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.81|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.82|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.83|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.84|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.85|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.86|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.87|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.88|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.89|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.90|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.91|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.92|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.93|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.94|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.95|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.96|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.97|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.98|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.99|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.100|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.101|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.102|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.103|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.104|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.105|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.106|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.107|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.108|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.109|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.110|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.111|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.112|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.113|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.114|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.115|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.116|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.117|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.118|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.119|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.120|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.1|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.2|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.3|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.4|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.5|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.6|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.7|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.8|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.9|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.10|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.11|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.12|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.13|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.14|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.15|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.16|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.17|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.18|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.19|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.20|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.21|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.22|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.23|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.24|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.25|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.26|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.27|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.28|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.29|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.30|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.31|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.32|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.33|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.34|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.35|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.36|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.37|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.38|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.39|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.40|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.41|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.42|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.43|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.44|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.45|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.46|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.47|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.48|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.49|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.50|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.51|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.52|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.53|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.54|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.55|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.56|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.57|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.58|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.59|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.60|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.61|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.62|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.63|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.64|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.65|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.66|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.67|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.68|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.69|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.70|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.71|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.72|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.73|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.74|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.75|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.76|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.77|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.78|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.79|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.80|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.81|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.82|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.83|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.84|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.85|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.86|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.87|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.88|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.89|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.90|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.91|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.92|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.93|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.94|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.95|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.96|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.97|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.98|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.99|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.100|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.101|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.102|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.103|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.104|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.105|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.106|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.107|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.108|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.109|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.110|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.111|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.112|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.113|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.114|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.115|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.116|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.117|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.118|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.119|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.120|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.1|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.2|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.3|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.4|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.5|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.6|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.7|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.8|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.9|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.10|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.11|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.12|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.13|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.14|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.15|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.16|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.17|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.18|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.19|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.20|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.21|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.22|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.23|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.24|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.25|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.26|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.27|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.28|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.29|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.30|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.31|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.32|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.33|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.34|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.35|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.36|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.37|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.38|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.39|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.40|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.41|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.42|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.43|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.44|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.45|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.46|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.47|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.48|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.49|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.50|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.51|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.52|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.53|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.54|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.55|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.56|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.57|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.58|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.59|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.60|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.61|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.62|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.63|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.64|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.65|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.66|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.67|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.68|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.69|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.70|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.71|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.72|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.73|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.74|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.75|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.76|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.77|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.78|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.79|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.80|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.81|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.82|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.83|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.84|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.85|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.86|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.87|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.88|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.89|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.90|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.91|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.92|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.93|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.94|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.95|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.96|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.97|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.98|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.99|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.100|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.101|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.102|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.103|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.104|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.105|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.106|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.107|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.108|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.109|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.110|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.111|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.112|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.113|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.114|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.115|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.116|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.117|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.118|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.119|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.120|2|0 +1.3.6.1.4.1.2021.13.15.1.1.12.1|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.2|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.3|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.4|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.5|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.6|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.7|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.8|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.9|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.10|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.11|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.12|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.13|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.14|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.15|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.16|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.17|70|885154400256 +1.3.6.1.4.1.2021.13.15.1.1.12.18|70|841765255168 +1.3.6.1.4.1.2021.13.15.1.1.12.19|70|43388784640 +1.3.6.1.4.1.2021.13.15.1.1.12.20|70|31786878965760 +1.3.6.1.4.1.2021.13.15.1.1.12.21|70|362806841344 +1.3.6.1.4.1.2021.13.15.1.1.12.22|70|19356438528 +1.3.6.1.4.1.2021.13.15.1.1.12.23|70|31404715063296 +1.3.6.1.4.1.2021.13.15.1.1.12.24|70|31435148668928 +1.3.6.1.4.1.2021.13.15.1.1.12.25|70|42495668224 +1.3.6.1.4.1.2021.13.15.1.1.12.26|70|10051870720 +1.3.6.1.4.1.2021.13.15.1.1.12.27|70|31382600495104 +1.3.6.1.4.1.2021.13.15.1.1.12.28|70|31482477273088 +1.3.6.1.4.1.2021.13.15.1.1.12.29|70|77991481344 +1.3.6.1.4.1.2021.13.15.1.1.12.30|70|6051594240 +1.3.6.1.4.1.2021.13.15.1.1.12.31|70|31398433574912 +1.3.6.1.4.1.2021.13.15.1.1.12.32|70|31551536033792 +1.3.6.1.4.1.2021.13.15.1.1.12.33|70|163604385792 +1.3.6.1.4.1.2021.13.15.1.1.12.34|70|4507615232 +1.3.6.1.4.1.2021.13.15.1.1.12.35|70|31383423397888 +1.3.6.1.4.1.2021.13.15.1.1.12.36|70|31435768479744 +1.3.6.1.4.1.2021.13.15.1.1.12.37|70|24906567680 +1.3.6.1.4.1.2021.13.15.1.1.12.38|70|4152111104 +1.3.6.1.4.1.2021.13.15.1.1.12.39|70|31406709178368 +1.3.6.1.4.1.2021.13.15.1.1.12.40|70|31417208483840 +1.3.6.1.4.1.2021.13.15.1.1.12.41|70|15031332864 +1.3.6.1.4.1.2021.13.15.1.1.12.42|70|3747147776 +1.3.6.1.4.1.2021.13.15.1.1.12.43|70|31398429380608 +1.3.6.1.4.1.2021.13.15.1.1.12.44|70|31396822093824 +1.3.6.1.4.1.2021.13.15.1.1.12.45|70|9451933696 +1.3.6.1.4.1.2021.13.15.1.1.12.46|70|3366584320 +1.3.6.1.4.1.2021.13.15.1.1.12.47|70|31384002953216 +1.3.6.1.4.1.2021.13.15.1.1.12.48|70|31392980185088 +1.3.6.1.4.1.2021.13.15.1.1.12.49|70|5973139456 +1.3.6.1.4.1.2021.13.15.1.1.12.50|70|3098324992 +1.3.6.1.4.1.2021.13.15.1.1.12.51|70|31383908098048 +1.3.6.1.4.1.2021.13.15.1.1.12.52|70|31391927887872 +1.3.6.1.4.1.2021.13.15.1.1.12.53|70|4193651712 +1.3.6.1.4.1.2021.13.15.1.1.12.54|70|2916264960 +1.3.6.1.4.1.2021.13.15.1.1.12.55|70|31384817348608 +1.3.6.1.4.1.2021.13.15.1.1.12.56|70|31398473410560 +1.3.6.1.4.1.2021.13.15.1.1.12.57|70|581632 +1.3.6.1.4.1.2021.13.15.1.1.12.58|70|425984 +1.3.6.1.4.1.2021.13.15.1.1.12.59|70|31398472001536 +1.3.6.1.4.1.2021.13.15.1.1.12.60|70|31406211620864 +1.3.6.1.4.1.2021.13.15.1.1.12.61|70|581632 +1.3.6.1.4.1.2021.13.15.1.1.12.62|70|425984 +1.3.6.1.4.1.2021.13.15.1.1.12.63|70|31406210211840 +1.3.6.1.4.1.2021.13.15.1.1.12.64|70|31386045911040 +1.3.6.1.4.1.2021.13.15.1.1.12.65|70|581632 +1.3.6.1.4.1.2021.13.15.1.1.12.66|70|425984 +1.3.6.1.4.1.2021.13.15.1.1.12.67|70|31386044481536 +1.3.6.1.4.1.2021.13.15.1.1.12.68|70|31409960673280 +1.3.6.1.4.1.2021.13.15.1.1.12.69|70|581632 +1.3.6.1.4.1.2021.13.15.1.1.12.70|70|425984 +1.3.6.1.4.1.2021.13.15.1.1.12.71|70|31409959223296 +1.3.6.1.4.1.2021.13.15.1.1.12.72|70|20710492614656 +1.3.6.1.4.1.2021.13.15.1.1.12.73|70|581632 +1.3.6.1.4.1.2021.13.15.1.1.12.74|70|425984 +1.3.6.1.4.1.2021.13.15.1.1.12.75|70|20710491205632 +1.3.6.1.4.1.2021.13.15.1.1.12.76|70|31400142536704 +1.3.6.1.4.1.2021.13.15.1.1.12.77|70|581632 +1.3.6.1.4.1.2021.13.15.1.1.12.78|70|425984 +1.3.6.1.4.1.2021.13.15.1.1.12.79|70|31400141127680 +1.3.6.1.4.1.2021.13.15.1.1.12.80|70|31384669638656 +1.3.6.1.4.1.2021.13.15.1.1.12.81|70|581632 +1.3.6.1.4.1.2021.13.15.1.1.12.82|70|425984 +1.3.6.1.4.1.2021.13.15.1.1.12.83|70|31384668229632 +1.3.6.1.4.1.2021.13.15.1.1.12.84|70|31385837096960 +1.3.6.1.4.1.2021.13.15.1.1.12.85|70|581632 +1.3.6.1.4.1.2021.13.15.1.1.12.86|70|425984 +1.3.6.1.4.1.2021.13.15.1.1.12.87|70|31385835687936 +1.3.6.1.4.1.2021.13.15.1.1.12.88|70|31387615961088 +1.3.6.1.4.1.2021.13.15.1.1.12.89|70|581632 +1.3.6.1.4.1.2021.13.15.1.1.12.90|70|425984 +1.3.6.1.4.1.2021.13.15.1.1.12.91|70|31387614552064 +1.3.6.1.4.1.2021.13.15.1.1.12.92|70|31401135289344 +1.3.6.1.4.1.2021.13.15.1.1.12.93|70|581632 +1.3.6.1.4.1.2021.13.15.1.1.12.94|70|425984 +1.3.6.1.4.1.2021.13.15.1.1.12.95|70|31401133863936 +1.3.6.1.4.1.2021.13.15.1.1.12.96|70|1548218652672 +1.3.6.1.4.1.2021.13.15.1.1.12.97|70|100636639232 +1.3.6.1.4.1.2021.13.15.1.1.12.98|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.99|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.100|70|217062664414208 +1.3.6.1.4.1.2021.13.15.1.1.12.101|70|217062662800384 +1.3.6.1.4.1.2021.13.15.1.1.12.102|70|1244672 +1.3.6.1.4.1.2021.13.15.1.1.12.103|70|665088 +1.3.6.1.4.1.2021.13.15.1.1.12.104|70|423936 +1.3.6.1.4.1.2021.13.15.1.1.12.105|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.106|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.107|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.108|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.109|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.110|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.111|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.112|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.113|70|11703510538752 +1.3.6.1.4.1.2021.13.15.1.1.12.114|70|585728 +1.3.6.1.4.1.2021.13.15.1.1.12.115|70|765952 +1.3.6.1.4.1.2021.13.15.1.1.12.116|70|11703506201088 +1.3.6.1.4.1.2021.13.15.1.1.12.117|70|457580997120 +1.3.6.1.4.1.2021.13.15.1.1.12.118|70|585728 +1.3.6.1.4.1.2021.13.15.1.1.12.119|70|765952 +1.3.6.1.4.1.2021.13.15.1.1.12.120|70|457576626688 +1.3.6.1.4.1.2021.13.15.1.1.13.1|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.2|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.3|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.4|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.5|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.6|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.7|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.8|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.9|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.10|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.11|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.12|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.13|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.14|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.15|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.16|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.17|70|141358612480 +1.3.6.1.4.1.2021.13.15.1.1.13.18|70|113811505152 +1.3.6.1.4.1.2021.13.15.1.1.13.19|70|27547107328 +1.3.6.1.4.1.2021.13.15.1.1.13.20|70|6017810850816 +1.3.6.1.4.1.2021.13.15.1.1.13.21|70|113811505152 +1.3.6.1.4.1.2021.13.15.1.1.13.22|70|27547107328 +1.3.6.1.4.1.2021.13.15.1.1.13.23|70|5876452226048 +1.3.6.1.4.1.2021.13.15.1.1.13.24|70|6016753882112 +1.3.6.1.4.1.2021.13.15.1.1.13.25|70|113811505152 +1.3.6.1.4.1.2021.13.15.1.1.13.26|70|27547107328 +1.3.6.1.4.1.2021.13.15.1.1.13.27|70|5875395257344 +1.3.6.1.4.1.2021.13.15.1.1.13.28|70|6016150356992 +1.3.6.1.4.1.2021.13.15.1.1.13.29|70|113811505152 +1.3.6.1.4.1.2021.13.15.1.1.13.30|70|27547107328 +1.3.6.1.4.1.2021.13.15.1.1.13.31|70|5874791732224 +1.3.6.1.4.1.2021.13.15.1.1.13.32|70|6012331238400 +1.3.6.1.4.1.2021.13.15.1.1.13.33|70|113811505152 +1.3.6.1.4.1.2021.13.15.1.1.13.34|70|27547107328 +1.3.6.1.4.1.2021.13.15.1.1.13.35|70|5870972613632 +1.3.6.1.4.1.2021.13.15.1.1.13.36|70|6018085315584 +1.3.6.1.4.1.2021.13.15.1.1.13.37|70|113811505152 +1.3.6.1.4.1.2021.13.15.1.1.13.38|70|27547107328 +1.3.6.1.4.1.2021.13.15.1.1.13.39|70|5876726690816 +1.3.6.1.4.1.2021.13.15.1.1.13.40|70|6017853522944 +1.3.6.1.4.1.2021.13.15.1.1.13.41|70|113811505152 +1.3.6.1.4.1.2021.13.15.1.1.13.42|70|27547107328 +1.3.6.1.4.1.2021.13.15.1.1.13.43|70|5876494898176 +1.3.6.1.4.1.2021.13.15.1.1.13.44|70|6016733508608 +1.3.6.1.4.1.2021.13.15.1.1.13.45|70|113811505152 +1.3.6.1.4.1.2021.13.15.1.1.13.46|70|27547107328 +1.3.6.1.4.1.2021.13.15.1.1.13.47|70|5875374883840 +1.3.6.1.4.1.2021.13.15.1.1.13.48|70|6012334801920 +1.3.6.1.4.1.2021.13.15.1.1.13.49|70|113811505152 +1.3.6.1.4.1.2021.13.15.1.1.13.50|70|27547107328 +1.3.6.1.4.1.2021.13.15.1.1.13.51|70|5870976177152 +1.3.6.1.4.1.2021.13.15.1.1.13.52|70|6016028718080 +1.3.6.1.4.1.2021.13.15.1.1.13.53|70|113811505152 +1.3.6.1.4.1.2021.13.15.1.1.13.54|70|27547107328 +1.3.6.1.4.1.2021.13.15.1.1.13.55|70|5874670093312 +1.3.6.1.4.1.2021.13.15.1.1.13.56|70|5874696287232 +1.3.6.1.4.1.2021.13.15.1.1.13.57|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.58|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.59|70|5874696274944 +1.3.6.1.4.1.2021.13.15.1.1.13.60|70|5875741271040 +1.3.6.1.4.1.2021.13.15.1.1.13.61|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.62|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.63|70|5875741258752 +1.3.6.1.4.1.2021.13.15.1.1.13.64|70|5871177372672 +1.3.6.1.4.1.2021.13.15.1.1.13.65|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.66|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.67|70|5871177360384 +1.3.6.1.4.1.2021.13.15.1.1.13.68|70|5875687396352 +1.3.6.1.4.1.2021.13.15.1.1.13.69|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.70|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.71|70|5875687384064 +1.3.6.1.4.1.2021.13.15.1.1.13.72|70|6519492846592 +1.3.6.1.4.1.2021.13.15.1.1.13.73|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.74|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.75|70|6519492834304 +1.3.6.1.4.1.2021.13.15.1.1.13.76|70|5875368825856 +1.3.6.1.4.1.2021.13.15.1.1.13.77|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.78|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.79|70|5875368813568 +1.3.6.1.4.1.2021.13.15.1.1.13.80|70|5872700322816 +1.3.6.1.4.1.2021.13.15.1.1.13.81|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.82|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.83|70|5872700310528 +1.3.6.1.4.1.2021.13.15.1.1.13.84|70|5875577250816 +1.3.6.1.4.1.2021.13.15.1.1.13.85|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.86|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.87|70|5875577238528 +1.3.6.1.4.1.2021.13.15.1.1.13.88|70|5873099494400 +1.3.6.1.4.1.2021.13.15.1.1.13.89|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.90|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.91|70|5873099482112 +1.3.6.1.4.1.2021.13.15.1.1.13.92|70|5874597786624 +1.3.6.1.4.1.2021.13.15.1.1.13.93|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.94|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.95|70|5874597774336 +1.3.6.1.4.1.2021.13.15.1.1.13.96|70|97179213824 +1.3.6.1.4.1.2021.13.15.1.1.13.97|70|27492065280 +1.3.6.1.4.1.2021.13.15.1.1.13.98|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.99|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.100|70|110861290098688 +1.3.6.1.4.1.2021.13.15.1.1.13.101|70|110861290098688 +1.3.6.1.4.1.2021.13.15.1.1.13.102|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.103|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.104|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.105|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.106|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.107|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.108|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.109|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.110|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.111|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.112|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.113|70|7921414307840 +1.3.6.1.4.1.2021.13.15.1.1.13.114|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.115|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.116|70|7921414041600 +1.3.6.1.4.1.2021.13.15.1.1.13.117|70|5286684062720 +1.3.6.1.4.1.2021.13.15.1.1.13.118|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.119|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.120|70|5286683800576 +1.3.6.1.4.1.6574.1.1.0|2|1 +1.3.6.1.4.1.6574.1.2.0|2|48 +1.3.6.1.4.1.6574.1.3.0|2|1 +1.3.6.1.4.1.6574.1.4.1.0|2|1 +1.3.6.1.4.1.6574.1.4.2.0|2|1 +1.3.6.1.4.1.6574.1.5.1.0|4|RS2212RP+ 1.3.6.1.4.1.6574.1.5.2.0|4|3005AWL999111 +1.3.6.1.4.1.6574.1.5.3.0|4|DSM 6.1-15217 +1.3.6.1.4.1.6574.1.5.4.0|2|1 +1.3.6.1.4.1.6574.2.1.1.2.0|4|Disk 1 +1.3.6.1.4.1.6574.2.1.1.2.1|4|Disk 2 +1.3.6.1.4.1.6574.2.1.1.2.2|4|Disk 3 +1.3.6.1.4.1.6574.2.1.1.2.3|4|Disk 4 +1.3.6.1.4.1.6574.2.1.1.2.4|4|Disk 5 +1.3.6.1.4.1.6574.2.1.1.2.5|4|Disk 6 +1.3.6.1.4.1.6574.2.1.1.2.6|4|Disk 7 +1.3.6.1.4.1.6574.2.1.1.2.7|4|Disk 8 +1.3.6.1.4.1.6574.2.1.1.2.8|4|Disk 9 +1.3.6.1.4.1.6574.2.1.1.2.9|4|Disk 10 +1.3.6.1.4.1.6574.2.1.1.2.10|4|Disk 1 (RX1214rp-1) +1.3.6.1.4.1.6574.2.1.1.2.11|4|Disk 2 (RX1214rp-1) +1.3.6.1.4.1.6574.2.1.1.2.12|4|Disk 3 (RX1214rp-1) +1.3.6.1.4.1.6574.2.1.1.2.13|4|Disk 4 (RX1214rp-1) +1.3.6.1.4.1.6574.2.1.1.2.14|4|Disk 5 (RX1214rp-1) +1.3.6.1.4.1.6574.2.1.1.2.15|4|Disk 6 (RX1214rp-1) +1.3.6.1.4.1.6574.2.1.1.2.16|4|Disk 7 (RX1214rp-1) +1.3.6.1.4.1.6574.2.1.1.2.17|4|Disk 8 (RX1214rp-1) +1.3.6.1.4.1.6574.2.1.1.2.18|4|Disk 9 (RX1214rp-1) +1.3.6.1.4.1.6574.2.1.1.2.19|4|Disk 10 (RX1214rp-1) +1.3.6.1.4.1.6574.2.1.1.2.20|4|Disk 11 (RX1214rp-1) +1.3.6.1.4.1.6574.2.1.1.2.21|4|Disk 12 (RX1214rp-1) +1.3.6.1.4.1.6574.2.1.1.3.0|4|ST3320620NS +1.3.6.1.4.1.6574.2.1.1.3.1|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.2|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.3|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.4|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.5|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.6|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.7|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.8|4|WD50EFRX-68L0BN1 +1.3.6.1.4.1.6574.2.1.1.3.9|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.10|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.11|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.12|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.13|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.14|4|WD60EFAX-68SHWN0 +1.3.6.1.4.1.6574.2.1.1.3.15|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.16|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.17|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.18|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.19|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.20|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.3.21|4|WD50EFRX-68MYMN1 +1.3.6.1.4.1.6574.2.1.1.4.0|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.1|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.2|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.3|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.4|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.5|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.6|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.7|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.8|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.9|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.10|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.11|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.12|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.13|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.14|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.15|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.16|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.17|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.18|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.19|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.20|4|SATA +1.3.6.1.4.1.6574.2.1.1.4.21|4|SATA +1.3.6.1.4.1.6574.2.1.1.5.0|2|2 +1.3.6.1.4.1.6574.2.1.1.5.1|2|1 +1.3.6.1.4.1.6574.2.1.1.5.2|2|1 +1.3.6.1.4.1.6574.2.1.1.5.3|2|1 +1.3.6.1.4.1.6574.2.1.1.5.4|2|1 +1.3.6.1.4.1.6574.2.1.1.5.5|2|1 +1.3.6.1.4.1.6574.2.1.1.5.6|2|1 +1.3.6.1.4.1.6574.2.1.1.5.7|2|1 +1.3.6.1.4.1.6574.2.1.1.5.8|2|1 +1.3.6.1.4.1.6574.2.1.1.5.9|2|1 +1.3.6.1.4.1.6574.2.1.1.5.10|2|1 +1.3.6.1.4.1.6574.2.1.1.5.11|2|1 +1.3.6.1.4.1.6574.2.1.1.5.12|2|1 +1.3.6.1.4.1.6574.2.1.1.5.13|2|1 +1.3.6.1.4.1.6574.2.1.1.5.14|2|1 +1.3.6.1.4.1.6574.2.1.1.5.15|2|1 +1.3.6.1.4.1.6574.2.1.1.5.16|2|1 +1.3.6.1.4.1.6574.2.1.1.5.17|2|1 +1.3.6.1.4.1.6574.2.1.1.5.18|2|1 +1.3.6.1.4.1.6574.2.1.1.5.19|2|1 +1.3.6.1.4.1.6574.2.1.1.5.20|2|1 +1.3.6.1.4.1.6574.2.1.1.5.21|2|1 +1.3.6.1.4.1.6574.2.1.1.6.0|2|42 +1.3.6.1.4.1.6574.2.1.1.6.1|2|42 +1.3.6.1.4.1.6574.2.1.1.6.2|2|40 +1.3.6.1.4.1.6574.2.1.1.6.3|2|41 +1.3.6.1.4.1.6574.2.1.1.6.4|2|43 +1.3.6.1.4.1.6574.2.1.1.6.5|2|41 +1.3.6.1.4.1.6574.2.1.1.6.6|2|41 +1.3.6.1.4.1.6574.2.1.1.6.7|2|43 +1.3.6.1.4.1.6574.2.1.1.6.8|2|41 +1.3.6.1.4.1.6574.2.1.1.6.9|2|38 +1.3.6.1.4.1.6574.2.1.1.6.10|2|36 +1.3.6.1.4.1.6574.2.1.1.6.11|2|38 +1.3.6.1.4.1.6574.2.1.1.6.12|2|37 +1.3.6.1.4.1.6574.2.1.1.6.13|2|36 +1.3.6.1.4.1.6574.2.1.1.6.14|2|31 +1.3.6.1.4.1.6574.2.1.1.6.15|2|35 +1.3.6.1.4.1.6574.2.1.1.6.16|2|36 +1.3.6.1.4.1.6574.2.1.1.6.17|2|35 +1.3.6.1.4.1.6574.2.1.1.6.18|2|34 +1.3.6.1.4.1.6574.2.1.1.6.19|2|34 +1.3.6.1.4.1.6574.2.1.1.6.20|2|35 +1.3.6.1.4.1.6574.2.1.1.6.21|2|35 +1.3.6.1.4.1.6574.3.1.1.2.0|4|Volume 1 +1.3.6.1.4.1.6574.3.1.1.3.0|2|1 +1.3.6.1.6.3.10.2.1.3.0|2|85106898 diff --git a/tests/snmpsim/dsm_ds214.snmprec b/tests/snmpsim/dsm_ds214.snmprec deleted file mode 100644 index 31f9485460..0000000000 --- a/tests/snmpsim/dsm_ds214.snmprec +++ /dev/null @@ -1,3 +0,0 @@ -1.3.6.1.2.1.1.1.0|4|Linux xxxxx 3.2.40 #7393 SMP PREEMPT Thu Jun 2 19:47:23 CST 2016 i686 -1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10 -1.3.6.1.2.1.25.1.4.0|4|root=/dev/md0 HddHotplug=1 ihd_num=2 netif_num=1 syno_dyn_module=n phys_memsize=1024 memmap=exactmap memmap=128K@128K memmap=711 diff --git a/tests/snmpsim/dsm_ds214se.snmprec b/tests/snmpsim/dsm_ds214se.snmprec new file mode 100644 index 0000000000..a53157a66f --- /dev/null +++ b/tests/snmpsim/dsm_ds214se.snmprec @@ -0,0 +1,495 @@ +1.3.6.1.2.1.1.1.0|4|Linux Nas 3.2.40 #25426 Wed Jul 8 03:15:48 CST 2020 armv7l +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10 +1.3.6.1.2.1.1.3.0|67|47285 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +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|sit0 +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|131 +1.3.6.1.2.1.2.2.1.4.1|2|16436 +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|1480 +1.3.6.1.2.1.2.2.1.6.1|4| +1.3.6.1.2.1.2.2.1.6.2|4x|00113224F9EB +1.3.6.1.2.1.2.2.1.6.3|4| +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|2 +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.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.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.13.3|65|0 +1.3.6.1.2.1.2.2.1.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.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.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.4.3.0|65|2410 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|53 +1.3.6.1.2.1.4.6.0|65|0 +1.3.6.1.2.1.4.7.0|65|0 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|2349 +1.3.6.1.2.1.4.10.0|65|1732 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|58 +1.3.6.1.2.1.4.14.0|65|0 +1.3.6.1.2.1.4.18.0|65|0 +1.3.6.1.2.1.4.19.0|65|0 +1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1 +1.3.6.1.2.1.4.20.1.2.192.168.168.80|2|2 +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.20.1.3.192.168.168.80|64|255.255.255.0 +1.3.6.1.2.1.4.21.1.1.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.4.21.1.1.192.168.168.0|64|192.168.168.0 +1.3.6.1.2.1.4.21.1.2.0.0.0.0|2|2 +1.3.6.1.2.1.4.21.1.2.192.168.168.0|2|2 +1.3.6.1.2.1.4.21.1.3.0.0.0.0|2|1 +1.3.6.1.2.1.4.21.1.3.192.168.168.0|2|0 +1.3.6.1.2.1.4.21.1.7.0.0.0.0|64|192.168.168.1 +1.3.6.1.2.1.4.21.1.7.192.168.168.0|64|0.0.0.0 +1.3.6.1.2.1.4.21.1.8.0.0.0.0|2|4 +1.3.6.1.2.1.4.21.1.8.192.168.168.0|2|3 +1.3.6.1.2.1.4.21.1.9.0.0.0.0|2|2 +1.3.6.1.2.1.4.21.1.9.192.168.168.0|2|2 +1.3.6.1.2.1.4.21.1.11.0.0.0.0|64|0.0.0.0 +1.3.6.1.2.1.4.21.1.11.192.168.168.0|64|255.255.255.0 +1.3.6.1.2.1.4.21.1.13.0.0.0.0|6|0.0 +1.3.6.1.2.1.4.21.1.13.192.168.168.0|6|0.0 +1.3.6.1.2.1.4.22.1.2.2.192.168.168.1|4x|00000C07AC00 +1.3.6.1.2.1.4.22.1.2.2.192.168.168.214|4x|A886DD94A620 +1.3.6.1.2.1.4.22.1.2.2.192.168.168.232|4x|F2FA283EAAB1 +1.3.6.1.2.1.4.24.6.0|66|13 +1.3.6.1.2.1.4.31.1.1.3.1|65|2447 +1.3.6.1.2.1.4.31.1.1.3.2|65|322 +1.3.6.1.2.1.4.31.1.1.4.1|70|2447 +1.3.6.1.2.1.4.31.1.1.4.2|70|322 +1.3.6.1.2.1.4.31.1.1.5.1|65|259019 +1.3.6.1.2.1.4.31.1.1.5.2|65|65730 +1.3.6.1.2.1.4.31.1.1.6.1|70|259019 +1.3.6.1.2.1.4.31.1.1.6.2|70|65730 +1.3.6.1.2.1.4.31.1.1.7.1|65|0 +1.3.6.1.2.1.4.31.1.1.7.2|65|0 +1.3.6.1.2.1.4.31.1.1.8.1|65|0 +1.3.6.1.2.1.4.31.1.1.8.2|65|0 +1.3.6.1.2.1.4.31.1.1.9.1|65|53 +1.3.6.1.2.1.4.31.1.1.9.2|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.10.2|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.11.2|65|0 +1.3.6.1.2.1.4.31.1.1.12.1|65|0 +1.3.6.1.2.1.4.31.1.1.12.2|65|0 +1.3.6.1.2.1.4.31.1.1.13.1|70|0 +1.3.6.1.2.1.4.31.1.1.13.2|70|0 +1.3.6.1.2.1.4.31.1.1.14.1|65|0 +1.3.6.1.2.1.4.31.1.1.14.2|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.15.2|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.16.2|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.17.2|65|0 +1.3.6.1.2.1.4.31.1.1.18.1|65|2386 +1.3.6.1.2.1.4.31.1.1.18.2|65|191 +1.3.6.1.2.1.4.31.1.1.19.1|70|2386 +1.3.6.1.2.1.4.31.1.1.19.2|70|191 +1.3.6.1.2.1.4.31.1.1.20.1|65|1745 +1.3.6.1.2.1.4.31.1.1.20.2|65|138 +1.3.6.1.2.1.4.31.1.1.21.1|70|1745 +1.3.6.1.2.1.4.31.1.1.21.2|70|138 +1.3.6.1.2.1.4.31.1.1.22.1|65|58 +1.3.6.1.2.1.4.31.1.1.22.2|65|0 +1.3.6.1.2.1.4.31.1.1.23.1|65|0 +1.3.6.1.2.1.4.31.1.1.23.2|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.24.2|70|0 +1.3.6.1.2.1.4.31.1.1.25.1|65|0 +1.3.6.1.2.1.4.31.1.1.25.2|65|0 +1.3.6.1.2.1.4.31.1.1.26.1|65|0 +1.3.6.1.2.1.4.31.1.1.26.2|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.27.2|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.28.2|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.29.2|65|0 +1.3.6.1.2.1.4.31.1.1.30.1|65|1687 +1.3.6.1.2.1.4.31.1.1.30.2|65|138 +1.3.6.1.2.1.4.31.1.1.31.1|70|1687 +1.3.6.1.2.1.4.31.1.1.31.2|70|138 +1.3.6.1.2.1.4.31.1.1.32.1|65|780734 +1.3.6.1.2.1.4.31.1.1.32.2|65|29547 +1.3.6.1.2.1.4.31.1.1.33.1|70|780734 +1.3.6.1.2.1.4.31.1.1.33.2|70|29547 +1.3.6.1.2.1.4.31.1.1.34.1|65|343 +1.3.6.1.2.1.4.31.1.1.34.2|65|281 +1.3.6.1.2.1.4.31.1.1.35.1|70|343 +1.3.6.1.2.1.4.31.1.1.35.2|70|281 +1.3.6.1.2.1.4.31.1.1.36.1|65|87468 +1.3.6.1.2.1.4.31.1.1.36.2|65|62462 +1.3.6.1.2.1.4.31.1.1.37.1|70|87468 +1.3.6.1.2.1.4.31.1.1.37.2|70|62462 +1.3.6.1.2.1.4.31.1.1.38.1|65|137 +1.3.6.1.2.1.4.31.1.1.38.2|65|110 +1.3.6.1.2.1.4.31.1.1.39.1|70|137 +1.3.6.1.2.1.4.31.1.1.39.2|70|110 +1.3.6.1.2.1.4.31.1.1.40.1|65|28980 +1.3.6.1.2.1.4.31.1.1.40.2|65|27383 +1.3.6.1.2.1.4.31.1.1.41.1|70|28980 +1.3.6.1.2.1.4.31.1.1.41.2|70|27383 +1.3.6.1.2.1.4.31.1.1.42.1|65|150 +1.3.6.1.2.1.4.31.1.1.43.1|70|150 +1.3.6.1.2.1.4.31.1.1.44.1|65|48 +1.3.6.1.2.1.4.31.1.1.45.1|70|48 +1.3.6.1.2.1.4.31.1.1.46.1|67|0 +1.3.6.1.2.1.4.31.1.1.46.2|67|0 +1.3.6.1.2.1.4.31.1.1.47.1|66|60000 +1.3.6.1.2.1.4.31.1.1.47.2|66|60000 +1.3.6.1.2.1.5.1.0|65|25 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|10 +1.3.6.1.2.1.5.4.0|65|0 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|15 +1.3.6.1.2.1.5.9.0|65|0 +1.3.6.1.2.1.5.10.0|65|0 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|21 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|6 +1.3.6.1.2.1.5.17.0|65|0 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|0 +1.3.6.1.2.1.5.22.0|65|15 +1.3.6.1.2.1.5.23.0|65|0 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.5.29.1.2.1|65|25 +1.3.6.1.2.1.5.29.1.2.2|65|159 +1.3.6.1.2.1.5.29.1.3.1|65|0 +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|21 +1.3.6.1.2.1.5.29.1.4.2|65|38 +1.3.6.1.2.1.5.29.1.5.1|65|0 +1.3.6.1.2.1.5.29.1.5.2|65|0 +1.3.6.1.2.1.5.30.1.3.1.3|65|10 +1.3.6.1.2.1.5.30.1.3.1.8|65|15 +1.3.6.1.2.1.5.30.1.3.2.130|65|1 +1.3.6.1.2.1.5.30.1.3.2.134|65|137 +1.3.6.1.2.1.5.30.1.3.2.135|65|14 +1.3.6.1.2.1.5.30.1.3.2.136|65|7 +1.3.6.1.2.1.5.30.1.4.1.0|65|15 +1.3.6.1.2.1.5.30.1.4.1.3|65|6 +1.3.6.1.2.1.5.30.1.4.2.133|65|1 +1.3.6.1.2.1.5.30.1.4.2.135|65|10 +1.3.6.1.2.1.5.30.1.4.2.136|65|14 +1.3.6.1.2.1.5.30.1.4.2.143|65|13 +1.3.6.1.2.1.6.5.0|65|6 +1.3.6.1.2.1.6.6.0|65|16 +1.3.6.1.2.1.6.7.0|65|6 +1.3.6.1.2.1.6.8.0|65|0 +1.3.6.1.2.1.6.9.0|66|9 +1.3.6.1.2.1.6.10.0|65|1093 +1.3.6.1.2.1.6.11.0|65|1062 +1.3.6.1.2.1.6.12.0|65|0 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|238 +1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.21|66|6386 +1.3.6.1.2.1.7.1.0|65|1289 +1.3.6.1.2.1.7.2.0|65|6 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|1066 +1.3.6.1.2.1.11.1.0|65|788 +1.3.6.1.2.1.11.2.0|65|787 +1.3.6.1.2.1.11.3.0|65|0 +1.3.6.1.2.1.11.4.0|65|0 +1.3.6.1.2.1.11.5.0|65|0 +1.3.6.1.2.1.11.6.0|65|0 +1.3.6.1.2.1.11.8.0|65|0 +1.3.6.1.2.1.11.9.0|65|0 +1.3.6.1.2.1.11.10.0|65|0 +1.3.6.1.2.1.11.11.0|65|0 +1.3.6.1.2.1.11.12.0|65|0 +1.3.6.1.2.1.11.13.0|65|5934 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|207 +1.3.6.1.2.1.11.16.0|65|23 +1.3.6.1.2.1.11.17.0|65|0 +1.3.6.1.2.1.11.18.0|65|0 +1.3.6.1.2.1.11.19.0|65|0 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|0 +1.3.6.1.2.1.11.22.0|65|0 +1.3.6.1.2.1.11.24.0|65|0 +1.3.6.1.2.1.11.25.0|65|0 +1.3.6.1.2.1.11.26.0|65|0 +1.3.6.1.2.1.11.27.0|65|0 +1.3.6.1.2.1.11.28.0|65|789 +1.3.6.1.2.1.11.29.0|65|0 +1.3.6.1.2.1.11.30.0|2|2 +1.3.6.1.2.1.11.31.0|65|0 +1.3.6.1.2.1.11.32.0|65|0 +1.3.6.1.2.1.25.1.1.0|67|61495 +1.3.6.1.2.1.25.1.5.0|66|0 +1.3.6.1.2.1.25.1.6.0|66|177 +1.3.6.1.2.1.25.2.2.0|2|247852 +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.36|2|36 +1.3.6.1.2.1.25.2.3.1.1.37|2|37 +1.3.6.1.2.1.25.2.3.1.1.38|2|38 +1.3.6.1.2.1.25.2.3.1.1.41|2|41 +1.3.6.1.2.1.25.2.3.1.1.42|2|42 +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.36|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.37|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.38|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.41|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.42|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|/ +1.3.6.1.2.1.25.2.3.1.3.36|4|/tmp +1.3.6.1.2.1.25.2.3.1.3.37|4|/run +1.3.6.1.2.1.25.2.3.1.3.38|4|/dev/shm +1.3.6.1.2.1.25.2.3.1.3.41|4|/volume1 +1.3.6.1.2.1.25.2.3.1.3.42|4|/volume1/LectureVideo/Video +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.36|2|4096 +1.3.6.1.2.1.25.2.3.1.4.37|2|4096 +1.3.6.1.2.1.25.2.3.1.4.38|2|4096 +1.3.6.1.2.1.25.2.3.1.4.41|2|4096 +1.3.6.1.2.1.25.2.3.1.4.42|2|4096 +1.3.6.1.2.1.25.2.3.1.5.1|2|247852 +1.3.6.1.2.1.25.2.3.1.5.3|2|2344936 +1.3.6.1.2.1.25.2.3.1.5.6|2|247852 +1.3.6.1.2.1.25.2.3.1.5.7|2|91880 +1.3.6.1.2.1.25.2.3.1.5.8|2|21300 +1.3.6.1.2.1.25.2.3.1.5.10|2|2097084 +1.3.6.1.2.1.25.2.3.1.5.31|2|612766 +1.3.6.1.2.1.25.2.3.1.5.36|2|30981 +1.3.6.1.2.1.25.2.3.1.5.37|2|30981 +1.3.6.1.2.1.25.2.3.1.5.38|2|30981 +1.3.6.1.2.1.25.2.3.1.5.41|2|479550230 +1.3.6.1.2.1.25.2.3.1.5.42|2|479550230 +1.3.6.1.2.1.25.2.3.1.6.1|2|233132 +1.3.6.1.2.1.25.2.3.1.6.3|2|237752 +1.3.6.1.2.1.25.2.3.1.6.6|2|7176 +1.3.6.1.2.1.25.2.3.1.6.7|2|91880 +1.3.6.1.2.1.25.2.3.1.6.8|2|21300 +1.3.6.1.2.1.25.2.3.1.6.10|2|4620 +1.3.6.1.2.1.25.2.3.1.6.31|2|234393 +1.3.6.1.2.1.25.2.3.1.6.36|2|194 +1.3.6.1.2.1.25.2.3.1.6.37|2|519 +1.3.6.1.2.1.25.2.3.1.6.38|2|1 +1.3.6.1.2.1.25.2.3.1.6.41|2|410480930 +1.3.6.1.2.1.25.2.3.1.6.42|2|410480930 +1.3.6.1.2.1.25.3.2.1.1.196608|2|196608 +1.3.6.1.2.1.25.3.2.1.1.262145|2|262145 +1.3.6.1.2.1.25.3.2.1.1.262146|2|262146 +1.3.6.1.2.1.25.3.2.1.1.262147|2|262147 +1.3.6.1.2.1.25.3.2.1.1.393216|2|393216 +1.3.6.1.2.1.25.3.2.1.1.393232|2|393232 +1.3.6.1.2.1.25.3.2.1.1.393233|2|393233 +1.3.6.1.2.1.25.3.2.1.1.393248|2|393248 +1.3.6.1.2.1.25.3.2.1.1.393249|2|393249 +1.3.6.1.2.1.25.3.2.1.1.393250|2|393250 +1.3.6.1.2.1.25.3.2.1.1.393280|2|393280 +1.3.6.1.2.1.25.3.2.1.1.786432|2|786432 +1.3.6.1.2.1.25.3.2.1.2.196608|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.262145|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262146|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262147|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.393216|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393232|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393233|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393248|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393249|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393250|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.393280|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.786432|6|1.3.6.1.2.1.25.3.1.12 +1.3.6.1.2.1.25.3.2.1.3.196608|4| +1.3.6.1.2.1.25.3.2.1.3.262145|4|network interface lo +1.3.6.1.2.1.25.3.2.1.3.262146|4|network interface eth0 +1.3.6.1.2.1.25.3.2.1.3.262147|4|network interface sit0 +1.3.6.1.2.1.25.3.2.1.3.393216|4|WDC WD20EURX-63T0FY0 +1.3.6.1.2.1.25.3.2.1.3.393232|4|SCSI disk (/dev/sda) +1.3.6.1.2.1.25.3.2.1.3.393233|4|SCSI disk (/dev/sdb) +1.3.6.1.2.1.25.3.2.1.3.393248|4|RAID disk (/dev/md0) +1.3.6.1.2.1.25.3.2.1.3.393249|4|RAID disk (/dev/md1) +1.3.6.1.2.1.25.3.2.1.3.393250|4|RAID disk (/dev/md2) +1.3.6.1.2.1.25.3.2.1.3.393280|4|LVM volume (vg1000-lv) +1.3.6.1.2.1.25.3.2.1.3.786432|4|Guessing that there's a floating point co-processor +1.3.6.1.2.1.25.3.2.1.4.196608|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262145|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262146|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262147|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393216|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393232|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393233|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393248|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393249|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393250|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.393280|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.786432|6|0.0 +1.3.6.1.2.1.25.3.2.1.5.262145|2|2 +1.3.6.1.2.1.25.3.2.1.5.262146|2|2 +1.3.6.1.2.1.25.3.2.1.5.262147|2|5 +1.3.6.1.2.1.25.3.2.1.6.262145|65|0 +1.3.6.1.2.1.25.3.2.1.6.262146|65|0 +1.3.6.1.2.1.25.3.2.1.6.262147|65|0 +1.3.6.1.2.1.25.3.3.1.1.196608|6|0.0 +1.3.6.1.2.1.25.3.3.1.2.196608|2|2 +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|sit0 +1.3.6.1.2.1.31.1.1.1.2.1|65|0 +1.3.6.1.2.1.31.1.1.1.2.2|65|0 +1.3.6.1.2.1.31.1.1.1.2.3|65|0 +1.3.6.1.2.1.31.1.1.1.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.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.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.6.1|70|1248 +1.3.6.1.2.1.31.1.1.1.6.2|70|393191 +1.3.6.1.2.1.31.1.1.1.6.3|70|0 +1.3.6.1.2.1.31.1.1.1.7.1|70|16 +1.3.6.1.2.1.31.1.1.1.7.2|70|3626 +1.3.6.1.2.1.31.1.1.1.7.3|70|0 +1.3.6.1.2.1.31.1.1.1.8.1|70|0 +1.3.6.1.2.1.31.1.1.1.8.2|70|0 +1.3.6.1.2.1.31.1.1.1.8.3|70|0 +1.3.6.1.2.1.31.1.1.1.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.10.1|70|1248 +1.3.6.1.2.1.31.1.1.1.10.2|70|853137 +1.3.6.1.2.1.31.1.1.1.10.3|70|0 +1.3.6.1.2.1.31.1.1.1.11.1|70|16 +1.3.6.1.2.1.31.1.1.1.11.2|70|1969 +1.3.6.1.2.1.31.1.1.1.11.3|70|0 +1.3.6.1.2.1.31.1.1.1.12.1|70|0 +1.3.6.1.2.1.31.1.1.1.12.2|70|0 +1.3.6.1.2.1.31.1.1.1.12.3|70|0 +1.3.6.1.2.1.31.1.1.1.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.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.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.17.1|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.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.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.4.1.2021.4.3.0|2|2097084 +1.3.6.1.4.1.2021.4.4.0|2|2092464 +1.3.6.1.4.1.2021.4.5.0|2|247852 +1.3.6.1.4.1.2021.4.14.0|2|7176 +1.3.6.1.4.1.2021.4.15.0|2|91876 +1.3.6.1.4.1.2021.10.1.5.1|2|9 +1.3.6.1.4.1.2021.10.1.5.2|2|330 +1.3.6.1.4.1.2021.10.1.5.3|2|292 +1.3.6.1.4.1.2021.11.1.0|2|1 +1.3.6.1.4.1.2021.11.2.0|4|systemStats +1.3.6.1.4.1.2021.11.3.0|2|0 +1.3.6.1.4.1.2021.11.4.0|2|0 +1.3.6.1.4.1.2021.11.5.0|2|0 +1.3.6.1.4.1.2021.11.6.0|2|0 +1.3.6.1.4.1.2021.11.7.0|2|2 +1.3.6.1.4.1.2021.11.8.0|2|9 +1.3.6.1.4.1.2021.11.9.0|2|0 +1.3.6.1.4.1.2021.11.10.0|2|1 +1.3.6.1.4.1.2021.11.11.0|2|97 +1.3.6.1.4.1.2021.11.50.0|65|20108 +1.3.6.1.4.1.2021.11.51.0|65|321 +1.3.6.1.4.1.2021.11.52.0|65|9759 +1.3.6.1.4.1.2021.11.53.0|65|31332 +1.3.6.1.4.1.2021.11.54.0|65|1513 +1.3.6.1.4.1.2021.11.55.0|65|0 +1.3.6.1.4.1.2021.11.56.0|65|0 +1.3.6.1.4.1.2021.11.57.0|65|0 +1.3.6.1.4.1.2021.11.58.0|65|0 +1.3.6.1.4.1.2021.11.59.0|65|78441 +1.3.6.1.4.1.2021.11.60.0|65|257114 +1.3.6.1.4.1.2021.11.61.0|65|222 +1.3.6.1.4.1.2021.11.62.0|65|0 +1.3.6.1.4.1.2021.11.63.0|65|0 +1.3.6.1.4.1.2021.11.64.0|65|0 +1.3.6.1.4.1.2021.11.65.0|65|0 +1.3.6.1.4.1.2021.11.66.0|65|0 +1.3.6.1.4.1.2021.11.67.0|2|0 +1.3.6.1.4.1.6574.1.1.0|2|1 +1.3.6.1.4.1.6574.1.2.0|2|47 +1.3.6.1.4.1.6574.1.3.0|2|1 +1.3.6.1.4.1.6574.1.4.1.0|2|1 +1.3.6.1.4.1.6574.1.4.2.0|2|1 +1.3.6.1.4.1.6574.1.5.1.0|4|DS214se +1.3.6.1.4.1.6574.1.5.2.0|4|139M8N0094 +1.3.6.1.4.1.6574.1.5.3.0|4|DSM 6.2-25426 +1.3.6.1.4.1.6574.1.5.4.0|2|2 +1.3.6.1.4.1.6574.2.1.1.5.0|2|1 +1.3.6.1.4.1.6574.2.1.1.5.1|2|1 +1.3.6.1.4.1.6574.2.1.1.6.0|2|35 +1.3.6.1.4.1.6574.2.1.1.6.1|2|37 +1.3.6.1.4.1.6574.3.1.1.1.0|2|0 +1.3.6.1.4.1.6574.3.1.1.2.0|4|Volume 1 +1.3.6.1.4.1.6574.3.1.1.3.0|2|1 +1.3.6.1.4.1.6574.3.1.1.4.0|70|282802995200 +1.3.6.1.4.1.6574.3.1.1.5.0|70|1964237742080 +1.3.6.1.6.3.10.2.1.3.0|2|469