mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
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>
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* dsm.inc.php
|
||||
* Dsm.php
|
||||
*
|
||||
* -Description-
|
||||
*
|
||||
@@ -17,14 +17,28 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package LibreNMS
|
||||
* @link http://librenms.org
|
||||
* @copyright 2018 Nick Peelman
|
||||
* @copyright 2020 Daniel Baeza
|
||||
* @author Nick Peelman <nick@peelman.us>
|
||||
* @author Daniel Baeza <doctoruve@gmail.com>
|
||||
*/
|
||||
|
||||
$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);
|
||||
}
|
||||
}
|
||||
117
includes/definitions/discovery/dsm.yaml
Normal file
117
includes/definitions/discovery/dsm.yaml
Normal file
@@ -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' }
|
||||
@@ -1,170 +0,0 @@
|
||||
<?php
|
||||
|
||||
echo 'DSM States';
|
||||
|
||||
// System Status (Value : 1 Normal, 2 Failed)
|
||||
$state = snmp_get($device, "systemStatus.0", "-Ovqe", 'SYNOLOGY-SYSTEM-MIB');
|
||||
$cur_oid = '.1.3.6.1.4.1.6574.1.1.0';
|
||||
$index = '0';
|
||||
|
||||
if (is_numeric($state)) {
|
||||
//Create State Index
|
||||
$state_name = 'systemStatusState';
|
||||
$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 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);
|
||||
}
|
||||
}
|
||||
@@ -1,29 +0,0 @@
|
||||
<?php
|
||||
|
||||
echo 'DSM temperature ';
|
||||
|
||||
// DiskStation Temperature
|
||||
$diskstation_temperature_oid = '.1.3.6.1.4.1.6574.1.2.0';
|
||||
// DiskStation Disk Temperature
|
||||
$disk_temperature_oid = '.1.3.6.1.4.1.6574.2.1.1.6.';
|
||||
|
||||
// Get DiskStation temperature
|
||||
$diskstation_temperature = snmp_get($device, $diskstation_temperature_oid, '-Oqv');
|
||||
// Save the DiskStation temperature
|
||||
discover_sensor($valid['sensor'], 'temperature', $device, $diskstation_temperature_oid, '99', 'snmp', 'System Temperature', '1', '1', null, null, null, null, $diskstation_temperature);
|
||||
|
||||
// Get all disks in the device
|
||||
$disks = snmpwalk_cache_multi_oid($device, 'diskTable', [], 'SYNOLOGY-DISK-MIB');
|
||||
// Parse all disks in the device to get the temperature
|
||||
if (is_array($disks)) {
|
||||
foreach ($disks as $disk_number => $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);
|
||||
}
|
||||
}
|
||||
@@ -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];
|
||||
|
||||
2935
tests/data/dsm.json
2935
tests/data/dsm.json
File diff suppressed because it is too large
Load Diff
@@ -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"
|
||||
}
|
||||
}
|
||||
1528
tests/data/dsm_ds214se.json
Normal file
1528
tests/data/dsm_ds214se.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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"
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -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
|
||||
495
tests/snmpsim/dsm_ds214se.snmprec
Normal file
495
tests/snmpsim/dsm_ds214se.snmprec
Normal file
@@ -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|<private>
|
||||
1.3.6.1.2.1.1.5.0|4|<private>
|
||||
1.3.6.1.2.1.1.6.0|4|<private>
|
||||
1.3.6.1.2.1.2.2.1.2.1|4|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
|
||||
Reference in New Issue
Block a user