Added support for EDS 1Wire devices (#9740)

* EDS support

* EDS support

* EDS support

* EDS support

* EDS support (tests)

* EDS support

* EDS support

* Adding DS18B20 sensors

* Adding DS18B20 sensors

* read tables separatly in precache instead
This commit is contained in:
PipoCanaja 2019-02-07 21:16:15 +01:00 committed by Tony Murray
parent 6d55524484
commit ccd9973695
7 changed files with 5792 additions and 0 deletions

BIN
html/images/os/eds.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

View File

@ -0,0 +1,76 @@
mib: EDS-MIB
modules:
sensors:
pre-cache:
data:
- oid:
- owDeviceName
- owDS18B20Temperature
- owDeviceType
- owDS18B20Resolution
count:
data:
-
oid: owDeviceNumActive
value: owDeviceNumActive
num_oid: '.1.3.6.1.4.1.31440.10.2.1.{{ $index }}'
descr: '1wire devices'
index: 'NumActive'
temperature:
data:
-
oid: owDS18B20Temperature
value: owDS18B20Temperature
num_oid: '.1.3.6.1.4.1.31440.10.5.1.1.{{ $index }}'
descr: '#{{ $index }}: {{ $owDeviceName }}'
index: 'owDS18B20Temperature{{ $index }}'
skip_values:
-
oid: owDS18B20Resolution
op: '='
value: 0
state:
data:
-
oid: owDeviceType
value: owDeviceType
num_oid: '.1.3.6.1.4.1.31440.10.3.1.2.{{ $index }}'
descr: '#{{ $index }}: {{ $owDeviceName }}'
state_name: owDeviceType
group: 'Device Types'
index: 'DeviceType{{ $index }}'
skip_values:
-
oid: owDeviceType
op: '='
value: 0
states:
- { descr: owNone, graph: 0, value: 0, generic: 3 }
- { descr: owUnknown, graph: 0, value: 1, generic: 3 }
- { descr: owDS2406, graph: 0, value: 2, generic: 0 }
- { descr: owDS18B20, graph: 0, value: 3, generic: 0 }
- { descr: owDS18S20, graph: 0, value: 4, generic: 0 }
- { descr: owDS2438, graph: 0, value: 5, generic: 0 }
- { descr: owDS2423, graph: 0, value: 6, generic: 0 }
- { descr: owDS2408, graph: 0, value: 7, generic: 0 }
- { descr: owDS2450, graph: 0, value: 8, generic: 0 }
- { descr: owEDS0064, graph: 0, value: 9, generic: 0 }
- { descr: owEDS0065, graph: 0, value: 10, generic: 0 }
- { descr: owEDS0066, graph: 0, value: 11, generic: 0 }
- { descr: owEDS0067, graph: 0, value: 12, generic: 0 }
- { descr: owEDS0068, graph: 0, value: 13, generic: 0 }
- { descr: owEDS0069, graph: 0, value: 14, generic: 0 }
- { descr: owEDS0070, graph: 0, value: 15, generic: 0 }
- { descr: owEDS0071, graph: 0, value: 16, generic: 0 }
- { descr: owEDS0080, graph: 0, value: 17, generic: 0 }
- { descr: owEDS0082, graph: 0, value: 18, generic: 0 }
- { descr: owEDS0083, graph: 0, value: 19, generic: 0 }
- { descr: owEDS0085, graph: 0, value: 20, generic: 0 }
- { descr: owEDS0090, graph: 0, value: 21, generic: 0 }
- { descr: owEDS0091, graph: 0, value: 22, generic: 0 }
- { descr: owEDS0092, graph: 0, value: 23, generic: 0 }
- { descr: owDS28EA00, graph: 0, value: 24, generic: 0 }
- { descr: owEDS0050, graph: 0, value: 25, generic: 0 }
- { descr: chassis, graph: 0, value: 30, generic: 0 }

View File

@ -0,0 +1,19 @@
os: eds
text: 'EDS'
type: appliance
icon: eds
group: eds
mib_dir:
- eds
poller_modules:
bgp-peers: false
stp: false
wireless: false
discovery_modules:
bgp-peers: false
cisco-vrf-lite: false
stp: false
wireless: false
discovery:
- sysObjectID:
- .1.3.6.1.4.1.31440

View File

@ -0,0 +1,19 @@
<?php
//EDS-MIB::eCompanyName.0 = STRING: "Embedded Data Systems"
//EDS-MIB::eProductName.0 = STRING: "Ethernet to 1-wire Interface"
//EDS-MIB::eFirmwareVersion.0 = STRING: "2.10"
//EDS-MIB::eFirmwareDate.0 = STRING: "May 17 2017"
$oids = array (
'version' => 'eFirmwareVersion.0',
'hardware' => 'eProductName.0'
);
$data = snmp_get_multi_oid($device, $oids, '-OUQs', 'EDS-MIB');
foreach ($oids as $var => $oid) {
$$var = $data[$oid];
}
unset($data, $oids);

4533
mibs/eds/EDS-MIB Normal file

File diff suppressed because it is too large Load Diff

862
tests/data/eds.json Normal file
View File

@ -0,0 +1,862 @@
{
"os": {
"discovery": {
"devices": [
{
"sysName": "<private>",
"sysObjectID": ".1.3.6.1.4.1.31440",
"sysDescr": "Presents 1-wire devices over Ethernet using HTTP and SNMP",
"sysContact": null,
"version": null,
"hardware": null,
"features": null,
"os": "eds",
"type": "appliance",
"serial": null,
"icon": "eds.png",
"location": null
}
]
},
"poller": {
"devices": [
{
"sysName": "<private>",
"sysObjectID": ".1.3.6.1.4.1.31440",
"sysDescr": "Presents 1-wire devices over Ethernet using HTTP and SNMP",
"sysContact": null,
"version": "2.10",
"hardware": "Ethernet to 1-wire Interface",
"features": null,
"os": "eds",
"type": "appliance",
"serial": null,
"icon": "eds.png",
"location": null
}
]
}
},
"sensors": {
"discovery": {
"sensors": [
{
"sensor_deleted": 0,
"sensor_class": "count",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.31440.10.2.1.0",
"sensor_index": "NumActive",
"sensor_type": "eds",
"sensor_descr": "1wire devices",
"group": "",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 13,
"sensor_limit": 19.5,
"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": null
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.31440.10.3.1.2.0",
"sensor_index": "DeviceType0",
"sensor_type": "owDeviceType",
"sensor_descr": "#0: EDS0001",
"group": "Device Types",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 30,
"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": "owDeviceType"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.31440.10.3.1.2.1",
"sensor_index": "DeviceType1",
"sensor_type": "owDeviceType",
"sensor_descr": "#1: DS18B20",
"group": "Device Types",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 3,
"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": "owDeviceType"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.31440.10.3.1.2.10",
"sensor_index": "DeviceType10",
"sensor_type": "owDeviceType",
"sensor_descr": "#10: DS18B20",
"group": "Device Types",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 3,
"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": "owDeviceType"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.31440.10.3.1.2.11",
"sensor_index": "DeviceType11",
"sensor_type": "owDeviceType",
"sensor_descr": "#11: DS18B20",
"group": "Device Types",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 3,
"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": "owDeviceType"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.31440.10.3.1.2.12",
"sensor_index": "DeviceType12",
"sensor_type": "owDeviceType",
"sensor_descr": "#12: DS18B20",
"group": "Device Types",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 3,
"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": "owDeviceType"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.31440.10.3.1.2.2",
"sensor_index": "DeviceType2",
"sensor_type": "owDeviceType",
"sensor_descr": "#2: DS18B20",
"group": "Device Types",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 3,
"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": "owDeviceType"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.31440.10.3.1.2.3",
"sensor_index": "DeviceType3",
"sensor_type": "owDeviceType",
"sensor_descr": "#3: DS18B20",
"group": "Device Types",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 3,
"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": "owDeviceType"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.31440.10.3.1.2.4",
"sensor_index": "DeviceType4",
"sensor_type": "owDeviceType",
"sensor_descr": "#4: DS18B20",
"group": "Device Types",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 3,
"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": "owDeviceType"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.31440.10.3.1.2.5",
"sensor_index": "DeviceType5",
"sensor_type": "owDeviceType",
"sensor_descr": "#5: DS18B20",
"group": "Device Types",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 3,
"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": "owDeviceType"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.31440.10.3.1.2.6",
"sensor_index": "DeviceType6",
"sensor_type": "owDeviceType",
"sensor_descr": "#6: DS18B20",
"group": "Device Types",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 3,
"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": "owDeviceType"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.31440.10.3.1.2.7",
"sensor_index": "DeviceType7",
"sensor_type": "owDeviceType",
"sensor_descr": "#7: DS18B20",
"group": "Device Types",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 3,
"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": "owDeviceType"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.31440.10.3.1.2.8",
"sensor_index": "DeviceType8",
"sensor_type": "owDeviceType",
"sensor_descr": "#8: DS18B20",
"group": "Device Types",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 3,
"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": "owDeviceType"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.31440.10.3.1.2.9",
"sensor_index": "DeviceType9",
"sensor_type": "owDeviceType",
"sensor_descr": "#9: DS18B20",
"group": "Device Types",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 3,
"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": "owDeviceType"
},
{
"sensor_deleted": 0,
"sensor_class": "temperature",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.31440.10.5.1.1.1",
"sensor_index": "owDS18B20Temperature1",
"sensor_type": "eds",
"sensor_descr": "#1: DS18B20",
"group": "",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 17.5625,
"sensor_limit": 37.5625,
"sensor_limit_warn": null,
"sensor_limit_low": 7.5625,
"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.31440.10.5.1.1.10",
"sensor_index": "owDS18B20Temperature10",
"sensor_type": "eds",
"sensor_descr": "#10: DS18B20",
"group": "",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 20.5,
"sensor_limit": 40.5,
"sensor_limit_warn": null,
"sensor_limit_low": 10.5,
"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.31440.10.5.1.1.11",
"sensor_index": "owDS18B20Temperature11",
"sensor_type": "eds",
"sensor_descr": "#11: DS18B20",
"group": "",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 17.1875,
"sensor_limit": 37.1875,
"sensor_limit_warn": null,
"sensor_limit_low": 7.1875,
"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.31440.10.5.1.1.12",
"sensor_index": "owDS18B20Temperature12",
"sensor_type": "eds",
"sensor_descr": "#12: DS18B20",
"group": "",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 21.25,
"sensor_limit": 41.25,
"sensor_limit_warn": null,
"sensor_limit_low": 11.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.31440.10.5.1.1.2",
"sensor_index": "owDS18B20Temperature2",
"sensor_type": "eds",
"sensor_descr": "#2: DS18B20",
"group": "",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 1.75,
"sensor_limit": 21.75,
"sensor_limit_warn": null,
"sensor_limit_low": -8.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.31440.10.5.1.1.3",
"sensor_index": "owDS18B20Temperature3",
"sensor_type": "eds",
"sensor_descr": "#3: DS18B20",
"group": "",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2.0625,
"sensor_limit": 22.0625,
"sensor_limit_warn": null,
"sensor_limit_low": -7.9375,
"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.31440.10.5.1.1.4",
"sensor_index": "owDS18B20Temperature4",
"sensor_type": "eds",
"sensor_descr": "#4: DS18B20",
"group": "",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 17.375,
"sensor_limit": 37.375,
"sensor_limit_warn": null,
"sensor_limit_low": 7.375,
"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.31440.10.5.1.1.5",
"sensor_index": "owDS18B20Temperature5",
"sensor_type": "eds",
"sensor_descr": "#5: DS18B20",
"group": "",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 17.4375,
"sensor_limit": 37.4375,
"sensor_limit_warn": null,
"sensor_limit_low": 7.4375,
"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.31440.10.5.1.1.6",
"sensor_index": "owDS18B20Temperature6",
"sensor_type": "eds",
"sensor_descr": "#6: DS18B20",
"group": "",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 8.4375,
"sensor_limit": 28.4375,
"sensor_limit_warn": null,
"sensor_limit_low": -1.5625,
"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.31440.10.5.1.1.7",
"sensor_index": "owDS18B20Temperature7",
"sensor_type": "eds",
"sensor_descr": "#7: DS18B20",
"group": "",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 46.375,
"sensor_limit": 66.375,
"sensor_limit_warn": null,
"sensor_limit_low": 36.375,
"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.31440.10.5.1.1.8",
"sensor_index": "owDS18B20Temperature8",
"sensor_type": "eds",
"sensor_descr": "#8: DS18B20",
"group": "",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 9.3125,
"sensor_limit": 29.3125,
"sensor_limit_warn": null,
"sensor_limit_low": -0.6875,
"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.31440.10.5.1.1.9",
"sensor_index": "owDS18B20Temperature9",
"sensor_type": "eds",
"sensor_descr": "#9: DS18B20",
"group": "",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 19.8125,
"sensor_limit": 39.8125,
"sensor_limit_warn": null,
"sensor_limit_low": 9.8125,
"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": "owDeviceType",
"state_descr": "owNone",
"state_draw_graph": 0,
"state_value": 0,
"state_generic_value": 3
},
{
"state_name": "owDeviceType",
"state_descr": "owUnknown",
"state_draw_graph": 0,
"state_value": 1,
"state_generic_value": 3
},
{
"state_name": "owDeviceType",
"state_descr": "owDS2406",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owDS18B20",
"state_draw_graph": 0,
"state_value": 3,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owDS18S20",
"state_draw_graph": 0,
"state_value": 4,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owDS2438",
"state_draw_graph": 0,
"state_value": 5,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owDS2423",
"state_draw_graph": 0,
"state_value": 6,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owDS2408",
"state_draw_graph": 0,
"state_value": 7,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owDS2450",
"state_draw_graph": 0,
"state_value": 8,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owEDS0064",
"state_draw_graph": 0,
"state_value": 9,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owEDS0065",
"state_draw_graph": 0,
"state_value": 10,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owEDS0066",
"state_draw_graph": 0,
"state_value": 11,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owEDS0067",
"state_draw_graph": 0,
"state_value": 12,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owEDS0068",
"state_draw_graph": 0,
"state_value": 13,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owEDS0069",
"state_draw_graph": 0,
"state_value": 14,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owEDS0070",
"state_draw_graph": 0,
"state_value": 15,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owEDS0071",
"state_draw_graph": 0,
"state_value": 16,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owEDS0080",
"state_draw_graph": 0,
"state_value": 17,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owEDS0082",
"state_draw_graph": 0,
"state_value": 18,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owEDS0083",
"state_draw_graph": 0,
"state_value": 19,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owEDS0085",
"state_draw_graph": 0,
"state_value": 20,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owEDS0090",
"state_draw_graph": 0,
"state_value": 21,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owEDS0091",
"state_draw_graph": 0,
"state_value": 22,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owEDS0092",
"state_draw_graph": 0,
"state_value": 23,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owDS28EA00",
"state_draw_graph": 0,
"state_value": 24,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "owEDS0050",
"state_draw_graph": 0,
"state_value": 25,
"state_generic_value": 0
},
{
"state_name": "owDeviceType",
"state_descr": "chassis",
"state_draw_graph": 0,
"state_value": 30,
"state_generic_value": 0
}
]
},
"poller": "matches discovery"
}
}

283
tests/snmpsim/eds.snmprec Normal file
View File

@ -0,0 +1,283 @@
1.3.6.1.2.1.1.1.0|4|Presents 1-wire devices over Ethernet using HTTP and SNMP
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.31440
1.3.6.1.2.1.1.3.0|67|685722513
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.4.1.31440.1.2.0|4|Ethernet to 1-wire Interface
1.3.6.1.4.1.31440.1.4.0|4|2.10
1.3.6.1.4.1.31440.10.2.1.0|2|13
1.3.6.1.4.1.31440.10.3.1.1.0|2|0
1.3.6.1.4.1.31440.10.3.1.1.1|2|1
1.3.6.1.4.1.31440.10.3.1.1.2|2|2
1.3.6.1.4.1.31440.10.3.1.1.3|2|3
1.3.6.1.4.1.31440.10.3.1.1.4|2|4
1.3.6.1.4.1.31440.10.3.1.1.5|2|5
1.3.6.1.4.1.31440.10.3.1.1.6|2|6
1.3.6.1.4.1.31440.10.3.1.1.7|2|7
1.3.6.1.4.1.31440.10.3.1.1.8|2|8
1.3.6.1.4.1.31440.10.3.1.1.9|2|9
1.3.6.1.4.1.31440.10.3.1.1.10|2|10
1.3.6.1.4.1.31440.10.3.1.1.11|2|11
1.3.6.1.4.1.31440.10.3.1.1.12|2|12
1.3.6.1.4.1.31440.10.3.1.1.13|2|13
1.3.6.1.4.1.31440.10.3.1.1.14|2|14
1.3.6.1.4.1.31440.10.3.1.1.15|2|15
1.3.6.1.4.1.31440.10.3.1.1.16|2|16
1.3.6.1.4.1.31440.10.3.1.1.17|2|17
1.3.6.1.4.1.31440.10.3.1.1.18|2|18
1.3.6.1.4.1.31440.10.3.1.1.19|2|19
1.3.6.1.4.1.31440.10.3.1.1.20|2|20
1.3.6.1.4.1.31440.10.3.1.1.21|2|21
1.3.6.1.4.1.31440.10.3.1.1.22|2|22
1.3.6.1.4.1.31440.10.3.1.2.0|2|30
1.3.6.1.4.1.31440.10.3.1.2.1|2|3
1.3.6.1.4.1.31440.10.3.1.2.2|2|3
1.3.6.1.4.1.31440.10.3.1.2.3|2|3
1.3.6.1.4.1.31440.10.3.1.2.4|2|3
1.3.6.1.4.1.31440.10.3.1.2.5|2|3
1.3.6.1.4.1.31440.10.3.1.2.6|2|3
1.3.6.1.4.1.31440.10.3.1.2.7|2|3
1.3.6.1.4.1.31440.10.3.1.2.8|2|3
1.3.6.1.4.1.31440.10.3.1.2.9|2|3
1.3.6.1.4.1.31440.10.3.1.2.10|2|3
1.3.6.1.4.1.31440.10.3.1.2.11|2|3
1.3.6.1.4.1.31440.10.3.1.2.12|2|3
1.3.6.1.4.1.31440.10.3.1.2.13|2|0
1.3.6.1.4.1.31440.10.3.1.2.14|2|0
1.3.6.1.4.1.31440.10.3.1.2.15|2|0
1.3.6.1.4.1.31440.10.3.1.2.16|2|0
1.3.6.1.4.1.31440.10.3.1.2.17|2|0
1.3.6.1.4.1.31440.10.3.1.2.18|2|0
1.3.6.1.4.1.31440.10.3.1.2.19|2|0
1.3.6.1.4.1.31440.10.3.1.2.20|2|0
1.3.6.1.4.1.31440.10.3.1.2.21|2|0
1.3.6.1.4.1.31440.10.3.1.2.22|2|0
1.3.6.1.4.1.31440.10.3.1.3.0|4|EDS0001
1.3.6.1.4.1.31440.10.3.1.3.1|4|DS18B20
1.3.6.1.4.1.31440.10.3.1.3.2|4|DS18B20
1.3.6.1.4.1.31440.10.3.1.3.3|4|DS18B20
1.3.6.1.4.1.31440.10.3.1.3.4|4|DS18B20
1.3.6.1.4.1.31440.10.3.1.3.5|4|DS18B20
1.3.6.1.4.1.31440.10.3.1.3.6|4|DS18B20
1.3.6.1.4.1.31440.10.3.1.3.7|4|DS18B20
1.3.6.1.4.1.31440.10.3.1.3.8|4|DS18B20
1.3.6.1.4.1.31440.10.3.1.3.9|4|DS18B20
1.3.6.1.4.1.31440.10.3.1.3.10|4|DS18B20
1.3.6.1.4.1.31440.10.3.1.3.11|4|DS18B20
1.3.6.1.4.1.31440.10.3.1.3.12|4|DS18B20
1.3.6.1.4.1.31440.10.3.1.3.13|4x|00
1.3.6.1.4.1.31440.10.3.1.3.14|4x|00
1.3.6.1.4.1.31440.10.3.1.3.15|4x|00
1.3.6.1.4.1.31440.10.3.1.3.16|4x|00
1.3.6.1.4.1.31440.10.3.1.3.17|4x|00
1.3.6.1.4.1.31440.10.3.1.3.18|4x|00
1.3.6.1.4.1.31440.10.3.1.3.19|4x|00
1.3.6.1.4.1.31440.10.3.1.3.20|4x|00
1.3.6.1.4.1.31440.10.3.1.3.21|4x|00
1.3.6.1.4.1.31440.10.3.1.3.22|4x|00
1.3.6.1.4.1.31440.10.3.1.4.0|4|System parameters
1.3.6.1.4.1.31440.10.3.1.4.1|4|Programmable resolution thermometer
1.3.6.1.4.1.31440.10.3.1.4.2|4|Programmable resolution thermometer
1.3.6.1.4.1.31440.10.3.1.4.3|4|Programmable resolution thermometer
1.3.6.1.4.1.31440.10.3.1.4.4|4|Programmable resolution thermometer
1.3.6.1.4.1.31440.10.3.1.4.5|4|Programmable resolution thermometer
1.3.6.1.4.1.31440.10.3.1.4.6|4|Programmable resolution thermometer
1.3.6.1.4.1.31440.10.3.1.4.7|4|Programmable resolution thermometer
1.3.6.1.4.1.31440.10.3.1.4.8|4|Programmable resolution thermometer
1.3.6.1.4.1.31440.10.3.1.4.9|4|Programmable resolution thermometer
1.3.6.1.4.1.31440.10.3.1.4.10|4|Programmable resolution thermometer
1.3.6.1.4.1.31440.10.3.1.4.11|4|Programmable resolution thermometer
1.3.6.1.4.1.31440.10.3.1.4.12|4|Programmable resolution thermometer
1.3.6.1.4.1.31440.10.3.1.4.13|4x|00
1.3.6.1.4.1.31440.10.3.1.4.14|4x|00
1.3.6.1.4.1.31440.10.3.1.4.15|4x|00
1.3.6.1.4.1.31440.10.3.1.4.16|4x|00
1.3.6.1.4.1.31440.10.3.1.4.17|4x|00
1.3.6.1.4.1.31440.10.3.1.4.18|4x|00
1.3.6.1.4.1.31440.10.3.1.4.19|4x|00
1.3.6.1.4.1.31440.10.3.1.4.20|4x|00
1.3.6.1.4.1.31440.10.3.1.4.21|4x|00
1.3.6.1.4.1.31440.10.3.1.4.22|4x|00
1.3.6.1.4.1.31440.10.3.1.5.0|4|00
1.3.6.1.4.1.31440.10.3.1.5.1|4|28
1.3.6.1.4.1.31440.10.3.1.5.2|4|28
1.3.6.1.4.1.31440.10.3.1.5.3|4|28
1.3.6.1.4.1.31440.10.3.1.5.4|4|28
1.3.6.1.4.1.31440.10.3.1.5.5|4|28
1.3.6.1.4.1.31440.10.3.1.5.6|4|28
1.3.6.1.4.1.31440.10.3.1.5.7|4|28
1.3.6.1.4.1.31440.10.3.1.5.8|4|28
1.3.6.1.4.1.31440.10.3.1.5.9|4|28
1.3.6.1.4.1.31440.10.3.1.5.10|4|28
1.3.6.1.4.1.31440.10.3.1.5.11|4|28
1.3.6.1.4.1.31440.10.3.1.5.12|4|28
1.3.6.1.4.1.31440.10.3.1.5.13|4x|00
1.3.6.1.4.1.31440.10.3.1.5.14|4x|00
1.3.6.1.4.1.31440.10.3.1.5.15|4x|00
1.3.6.1.4.1.31440.10.3.1.5.16|4x|00
1.3.6.1.4.1.31440.10.3.1.5.17|4x|00
1.3.6.1.4.1.31440.10.3.1.5.18|4x|00
1.3.6.1.4.1.31440.10.3.1.5.19|4x|00
1.3.6.1.4.1.31440.10.3.1.5.20|4x|00
1.3.6.1.4.1.31440.10.3.1.5.21|4x|00
1.3.6.1.4.1.31440.10.3.1.5.22|4x|00
1.3.6.1.4.1.31440.10.3.1.6.0|4|0000000000000000
1.3.6.1.4.1.31440.10.3.1.6.1|4|95000004CABB4C28
1.3.6.1.4.1.31440.10.3.1.6.2|4|8C000004CBC9E328
1.3.6.1.4.1.31440.10.3.1.6.3|4|A2000004CD59DF28
1.3.6.1.4.1.31440.10.3.1.6.4|4|3F00000522735228
1.3.6.1.4.1.31440.10.3.1.6.5|4|B6000004F1429E28
1.3.6.1.4.1.31440.10.3.1.6.6|4|4C00000522209328
1.3.6.1.4.1.31440.10.3.1.6.7|4|B8000004CAE92728
1.3.6.1.4.1.31440.10.3.1.6.8|4|62000004CAF99F28
1.3.6.1.4.1.31440.10.3.1.6.9|4|3C000004CBBF3428
1.3.6.1.4.1.31440.10.3.1.6.10|4|88000004A79EA228
1.3.6.1.4.1.31440.10.3.1.6.11|4|43000004CBC77728
1.3.6.1.4.1.31440.10.3.1.6.12|4|A6000004CBA05928
1.3.6.1.4.1.31440.10.3.1.6.13|4x|00
1.3.6.1.4.1.31440.10.3.1.6.14|4x|00
1.3.6.1.4.1.31440.10.3.1.6.15|4x|00
1.3.6.1.4.1.31440.10.3.1.6.16|4x|00
1.3.6.1.4.1.31440.10.3.1.6.17|4x|00
1.3.6.1.4.1.31440.10.3.1.6.18|4x|00
1.3.6.1.4.1.31440.10.3.1.6.19|4x|00
1.3.6.1.4.1.31440.10.3.1.6.20|4x|00
1.3.6.1.4.1.31440.10.3.1.6.21|4x|00
1.3.6.1.4.1.31440.10.3.1.6.22|4x|00
1.3.6.1.4.1.31440.10.3.1.7.0|2|7
1.3.6.1.4.1.31440.10.3.1.7.1|2|7
1.3.6.1.4.1.31440.10.3.1.7.2|2|7
1.3.6.1.4.1.31440.10.3.1.7.3|2|7
1.3.6.1.4.1.31440.10.3.1.7.4|2|7
1.3.6.1.4.1.31440.10.3.1.7.5|2|7
1.3.6.1.4.1.31440.10.3.1.7.6|2|7
1.3.6.1.4.1.31440.10.3.1.7.7|2|7
1.3.6.1.4.1.31440.10.3.1.7.8|2|7
1.3.6.1.4.1.31440.10.3.1.7.9|2|7
1.3.6.1.4.1.31440.10.3.1.7.10|2|7
1.3.6.1.4.1.31440.10.3.1.7.11|2|7
1.3.6.1.4.1.31440.10.3.1.7.12|2|7
1.3.6.1.4.1.31440.10.3.1.7.13|2|0
1.3.6.1.4.1.31440.10.3.1.7.14|2|0
1.3.6.1.4.1.31440.10.3.1.7.15|2|0
1.3.6.1.4.1.31440.10.3.1.7.16|2|0
1.3.6.1.4.1.31440.10.3.1.7.17|2|0
1.3.6.1.4.1.31440.10.3.1.7.18|2|0
1.3.6.1.4.1.31440.10.3.1.7.19|2|0
1.3.6.1.4.1.31440.10.3.1.7.20|2|0
1.3.6.1.4.1.31440.10.3.1.7.21|2|0
1.3.6.1.4.1.31440.10.3.1.7.22|2|0
1.3.6.1.4.1.31440.10.5.1.1.0|4x|00
1.3.6.1.4.1.31440.10.5.1.1.1|4|17.5625
1.3.6.1.4.1.31440.10.5.1.1.2|4|1.7500
1.3.6.1.4.1.31440.10.5.1.1.3|4|2.0625
1.3.6.1.4.1.31440.10.5.1.1.4|4|17.3750
1.3.6.1.4.1.31440.10.5.1.1.5|4|17.4375
1.3.6.1.4.1.31440.10.5.1.1.6|4|8.4375
1.3.6.1.4.1.31440.10.5.1.1.7|4|46.3750
1.3.6.1.4.1.31440.10.5.1.1.8|4|9.3125
1.3.6.1.4.1.31440.10.5.1.1.9|4|19.8125
1.3.6.1.4.1.31440.10.5.1.1.10|4|20.5000
1.3.6.1.4.1.31440.10.5.1.1.11|4|17.1875
1.3.6.1.4.1.31440.10.5.1.1.12|4|21.2500
1.3.6.1.4.1.31440.10.5.1.1.13|4x|00
1.3.6.1.4.1.31440.10.5.1.1.14|4x|00
1.3.6.1.4.1.31440.10.5.1.1.15|4x|00
1.3.6.1.4.1.31440.10.5.1.1.16|4x|00
1.3.6.1.4.1.31440.10.5.1.1.17|4x|00
1.3.6.1.4.1.31440.10.5.1.1.18|4x|00
1.3.6.1.4.1.31440.10.5.1.1.19|4x|00
1.3.6.1.4.1.31440.10.5.1.1.20|4x|00
1.3.6.1.4.1.31440.10.5.1.1.21|4x|00
1.3.6.1.4.1.31440.10.5.1.1.22|4x|00
1.3.6.1.4.1.31440.10.5.1.2.0|2|0
1.3.6.1.4.1.31440.10.5.1.2.1|2|75
1.3.6.1.4.1.31440.10.5.1.2.2|2|75
1.3.6.1.4.1.31440.10.5.1.2.3|2|75
1.3.6.1.4.1.31440.10.5.1.2.4|2|75
1.3.6.1.4.1.31440.10.5.1.2.5|2|75
1.3.6.1.4.1.31440.10.5.1.2.6|2|75
1.3.6.1.4.1.31440.10.5.1.2.7|2|75
1.3.6.1.4.1.31440.10.5.1.2.8|2|75
1.3.6.1.4.1.31440.10.5.1.2.9|2|75
1.3.6.1.4.1.31440.10.5.1.2.10|2|75
1.3.6.1.4.1.31440.10.5.1.2.11|2|75
1.3.6.1.4.1.31440.10.5.1.2.12|2|75
1.3.6.1.4.1.31440.10.5.1.2.13|2|0
1.3.6.1.4.1.31440.10.5.1.2.14|2|0
1.3.6.1.4.1.31440.10.5.1.2.15|2|0
1.3.6.1.4.1.31440.10.5.1.2.16|2|0
1.3.6.1.4.1.31440.10.5.1.2.17|2|0
1.3.6.1.4.1.31440.10.5.1.2.18|2|0
1.3.6.1.4.1.31440.10.5.1.2.19|2|0
1.3.6.1.4.1.31440.10.5.1.2.20|2|0
1.3.6.1.4.1.31440.10.5.1.2.21|2|0
1.3.6.1.4.1.31440.10.5.1.2.22|2|0
1.3.6.1.4.1.31440.10.5.1.3.0|2|0
1.3.6.1.4.1.31440.10.5.1.3.1|2|70
1.3.6.1.4.1.31440.10.5.1.3.2|2|70
1.3.6.1.4.1.31440.10.5.1.3.3|2|70
1.3.6.1.4.1.31440.10.5.1.3.4|2|70
1.3.6.1.4.1.31440.10.5.1.3.5|2|70
1.3.6.1.4.1.31440.10.5.1.3.6|2|70
1.3.6.1.4.1.31440.10.5.1.3.7|2|70
1.3.6.1.4.1.31440.10.5.1.3.8|2|70
1.3.6.1.4.1.31440.10.5.1.3.9|2|70
1.3.6.1.4.1.31440.10.5.1.3.10|2|70
1.3.6.1.4.1.31440.10.5.1.3.11|2|70
1.3.6.1.4.1.31440.10.5.1.3.12|2|70
1.3.6.1.4.1.31440.10.5.1.3.13|2|0
1.3.6.1.4.1.31440.10.5.1.3.14|2|0
1.3.6.1.4.1.31440.10.5.1.3.15|2|0
1.3.6.1.4.1.31440.10.5.1.3.16|2|0
1.3.6.1.4.1.31440.10.5.1.3.17|2|0
1.3.6.1.4.1.31440.10.5.1.3.18|2|0
1.3.6.1.4.1.31440.10.5.1.3.19|2|0
1.3.6.1.4.1.31440.10.5.1.3.20|2|0
1.3.6.1.4.1.31440.10.5.1.3.21|2|0
1.3.6.1.4.1.31440.10.5.1.3.22|2|0
1.3.6.1.4.1.31440.10.5.1.4.0|2|0
1.3.6.1.4.1.31440.10.5.1.4.1|2|12
1.3.6.1.4.1.31440.10.5.1.4.2|2|12
1.3.6.1.4.1.31440.10.5.1.4.3|2|12
1.3.6.1.4.1.31440.10.5.1.4.4|2|12
1.3.6.1.4.1.31440.10.5.1.4.5|2|12
1.3.6.1.4.1.31440.10.5.1.4.6|2|12
1.3.6.1.4.1.31440.10.5.1.4.7|2|12
1.3.6.1.4.1.31440.10.5.1.4.8|2|12
1.3.6.1.4.1.31440.10.5.1.4.9|2|12
1.3.6.1.4.1.31440.10.5.1.4.10|2|12
1.3.6.1.4.1.31440.10.5.1.4.11|2|12
1.3.6.1.4.1.31440.10.5.1.4.12|2|12
1.3.6.1.4.1.31440.10.5.1.4.13|2|0
1.3.6.1.4.1.31440.10.5.1.4.14|2|0
1.3.6.1.4.1.31440.10.5.1.4.15|2|0
1.3.6.1.4.1.31440.10.5.1.4.16|2|0
1.3.6.1.4.1.31440.10.5.1.4.17|2|0
1.3.6.1.4.1.31440.10.5.1.4.18|2|0
1.3.6.1.4.1.31440.10.5.1.4.19|2|0
1.3.6.1.4.1.31440.10.5.1.4.20|2|0
1.3.6.1.4.1.31440.10.5.1.4.21|2|0
1.3.6.1.4.1.31440.10.5.1.4.22|2|0
1.3.6.1.4.1.31440.10.5.1.5.0|2|0
1.3.6.1.4.1.31440.10.5.1.5.1|2|255
1.3.6.1.4.1.31440.10.5.1.5.2|2|255
1.3.6.1.4.1.31440.10.5.1.5.3|2|255
1.3.6.1.4.1.31440.10.5.1.5.4|2|255
1.3.6.1.4.1.31440.10.5.1.5.5|2|255
1.3.6.1.4.1.31440.10.5.1.5.6|2|255
1.3.6.1.4.1.31440.10.5.1.5.7|2|255
1.3.6.1.4.1.31440.10.5.1.5.8|2|255
1.3.6.1.4.1.31440.10.5.1.5.9|2|255
1.3.6.1.4.1.31440.10.5.1.5.10|2|255
1.3.6.1.4.1.31440.10.5.1.5.11|2|255
1.3.6.1.4.1.31440.10.5.1.5.12|2|255
1.3.6.1.4.1.31440.10.5.1.5.13|2|0
1.3.6.1.4.1.31440.10.5.1.5.14|2|0
1.3.6.1.4.1.31440.10.5.1.5.15|2|0
1.3.6.1.4.1.31440.10.5.1.5.16|2|0
1.3.6.1.4.1.31440.10.5.1.5.17|2|0
1.3.6.1.4.1.31440.10.5.1.5.18|2|0
1.3.6.1.4.1.31440.10.5.1.5.19|2|0
1.3.6.1.4.1.31440.10.5.1.5.20|2|0
1.3.6.1.4.1.31440.10.5.1.5.21|2|0
1.3.6.1.4.1.31440.10.5.1.5.22|2|0