Improved support for Racom Ray radios (#9279)

* update os polling for ray

I changed hardware detection, because in old format i got a hostname instead of hardware. I added features tab also.

* Added wireless rate sensors

I added sensors for Netbitrate and Maxbirate

* deleted old ray.png

* added better resolution logo for ray

* Update Ray.php

* Delete ray.png

* Add files via upload

* Delete ray.svg

* added ray.svg logo

* update ray.snmprec

* Update Ray.php

* Updated json test data

* added state support for RAy Radios

* Update ray.snmprec
This commit is contained in:
jozefrebjak 2018-10-23 00:26:19 +02:00 committed by Tony Murray
parent 3fcf51d177
commit d111bd95f9
7 changed files with 661 additions and 10 deletions

View File

@ -32,6 +32,7 @@ use LibreNMS\Interfaces\Discovery\Sensors\WirelessFrequencyDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRssiDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessSnrDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRateDiscovery;
use LibreNMS\OS;
class Ray extends OS implements
@ -39,6 +40,7 @@ class Ray extends OS implements
WirelessFrequencyDiscovery,
WirelessPowerDiscovery,
WirelessRssiDiscovery,
WirelessRateDiscovery,
WirelessSnrDiscovery
{
/**
@ -120,4 +122,19 @@ class Ray extends OS implements
new WirelessSensor('snr', $this->getDeviceId(), $oid, 'racom', 1, 'CINR', null, 1, 10),
);
}
/**
* Discover wireless RATE. This is in bps. Type is rate.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors
*/
public function discoverWirelessRate()
{
$oid_bitrate = '.1.3.6.1.4.1.33555.1.2.1.13'; // RAY-MIB::netBitrate.0
$oid_maxbitrate = '.1.3.6.1.4.1.33555.1.2.1.14'; // RAY-MIB::maxNetBitrate.0
return array(
new WirelessSensor('rate', $this->getDeviceId(), $oid_bitrate, 'racom-netBitrate', 1, 'Net Bitrate', null, 1000, 1),
new WirelessSensor('rate', $this->getDeviceId(), $oid_maxbitrate, 'racom-maxNetBitrate', 2, 'Net Bitrate', null, 1000, 1),
);
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

2
html/images/os/ray.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 62 KiB

View File

@ -0,0 +1,158 @@
<?php
echo 'RAy Racom State';
// System Status (Value : na (0) unknown, ok (1) ok, warning (2) warning, alarm (3) alarm)
$state = snmp_get($device, "systemStatus.0", "-Ovqe", 'RAY-MIB');
if ($state) {
//Create State Index
$state_name = 'systemStatus';
create_state_index(
$state_name,
array(
array('value' => 0, 'generic' => 3, 'graph' => 0, 'descr' => 'Unknown'),
array('value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'Ok'),
array('value' => 2, 'generic' => 2, 'graph' => 0, 'descr' => 'Warning'),
array('value' => 3, 'generic' => 3, 'graph' => 0, 'descr' => 'Alarm'),
)
);
$sensor_index = 0;
discover_sensor(
$valid['sensor'],
'state',
$device,
'.1.3.6.1.4.1.33555.1.1.3.1',
$sensor_index,
$state_name,
'System Status',
1,
1,
null,
null,
null,
null,
$state,
'snmp',
0
);
//Create Sensor To State Index
create_sensor_to_state_index($device, $state_name, $sensor_index);
}
// Line Status (Value : na (0) unknown, ok (1) ok, analyzer (2) analyzer, connecting (3) connecting, searching (4)). Supported by RAy10 only.
$state = snmp_get($device, "lineStatus.0", "-Ovqe", 'RAY-MIB');
if ($state) {
//Create State Index
$state_name = 'lineStatus';
create_state_index(
$state_name,
array(
array('value' => 0, 'generic' => 3, 'graph' => 0, 'descr' => 'Unknown'),
array('value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'Ok'),
array('value' => 2, 'generic' => 2, 'graph' => 0, 'descr' => 'Analyzer'),
array('value' => 3, 'generic' => 2, 'graph' => 0, 'descr' => 'Connecting'),
array('value' => 4, 'generic' => 3, 'graph' => 0, 'descr' => 'Searching'),
)
);
$sensor_index = 1;
discover_sensor(
$valid['sensor'],
'state',
$device,
'.1.3.6.1.4.1.33555.1.1.3.2',
$sensor_index,
$state_name,
'Radio Link Status',
1,
1,
null,
null,
null,
null,
$state,
'snmp',
0
);
//Create Sensor To State Index
create_sensor_to_state_index($device, $state_name, $sensor_index);
}
// RF Power Status (Value : na (0) unknown, ok (1) ok, fail (2) fail)
$state = snmp_get($device, "rfPowerStatus.0", "-Ovqe", 'RAY-MIB');
if ($state) {
//Create State Index
$state_name = 'rfPowerStatus';
create_state_index(
$state_name,
array(
array('value' => 0, 'generic' => 3, 'graph' => 0, 'descr' => 'Unknown'),
array('value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'Ok'),
array('value' => 2, 'generic' => 3, 'graph' => 0, 'descr' => 'Failure'),
)
);
$sensor_index = 2;
discover_sensor(
$valid['sensor'],
'state',
$device,
'.1.3.6.1.4.1.33555.1.1.3.4',
$sensor_index,
$state_name,
'RF Power Status',
1,
1,
null,
null,
null,
null,
$state,
'snmp',
0
);
//Create Sensor To State Index
create_sensor_to_state_index($device, $state_name, $sensor_index);
}
// Peer station user Ethernet link Status (Value : na (0) unknown, up (1) up, down (2) down) Not supported by RAy2.
$state = snmp_get($device, "ethPeer.0", "-Ovqe", 'RAY-MIB');
if ($state) {
//Create State Index
$state_name = 'ethPeer';
create_state_index(
$state_name,
array(
array('value' => 0, 'generic' => 3, 'graph' => 0, 'descr' => 'Unknown'),
array('value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'Up'),
array('value' => 2, 'generic' => 3, 'graph' => 0, 'descr' => 'Down'),
)
);
$sensor_index = 3;
discover_sensor(
$valid['sensor'],
'state',
$device,
'.1.3.6.1.4.1.33555.1.1.3.6',
$sensor_index,
$state_name,
'Peer Station Ethernet Status',
1,
1,
null,
null,
null,
null,
$state,
'snmp',
0
);
//Create Sensor To State Index
create_sensor_to_state_index($device, $state_name, $sensor_index);
}

View File

@ -1,8 +1,7 @@
<?php
$ray_tmp = snmp_get_multi_oid($device, 'deviceName swVer serialNumber', '-OQs', 'RAY-MIB');
$hardware = $ray_tmp['deviceName'];
$ray_tmp = snmp_get_multi_oid($device, 'productName swVer serialNumber unitType', '-OQs', 'RAY-MIB');
$hardware = $ray_tmp['productName'];
$version = $ray_tmp['swVer'];
$serial = $ray_tmp['serialNumber'];
$features = $ray_tmp['unitType'];
unset($ray_tmp);

View File

@ -3,18 +3,414 @@
"discovery": {
"processors": [
{
"entPhysicalIndex": "0",
"hrDeviceIndex": "0",
"entPhysicalIndex": 0,
"hrDeviceIndex": 0,
"processor_oid": ".1.3.6.1.4.1.33555.1.1.5.1",
"processor_index": "0",
"processor_type": "ray",
"processor_usage": "42",
"processor_usage": 42,
"processor_descr": "Processor",
"processor_precision": "1",
"processor_perc_warn": "75"
"processor_precision": 1,
"processor_perc_warn": 75
}
]
},
"poller": "matches discovery"
},
"os": {
"discovery": {
"devices": [
{
"sysName": "",
"sysObjectID": ".1.3.6.1.4.1.33555.1.1",
"sysDescr": "RAy - Microwave Link",
"sysContact": null,
"version": null,
"hardware": null,
"features": null,
"location": null,
"os": "ray",
"type": "wireless",
"serial": null,
"icon": "ray.svg"
}
]
},
"poller": {
"devices": [
{
"sysName": "",
"sysObjectID": ".1.3.6.1.4.1.33555.1.1",
"sysDescr": "RAy - Microwave Link",
"sysContact": null,
"version": "4.1.51.0",
"hardware": "RAY10EU",
"features": "H1",
"location": null,
"os": "ray",
"type": "wireless",
"serial": "9879015",
"icon": "ray.svg"
}
]
}
},
"sensors": {
"discovery": {
"sensors": [
{
"sensor_deleted": 0,
"sensor_class": "temperature",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.33555.1.1.4.2",
"sensor_index": "0",
"sensor_type": " temperatureRadio",
"sensor_descr": "Internal Temp",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 22.75,
"sensor_limit": 42.75,
"sensor_limit_warn": null,
"sensor_limit_low": 12.75,
"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": "voltage",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.33555.1.1.4.3",
"sensor_index": "0",
"sensor_type": "voltageUnit",
"sensor_descr": "Voltage",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 50.299999999999997,
"sensor_limit": 57.844999999999999,
"sensor_limit_warn": null,
"sensor_limit_low": 42.755000000000003,
"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"
},
"wireless": {
"discovery": {
"wireless_sensors": [
{
"sensor_deleted": 0,
"sensor_class": "rate",
"sensor_index": "1",
"sensor_type": "racom-netBitrate",
"sensor_descr": "Net Bitrate",
"sensor_divisor": 1,
"sensor_multiplier": 1000,
"sensor_aggregator": "sum",
"sensor_current": 170690000,
"sensor_prev": null,
"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_oids": "[\".1.3.6.1.4.1.33555.1.2.1.13\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "rate",
"sensor_index": "2",
"sensor_type": "racom-maxNetBitrate",
"sensor_descr": "Net Bitrate",
"sensor_divisor": 1,
"sensor_multiplier": 1000,
"sensor_aggregator": "sum",
"sensor_current": 170690000,
"sensor_prev": null,
"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_oids": "[\".1.3.6.1.4.1.33555.1.2.1.14\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "snr",
"sensor_index": "1",
"sensor_type": "racom",
"sensor_descr": "CINR",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 29.5,
"sensor_prev": null,
"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_oids": "[\".1.3.6.1.4.1.33555.1.3.2.2\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "rssi",
"sensor_index": "1",
"sensor_type": "racom",
"sensor_descr": "RSSI",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -60.899999999999999,
"sensor_prev": null,
"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_oids": "[\".1.3.6.1.4.1.33555.1.3.2.1\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "racom-pow-conf",
"sensor_descr": "Tx Power Configured",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 10,
"sensor_prev": null,
"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_oids": "[\".1.3.6.1.4.1.33555.1.2.1.12\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "frequency",
"sensor_index": "1",
"sensor_type": "racom-tx",
"sensor_descr": "TX Frequency",
"sensor_divisor": 1000,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 10518,
"sensor_prev": null,
"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_oids": "[\".1.3.6.1.4.1.33555.1.2.1.4\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "frequency",
"sensor_index": "1",
"sensor_type": "racom-rx",
"sensor_descr": "RX Frequency",
"sensor_divisor": 1000,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 10168,
"sensor_prev": null,
"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_oids": "[\".1.3.6.1.4.1.33555.1.2.1.3\"]"
}
]
},
"poller": {
"wireless_sensors": [
{
"sensor_deleted": 0,
"sensor_class": "rate",
"sensor_index": "1",
"sensor_type": "racom-netBitrate",
"sensor_descr": "Net Bitrate",
"sensor_divisor": 1,
"sensor_multiplier": 1000,
"sensor_aggregator": "sum",
"sensor_current": 170690000,
"sensor_prev": 170690000,
"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_oids": "[\".1.3.6.1.4.1.33555.1.2.1.13\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "rate",
"sensor_index": "2",
"sensor_type": "racom-maxNetBitrate",
"sensor_descr": "Net Bitrate",
"sensor_divisor": 1,
"sensor_multiplier": 1000,
"sensor_aggregator": "sum",
"sensor_current": 170690000,
"sensor_prev": 170690000,
"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_oids": "[\".1.3.6.1.4.1.33555.1.2.1.14\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "snr",
"sensor_index": "1",
"sensor_type": "racom",
"sensor_descr": "CINR",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 29.5,
"sensor_prev": 29.5,
"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_oids": "[\".1.3.6.1.4.1.33555.1.3.2.2\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "rssi",
"sensor_index": "1",
"sensor_type": "racom",
"sensor_descr": "RSSI",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -60.899999999999999,
"sensor_prev": -60.899999999999999,
"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_oids": "[\".1.3.6.1.4.1.33555.1.3.2.1\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": "1",
"sensor_type": "racom-pow-conf",
"sensor_descr": "Tx Power Configured",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 10,
"sensor_prev": 10,
"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_oids": "[\".1.3.6.1.4.1.33555.1.2.1.12\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "frequency",
"sensor_index": "1",
"sensor_type": "racom-tx",
"sensor_descr": "TX Frequency",
"sensor_divisor": 1000,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 10518,
"sensor_prev": 10518,
"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_oids": "[\".1.3.6.1.4.1.33555.1.2.1.4\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "frequency",
"sensor_index": "1",
"sensor_type": "racom-rx",
"sensor_descr": "RX Frequency",
"sensor_divisor": 1000,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 10168,
"sensor_prev": 10168,
"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_oids": "[\".1.3.6.1.4.1.33555.1.2.1.3\"]"
}
]
}
}
}

View File

@ -1,3 +1,82 @@
1.3.6.1.2.1.1.1|4|RAy - Microwave link
1.3.6.1.2.1.1.1.0|4|RAy - Microwave Link
1.3.6.1.2.1.1.2|6|1.3.6.1.4.1.33555.1.1
1.3.6.1.2.1.1.2.0|6|.1.3.6.1.4.1.33555.1.1
1.3.6.1.2.1.1.3|67|33525349
1.3.6.1.2.1.1.5|4|RAY10EU_H
1.3.6.1.2.1.1.6|4|
1.3.6.1.2.1.11.1.0|65|75133
1.3.6.1.2.1.11.2.0|65|75132
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|460662
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|39527
1.3.6.1.2.1.11.16.0|65|19
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|75134
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.16.1.1.1.1.1|2|1
1.3.6.1.2.1.25.1.1|67|33525373
1.3.6.1.2.1.31.1.1.1.1.1|4|data
1.3.6.1.2.1.31.1.1.1.1.2|4|service
1.3.6.1.2.1.31.1.1.1.1.3|4|modemE
1.3.6.1.2.1.31.1.1.1.2.1|65|243513
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|214820
1.3.6.1.2.1.31.1.1.1.3.1|65|975
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|65057
1.3.6.1.2.1.31.1.1.1.4.1|65|220405
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|206578
1.3.6.1.2.1.31.1.1.1.5.1|65|65059
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|1086
1.3.6.1.2.1.31.1.1.1.6.1|70|1151311673
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|280064777
1.3.6.1.2.1.31.1.1.1.10.1|70|218959546
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|1216124297
1.3.6.1.2.1.31.1.1.1.15.1|66|1000
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.4.1.33555.1.1.1.1|4|RAY10EU
1.3.6.1.4.1.33555.1.1.1.2|66|9879015
1.3.6.1.4.1.33555.1.1.1.3|4|H1
1.3.6.1.4.1.33555.1.1.2.2|4|4.1.51.0
1.3.6.1.4.1.33555.1.1.3.1|2|1
1.3.6.1.4.1.33555.1.1.3.2|2|1
1.3.6.1.4.1.33555.1.1.3.4|2|1
1.3.6.1.4.1.33555.1.1.3.6|2|1
1.3.6.1.4.1.33555.1.1.4.1|2|4575
1.3.6.1.4.1.33555.1.1.4.2|2|2275
1.3.6.1.4.1.33555.1.1.4.3|2|503
1.3.6.1.4.1.33555.1.1.5.1|2|42
1.3.6.1.4.1.33555.1.2.1.3|66|10168000
1.3.6.1.4.1.33555.1.2.1.4|66|10518000
1.3.6.1.4.1.33555.1.2.1.12|2|10
1.3.6.1.4.1.33555.1.2.1.13|2|170690
1.3.6.1.4.1.33555.1.2.1.14|2|170690
1.3.6.1.4.1.33555.1.3.2.1|2|-609
1.3.6.1.4.1.33555.1.3.2.2|2|295