Added Teltonika Rutos-2xx wireless sensors (#10646)

* CodeClimate Fix

* Added Teltonika Wireless Sensors

* Removed HiveOS local changes

* cleanup

* Update Rutos2xx.php

* typo fix

* Blank Line Fix

* Travis FIX

* White Space Fix
This commit is contained in:
jozefrebjak
2019-10-07 15:16:51 +02:00
committed by Tony Murray
parent be04388137
commit f07651a2eb
3 changed files with 398 additions and 0 deletions

52
LibreNMS/OS/Rutos2xx.php Normal file
View File

@@ -0,0 +1,52 @@
<?php
/**
* Rutos2xx.php
*
* -Description-
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright 2019 Jozef Rebjak
* @author Jozef Rebjak <jozefrebjak@icloud.com>
*/
namespace LibreNMS\OS;
use LibreNMS\Device\WirelessSensor;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessSnrDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRssiDiscovery;
use LibreNMS\OS;
class Rutos2xx extends OS implements
WirelessSnrDiscovery,
WirelessRssiDiscovery
{
public function discoverWirelessSnr()
{
$oid = '.1.3.6.1.4.1.48690.2.22.0'; // TELTONIKA-MIB::SINR.0
return array(
new WirelessSensor('snr', $this->getDeviceId(), $oid, 'rutos-2xx', 1, 'SINR', null, -1, 1),
);
}
public function discoverWirelessRssi()
{
$oid = '.1.3.6.1.4.1.48690.2.23.0'; // TELTONIKA-MIB::RSRP.0
return array(
new WirelessSensor('rssi', $this->getDeviceId(), $oid, 'rutos-2xx', 1, 'RSRP', null, 1, 1),
);
}
}

View File

@@ -985,6 +985,111 @@
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
},
{
"port_descr_type": null,
"port_descr_descr": null,
"port_descr_circuit": null,
"port_descr_speed": null,
"port_descr_notes": null,
"ifDescr": "wwan0",
"ifName": "wwan0",
"portName": null,
"ifIndex": 10,
"ifSpeed": null,
"ifConnectorPresent": null,
"ifPromiscuousMode": null,
"ifHighSpeed": null,
"ifOperStatus": null,
"ifOperStatus_prev": null,
"ifAdminStatus": null,
"ifAdminStatus_prev": null,
"ifDuplex": null,
"ifMtu": null,
"ifType": "ethernetCsmacd",
"ifAlias": "wwan0",
"ifPhysAddress": null,
"ifHardType": null,
"ifLastChange": 0,
"ifVlan": "",
"ifTrunk": null,
"counter_in": null,
"counter_out": null,
"ignore": 0,
"disabled": 0,
"detailed": 0,
"deleted": 0,
"pagpOperationMode": null,
"pagpPortState": null,
"pagpPartnerDeviceId": null,
"pagpPartnerLearnMethod": null,
"pagpPartnerIfIndex": null,
"pagpPartnerGroupIfIndex": null,
"pagpPartnerDeviceName": null,
"pagpEthcOperationMode": null,
"pagpDeviceId": null,
"pagpGroupIfIndex": null,
"ifInUcastPkts": null,
"ifInUcastPkts_prev": null,
"ifInUcastPkts_delta": null,
"ifInUcastPkts_rate": null,
"ifOutUcastPkts": null,
"ifOutUcastPkts_prev": null,
"ifOutUcastPkts_delta": null,
"ifOutUcastPkts_rate": null,
"ifInErrors": null,
"ifInErrors_prev": null,
"ifInErrors_delta": null,
"ifInErrors_rate": null,
"ifOutErrors": null,
"ifOutErrors_prev": null,
"ifOutErrors_delta": null,
"ifOutErrors_rate": null,
"ifInOctets": null,
"ifInOctets_prev": null,
"ifInOctets_delta": null,
"ifInOctets_rate": null,
"ifOutOctets": null,
"ifOutOctets_prev": null,
"ifOutOctets_delta": null,
"ifOutOctets_rate": null,
"poll_prev": null,
"ifInNUcastPkts": null,
"ifInNUcastPkts_prev": null,
"ifInNUcastPkts_delta": null,
"ifInNUcastPkts_rate": null,
"ifOutNUcastPkts": null,
"ifOutNUcastPkts_prev": null,
"ifOutNUcastPkts_delta": null,
"ifOutNUcastPkts_rate": null,
"ifInDiscards": null,
"ifInDiscards_prev": null,
"ifInDiscards_delta": null,
"ifInDiscards_rate": null,
"ifOutDiscards": null,
"ifOutDiscards_prev": null,
"ifOutDiscards_delta": null,
"ifOutDiscards_rate": null,
"ifInUnknownProtos": null,
"ifInUnknownProtos_prev": null,
"ifInUnknownProtos_delta": null,
"ifInUnknownProtos_rate": null,
"ifInBroadcastPkts": null,
"ifInBroadcastPkts_prev": null,
"ifInBroadcastPkts_delta": null,
"ifInBroadcastPkts_rate": null,
"ifOutBroadcastPkts": null,
"ifOutBroadcastPkts_prev": null,
"ifOutBroadcastPkts_delta": null,
"ifOutBroadcastPkts_rate": null,
"ifInMulticastPkts": null,
"ifInMulticastPkts_prev": null,
"ifInMulticastPkts_delta": null,
"ifInMulticastPkts_rate": null,
"ifOutMulticastPkts": null,
"ifOutMulticastPkts_prev": null,
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
},
{
"port_descr_type": null,
"port_descr_descr": null,
@@ -2249,6 +2354,111 @@
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
},
{
"port_descr_type": null,
"port_descr_descr": null,
"port_descr_circuit": null,
"port_descr_speed": null,
"port_descr_notes": null,
"ifDescr": "wwan0",
"ifName": "wwan0",
"portName": null,
"ifIndex": 10,
"ifSpeed": null,
"ifConnectorPresent": "true",
"ifPromiscuousMode": "false",
"ifHighSpeed": 0,
"ifOperStatus": "up",
"ifOperStatus_prev": null,
"ifAdminStatus": "up",
"ifAdminStatus_prev": null,
"ifDuplex": null,
"ifMtu": 1500,
"ifType": "ethernetCsmacd",
"ifAlias": "wwan0",
"ifPhysAddress": "7e72647070a2",
"ifHardType": null,
"ifLastChange": 0,
"ifVlan": "",
"ifTrunk": null,
"counter_in": null,
"counter_out": null,
"ignore": 0,
"disabled": 0,
"detailed": 0,
"deleted": 0,
"pagpOperationMode": null,
"pagpPortState": null,
"pagpPartnerDeviceId": null,
"pagpPartnerLearnMethod": null,
"pagpPartnerIfIndex": null,
"pagpPartnerGroupIfIndex": null,
"pagpPartnerDeviceName": null,
"pagpEthcOperationMode": null,
"pagpDeviceId": null,
"pagpGroupIfIndex": null,
"ifInUcastPkts": 15187627,
"ifInUcastPkts_prev": 0,
"ifInUcastPkts_delta": null,
"ifInUcastPkts_rate": null,
"ifOutUcastPkts": 15343027,
"ifOutUcastPkts_prev": 0,
"ifOutUcastPkts_delta": null,
"ifOutUcastPkts_rate": null,
"ifInErrors": 0,
"ifInErrors_prev": 0,
"ifInErrors_delta": null,
"ifInErrors_rate": null,
"ifOutErrors": 0,
"ifOutErrors_prev": 0,
"ifOutErrors_delta": null,
"ifOutErrors_rate": null,
"ifInOctets": 3795089670,
"ifInOctets_prev": 0,
"ifInOctets_delta": null,
"ifInOctets_rate": null,
"ifOutOctets": 3663695811,
"ifOutOctets_prev": 0,
"ifOutOctets_delta": null,
"ifOutOctets_rate": null,
"poll_prev": null,
"ifInNUcastPkts": 0,
"ifInNUcastPkts_prev": 0,
"ifInNUcastPkts_delta": null,
"ifInNUcastPkts_rate": null,
"ifOutNUcastPkts": 0,
"ifOutNUcastPkts_prev": 0,
"ifOutNUcastPkts_delta": null,
"ifOutNUcastPkts_rate": null,
"ifInDiscards": 0,
"ifInDiscards_prev": 0,
"ifInDiscards_delta": null,
"ifInDiscards_rate": null,
"ifOutDiscards": 0,
"ifOutDiscards_prev": 0,
"ifOutDiscards_delta": null,
"ifOutDiscards_rate": null,
"ifInUnknownProtos": 0,
"ifInUnknownProtos_prev": 0,
"ifInUnknownProtos_delta": null,
"ifInUnknownProtos_rate": null,
"ifInBroadcastPkts": 0,
"ifInBroadcastPkts_prev": 0,
"ifInBroadcastPkts_delta": null,
"ifInBroadcastPkts_rate": null,
"ifOutBroadcastPkts": 0,
"ifOutBroadcastPkts_prev": 0,
"ifOutBroadcastPkts_delta": null,
"ifOutBroadcastPkts_rate": null,
"ifInMulticastPkts": 0,
"ifInMulticastPkts_prev": 0,
"ifInMulticastPkts_delta": null,
"ifInMulticastPkts_rate": null,
"ifOutMulticastPkts": 0,
"ifOutMulticastPkts_prev": 0,
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
},
{
"port_descr_type": null,
"port_descr_descr": null,
@@ -3176,5 +3386,99 @@
}
]
}
},
"wireless": {
"discovery": {
"wireless_sensors": [
{
"sensor_deleted": 0,
"sensor_class": "snr",
"sensor_index": "1",
"sensor_type": "rutos-2xx",
"sensor_descr": "SINR",
"sensor_divisor": 1,
"sensor_multiplier": -1,
"sensor_aggregator": "sum",
"sensor_current": -14.1,
"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.48690.2.22.0\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "rssi",
"sensor_index": "1",
"sensor_type": "rutos-2xx",
"sensor_descr": "RSRP",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -74,
"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.48690.2.23.0\"]"
}
]
},
"poller": {
"wireless_sensors": [
{
"sensor_deleted": 0,
"sensor_class": "snr",
"sensor_index": "1",
"sensor_type": "rutos-2xx",
"sensor_descr": "SINR",
"sensor_divisor": 1,
"sensor_multiplier": -1,
"sensor_aggregator": "sum",
"sensor_current": -14.1,
"sensor_prev": -14.1,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.48690.2.22.0\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "rssi",
"sensor_index": "1",
"sensor_type": "rutos-2xx",
"sensor_descr": "RSRP",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": -74,
"sensor_prev": -74,
"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.48690.2.23.0\"]"
}
]
}
}
}

View File

@@ -13,6 +13,7 @@
1.3.6.1.2.1.2.2.1.2.7|4|gre0
1.3.6.1.2.1.2.2.1.2.8|4|gretap0
1.3.6.1.2.1.2.2.1.2.9|4|ip6gre0
1.3.6.1.2.1.2.2.1.2.10|4|wwan0
1.3.6.1.2.1.2.2.1.2.11|4|wwan0
1.3.6.1.2.1.2.2.1.2.12|4|br-lan
1.3.6.1.2.1.2.2.1.2.13|4|wlan0
@@ -25,6 +26,7 @@
1.3.6.1.2.1.2.2.1.3.7|2|131
1.3.6.1.2.1.2.2.1.3.8|2|6
1.3.6.1.2.1.2.2.1.3.9|2|1
1.3.6.1.2.1.2.2.1.3.10|2|6
1.3.6.1.2.1.2.2.1.3.11|2|6
1.3.6.1.2.1.2.2.1.3.12|2|6
1.3.6.1.2.1.2.2.1.3.13|2|6
@@ -37,6 +39,7 @@
1.3.6.1.2.1.2.2.1.4.7|2|1476
1.3.6.1.2.1.2.2.1.4.8|2|1462
1.3.6.1.2.1.2.2.1.4.9|2|1448
1.3.6.1.2.1.2.2.1.4.10|2|1500
1.3.6.1.2.1.2.2.1.4.11|2|1500
1.3.6.1.2.1.2.2.1.4.12|2|1500
1.3.6.1.2.1.2.2.1.4.13|2|1500
@@ -49,6 +52,7 @@
1.3.6.1.2.1.2.2.1.6.7|4|
1.3.6.1.2.1.2.2.1.6.8|4|
1.3.6.1.2.1.2.2.1.6.9|4|
1.3.6.1.2.1.2.2.1.6.10|4x|7E72647070A2
1.3.6.1.2.1.2.2.1.6.11|4x|DACB7A46EBD4
1.3.6.1.2.1.2.2.1.6.12|4x|001E4222DF3F
1.3.6.1.2.1.2.2.1.6.13|4x|001E4222DF41
@@ -61,6 +65,7 @@
1.3.6.1.2.1.2.2.1.7.7|2|2
1.3.6.1.2.1.2.2.1.7.8|2|2
1.3.6.1.2.1.2.2.1.7.9|2|2
1.3.6.1.2.1.2.2.1.7.10|2|1
1.3.6.1.2.1.2.2.1.7.11|2|1
1.3.6.1.2.1.2.2.1.7.12|2|1
1.3.6.1.2.1.2.2.1.7.13|2|1
@@ -73,6 +78,7 @@
1.3.6.1.2.1.2.2.1.8.7|2|2
1.3.6.1.2.1.2.2.1.8.8|2|2
1.3.6.1.2.1.2.2.1.8.9|2|2
1.3.6.1.2.1.2.2.1.8.10|2|1
1.3.6.1.2.1.2.2.1.8.11|2|1
1.3.6.1.2.1.2.2.1.8.12|2|1
1.3.6.1.2.1.2.2.1.8.13|2|1
@@ -85,6 +91,7 @@
1.3.6.1.2.1.2.2.1.9.7|67|0
1.3.6.1.2.1.2.2.1.9.8|67|0
1.3.6.1.2.1.2.2.1.9.9|67|0
1.3.6.1.2.1.2.2.1.9.10|67|0
1.3.6.1.2.1.2.2.1.9.11|67|0
1.3.6.1.2.1.2.2.1.9.12|67|4607782
1.3.6.1.2.1.2.2.1.9.13|67|3227203
@@ -97,6 +104,7 @@
1.3.6.1.2.1.2.2.1.13.7|65|0
1.3.6.1.2.1.2.2.1.13.8|65|0
1.3.6.1.2.1.2.2.1.13.9|65|0
1.3.6.1.2.1.2.2.1.13.10|65|0
1.3.6.1.2.1.2.2.1.13.11|65|0
1.3.6.1.2.1.2.2.1.13.12|65|0
1.3.6.1.2.1.2.2.1.13.13|65|0
@@ -109,6 +117,7 @@
1.3.6.1.2.1.2.2.1.14.7|65|0
1.3.6.1.2.1.2.2.1.14.8|65|0
1.3.6.1.2.1.2.2.1.14.9|65|0
1.3.6.1.2.1.2.2.1.14.10|65|0
1.3.6.1.2.1.2.2.1.14.11|65|0
1.3.6.1.2.1.2.2.1.14.12|65|0
1.3.6.1.2.1.2.2.1.14.13|65|0
@@ -121,6 +130,7 @@
1.3.6.1.2.1.2.2.1.19.7|65|0
1.3.6.1.2.1.2.2.1.19.8|65|0
1.3.6.1.2.1.2.2.1.19.9|65|0
1.3.6.1.2.1.2.2.1.19.10|65|0
1.3.6.1.2.1.2.2.1.19.11|65|0
1.3.6.1.2.1.2.2.1.19.12|65|0
1.3.6.1.2.1.2.2.1.19.13|65|0
@@ -133,6 +143,7 @@
1.3.6.1.2.1.2.2.1.20.7|65|0
1.3.6.1.2.1.2.2.1.20.8|65|0
1.3.6.1.2.1.2.2.1.20.9|65|0
1.3.6.1.2.1.2.2.1.20.10|65|0
1.3.6.1.2.1.2.2.1.20.11|65|0
1.3.6.1.2.1.2.2.1.20.12|65|0
1.3.6.1.2.1.2.2.1.20.13|65|0
@@ -153,13 +164,18 @@
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.10.4.1.211|2|13
1.3.6.1.2.1.4.20.1.2.10.33.216.24|2|10
1.3.6.1.2.1.4.20.1.2.10.51.85.156|2|11
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.1.25|2|11
1.3.6.1.2.1.4.20.1.2.192.168.2.1|2|12
1.3.6.1.2.1.4.20.1.3.10.4.1.211|64|255.255.255.0
1.3.6.1.2.1.4.20.1.3.10.33.216.24|64|255.255.255.240
1.3.6.1.2.1.4.20.1.3.10.51.85.156|64|255.255.255.248
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.1.25|64|255.255.255.248
1.3.6.1.2.1.4.20.1.3.192.168.2.1|64|255.255.255.0
1.3.6.1.2.1.4.22.1.2.11.192.168.1.30|4x|E81CBA74C60A
1.3.6.1.2.1.4.22.1.2.12.192.168.2.240|4x|685B358B8386
1.3.6.1.2.1.4.22.1.2.13.10.4.1.1|4x|6C3B6B2A24A2
1.3.6.1.2.1.5.1.0|65|0
@@ -347,6 +363,7 @@
1.3.6.1.2.1.25.3.2.1.1.262151|2|262151
1.3.6.1.2.1.25.3.2.1.1.262152|2|262152
1.3.6.1.2.1.25.3.2.1.1.262153|2|262153
1.3.6.1.2.1.25.3.2.1.1.262154|2|262154
1.3.6.1.2.1.25.3.2.1.1.262155|2|262155
1.3.6.1.2.1.25.3.2.1.1.262156|2|262156
1.3.6.1.2.1.25.3.2.1.1.262157|2|262157
@@ -360,6 +377,7 @@
1.3.6.1.2.1.25.3.2.1.2.262151|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.262152|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.262153|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.262154|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.262155|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.262156|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.262157|6|1.3.6.1.2.1.25.3.1.4
@@ -373,6 +391,7 @@
1.3.6.1.2.1.25.3.2.1.3.262151|4|network interface gre0
1.3.6.1.2.1.25.3.2.1.3.262152|4|network interface gretap0
1.3.6.1.2.1.25.3.2.1.3.262153|4|network interface ip6gre0
1.3.6.1.2.1.25.3.2.1.3.262154|4|network interface wwan0
1.3.6.1.2.1.25.3.2.1.3.262155|4|network interface wwan0
1.3.6.1.2.1.25.3.2.1.3.262156|4|network interface br-lan
1.3.6.1.2.1.25.3.2.1.3.262157|4|network interface wlan0
@@ -386,6 +405,7 @@
1.3.6.1.2.1.25.3.2.1.4.262151|6|0.0
1.3.6.1.2.1.25.3.2.1.4.262152|6|0.0
1.3.6.1.2.1.25.3.2.1.4.262153|6|0.0
1.3.6.1.2.1.25.3.2.1.4.262154|6|0.0
1.3.6.1.2.1.25.3.2.1.4.262155|6|0.0
1.3.6.1.2.1.25.3.2.1.4.262156|6|0.0
1.3.6.1.2.1.25.3.2.1.4.262157|6|0.0
@@ -399,6 +419,7 @@
1.3.6.1.2.1.25.3.2.1.5.262151|2|5
1.3.6.1.2.1.25.3.2.1.5.262152|2|5
1.3.6.1.2.1.25.3.2.1.5.262153|2|5
1.3.6.1.2.1.25.3.2.1.5.262154|2|2
1.3.6.1.2.1.25.3.2.1.5.262155|2|2
1.3.6.1.2.1.25.3.2.1.5.262156|2|2
1.3.6.1.2.1.25.3.2.1.5.262157|2|2
@@ -411,6 +432,7 @@
1.3.6.1.2.1.25.3.2.1.6.262151|65|0
1.3.6.1.2.1.25.3.2.1.6.262152|65|0
1.3.6.1.2.1.25.3.2.1.6.262153|65|0
1.3.6.1.2.1.25.3.2.1.6.262154|65|0
1.3.6.1.2.1.25.3.2.1.6.262155|65|0
1.3.6.1.2.1.25.3.2.1.6.262156|65|0
1.3.6.1.2.1.25.3.2.1.6.262157|65|0
@@ -425,6 +447,7 @@
1.3.6.1.2.1.31.1.1.1.1.7|4|gre0
1.3.6.1.2.1.31.1.1.1.1.8|4|gretap0
1.3.6.1.2.1.31.1.1.1.1.9|4|ip6gre0
1.3.6.1.2.1.31.1.1.1.1.10|4|wwan0
1.3.6.1.2.1.31.1.1.1.1.11|4|wwan0
1.3.6.1.2.1.31.1.1.1.1.12|4|br-lan
1.3.6.1.2.1.31.1.1.1.1.13|4|wlan0
@@ -437,6 +460,7 @@
1.3.6.1.2.1.31.1.1.1.2.7|65|0
1.3.6.1.2.1.31.1.1.1.2.8|65|0
1.3.6.1.2.1.31.1.1.1.2.9|65|0
1.3.6.1.2.1.31.1.1.1.2.10|65|0
1.3.6.1.2.1.31.1.1.1.2.11|65|0
1.3.6.1.2.1.31.1.1.1.2.12|65|0
1.3.6.1.2.1.31.1.1.1.2.13|65|0
@@ -449,6 +473,7 @@
1.3.6.1.2.1.31.1.1.1.3.7|65|0
1.3.6.1.2.1.31.1.1.1.3.8|65|0
1.3.6.1.2.1.31.1.1.1.3.9|65|0
1.3.6.1.2.1.31.1.1.1.3.10|65|0
1.3.6.1.2.1.31.1.1.1.3.11|65|0
1.3.6.1.2.1.31.1.1.1.3.12|65|0
1.3.6.1.2.1.31.1.1.1.3.13|65|0
@@ -461,6 +486,7 @@
1.3.6.1.2.1.31.1.1.1.4.7|65|0
1.3.6.1.2.1.31.1.1.1.4.8|65|0
1.3.6.1.2.1.31.1.1.1.4.9|65|0
1.3.6.1.2.1.31.1.1.1.4.10|65|0
1.3.6.1.2.1.31.1.1.1.4.11|65|0
1.3.6.1.2.1.31.1.1.1.4.12|65|0
1.3.6.1.2.1.31.1.1.1.4.13|65|0
@@ -473,6 +499,7 @@
1.3.6.1.2.1.31.1.1.1.5.7|65|0
1.3.6.1.2.1.31.1.1.1.5.8|65|0
1.3.6.1.2.1.31.1.1.1.5.9|65|0
1.3.6.1.2.1.31.1.1.1.5.10|65|0
1.3.6.1.2.1.31.1.1.1.5.11|65|0
1.3.6.1.2.1.31.1.1.1.5.12|65|0
1.3.6.1.2.1.31.1.1.1.5.13|65|0
@@ -485,6 +512,7 @@
1.3.6.1.2.1.31.1.1.1.6.7|70|0
1.3.6.1.2.1.31.1.1.1.6.8|70|0
1.3.6.1.2.1.31.1.1.1.6.9|70|0
1.3.6.1.2.1.31.1.1.1.6.10|70|3795089670
1.3.6.1.2.1.31.1.1.1.6.11|70|853814
1.3.6.1.2.1.31.1.1.1.6.12|70|7499525
1.3.6.1.2.1.31.1.1.1.6.13|70|81846671
@@ -497,6 +525,7 @@
1.3.6.1.2.1.31.1.1.1.7.7|70|0
1.3.6.1.2.1.31.1.1.1.7.8|70|0
1.3.6.1.2.1.31.1.1.1.7.9|70|0
1.3.6.1.2.1.31.1.1.1.7.10|70|15187627
1.3.6.1.2.1.31.1.1.1.7.11|70|10858
1.3.6.1.2.1.31.1.1.1.7.12|70|60068
1.3.6.1.2.1.31.1.1.1.7.13|70|93562
@@ -509,6 +538,7 @@
1.3.6.1.2.1.31.1.1.1.8.7|70|0
1.3.6.1.2.1.31.1.1.1.8.8|70|0
1.3.6.1.2.1.31.1.1.1.8.9|70|0
1.3.6.1.2.1.31.1.1.1.8.10|70|0
1.3.6.1.2.1.31.1.1.1.8.11|70|0
1.3.6.1.2.1.31.1.1.1.8.12|70|0
1.3.6.1.2.1.31.1.1.1.8.13|70|0
@@ -521,6 +551,7 @@
1.3.6.1.2.1.31.1.1.1.9.7|70|0
1.3.6.1.2.1.31.1.1.1.9.8|70|0
1.3.6.1.2.1.31.1.1.1.9.9|70|0
1.3.6.1.2.1.31.1.1.1.9.10|70|0
1.3.6.1.2.1.31.1.1.1.9.11|70|0
1.3.6.1.2.1.31.1.1.1.9.12|70|0
1.3.6.1.2.1.31.1.1.1.9.13|70|0
@@ -533,6 +564,7 @@
1.3.6.1.2.1.31.1.1.1.10.7|70|0
1.3.6.1.2.1.31.1.1.1.10.8|70|0
1.3.6.1.2.1.31.1.1.1.10.9|70|0
1.3.6.1.2.1.31.1.1.1.10.10|70|3663695811
1.3.6.1.2.1.31.1.1.1.10.11|70|745829
1.3.6.1.2.1.31.1.1.1.10.12|70|81186999
1.3.6.1.2.1.31.1.1.1.10.13|70|9832012
@@ -545,6 +577,7 @@
1.3.6.1.2.1.31.1.1.1.11.7|70|0
1.3.6.1.2.1.31.1.1.1.11.8|70|0
1.3.6.1.2.1.31.1.1.1.11.9|70|0
1.3.6.1.2.1.31.1.1.1.11.10|70|15343027
1.3.6.1.2.1.31.1.1.1.11.11|70|11049
1.3.6.1.2.1.31.1.1.1.11.12|70|83892
1.3.6.1.2.1.31.1.1.1.11.13|70|59226
@@ -557,6 +590,7 @@
1.3.6.1.2.1.31.1.1.1.12.7|70|0
1.3.6.1.2.1.31.1.1.1.12.8|70|0
1.3.6.1.2.1.31.1.1.1.12.9|70|0
1.3.6.1.2.1.31.1.1.1.12.10|70|0
1.3.6.1.2.1.31.1.1.1.12.11|70|0
1.3.6.1.2.1.31.1.1.1.12.12|70|0
1.3.6.1.2.1.31.1.1.1.12.13|70|0
@@ -569,6 +603,7 @@
1.3.6.1.2.1.31.1.1.1.13.7|70|0
1.3.6.1.2.1.31.1.1.1.13.8|70|0
1.3.6.1.2.1.31.1.1.1.13.9|70|0
1.3.6.1.2.1.31.1.1.1.13.10|70|0
1.3.6.1.2.1.31.1.1.1.13.11|70|0
1.3.6.1.2.1.31.1.1.1.13.12|70|0
1.3.6.1.2.1.31.1.1.1.13.13|70|0
@@ -581,6 +616,7 @@
1.3.6.1.2.1.31.1.1.1.15.7|66|0
1.3.6.1.2.1.31.1.1.1.15.8|66|0
1.3.6.1.2.1.31.1.1.1.15.9|66|0
1.3.6.1.2.1.31.1.1.1.15.10|66|0
1.3.6.1.2.1.31.1.1.1.15.11|66|0
1.3.6.1.2.1.31.1.1.1.15.12|66|0
1.3.6.1.2.1.31.1.1.1.15.13|66|0
@@ -593,6 +629,7 @@
1.3.6.1.2.1.31.1.1.1.16.7|2|2
1.3.6.1.2.1.31.1.1.1.16.8|2|2
1.3.6.1.2.1.31.1.1.1.16.9|2|2
1.3.6.1.2.1.31.1.1.1.16.10|2|2
1.3.6.1.2.1.31.1.1.1.16.11|2|2
1.3.6.1.2.1.31.1.1.1.16.12|2|2
1.3.6.1.2.1.31.1.1.1.16.13|2|2
@@ -605,6 +642,7 @@
1.3.6.1.2.1.31.1.1.1.17.7|2|1
1.3.6.1.2.1.31.1.1.1.17.8|2|1
1.3.6.1.2.1.31.1.1.1.17.9|2|1
1.3.6.1.2.1.31.1.1.1.17.10|2|1
1.3.6.1.2.1.31.1.1.1.17.11|2|1
1.3.6.1.2.1.31.1.1.1.17.12|2|1
1.3.6.1.2.1.31.1.1.1.17.13|2|1
@@ -617,6 +655,7 @@
1.3.6.1.2.1.31.1.1.1.18.7|4|
1.3.6.1.2.1.31.1.1.1.18.8|4|
1.3.6.1.2.1.31.1.1.1.18.9|4|
1.3.6.1.2.1.31.1.1.1.18.10|4|
1.3.6.1.2.1.31.1.1.1.18.11|4|
1.3.6.1.2.1.31.1.1.1.18.12|4|
1.3.6.1.2.1.31.1.1.1.18.13|4|
@@ -629,6 +668,7 @@
1.3.6.1.2.1.31.1.1.1.19.7|67|0
1.3.6.1.2.1.31.1.1.1.19.8|67|0
1.3.6.1.2.1.31.1.1.1.19.9|67|0
1.3.6.1.2.1.31.1.1.1.19.10|67|0
1.3.6.1.2.1.31.1.1.1.19.11|67|0
1.3.6.1.2.1.31.1.1.1.19.12|67|0
1.3.6.1.2.1.31.1.1.1.19.13|67|0
@@ -687,4 +727,6 @@
1.3.6.1.4.1.48690.2.14.0|4|RUT2XX_R_00.01.07.1
1.3.6.1.4.1.48690.2.15.0|4|1
1.3.6.1.4.1.48690.2.17.0|2|15209
1.3.6.1.4.1.48690.2.22.0|4|14.1
1.3.6.1.4.1.48690.2.23.0|4|-74
1.3.6.1.6.3.10.2.1.3.0|2|47597