Added SAF Integra-X OS Support (#13236)

* Added SAF Integra-X support.

* Fixed discovery confusion between Integra-B and Integra-X.

* Removed a missed unusued use statement.

* Fixed CPU sensor issues related to MIB display hints throwing off math.

* Fix to Integra-X snmprec and test data.
This commit is contained in:
Noah Roufus 2021-09-17 08:13:10 -06:00 committed by GitHub
parent b4b4820cba
commit eff9c134cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 5364 additions and 0 deletions

240
LibreNMS/OS/SafIntegraX.php Normal file
View File

@ -0,0 +1,240 @@
<?php
/**
* Saf-IntegraX.php
*
* Saf Integra-X wireless radios
*
* 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 <https://www.gnu.org/licenses/>.
*
* @link https://www.librenms.org
*
* @copyright 2017 Neil Lathwood
* @author Neil Lathwood <gh+n@laf.io>
*/
namespace LibreNMS\OS;
use LibreNMS\Device\WirelessSensor;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessFrequencyDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessMseDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRateDiscovery;
use LibreNMS\OS;
class SafIntegraX extends OS implements
WirelessFrequencyDiscovery,
WirelessMseDiscovery,
WirelessPowerDiscovery,
WirelessRateDiscovery
{
/**
* Discover wireless frequency. This is in MHz. Type is frequency.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors
*/
public function discoverWirelessFrequency()
{
return [
// SAF-INTEGRAX-MIB::integraXradioAtxFrequency
new WirelessSensor(
'frequency',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.10.2.1.2.0',
'saf-integrax-a-tx',
'integraXradioAtxFrequency',
'Radio-A Tx Frequency',
null,
1,
1000
),
// SAF-INTEGRAX-MIB::integraXradioBtxFrequency
new WirelessSensor(
'frequency',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.10.2.2.2.0',
'saf-integrax-b-tx',
'integraXradioBtxFrequency',
'Radio-B Tx Frequency',
null,
1,
1000
),
// SAF-INTEGRAX-MIB::integraXradioArxFrequency
new WirelessSensor(
'frequency',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.10.2.1.9.0',
'saf-integrax-a-rx',
'integraXradioArxFrequency',
'Radio-A Rx Frequency',
null,
1,
1000
),
// SAF-INTEGRAX-MIB::integraXradioBrxFrequency
new WirelessSensor(
'frequency',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.10.2.2.9.0',
'saf-integrax-b-rx',
'integraXradioBrxFrequency',
'Radio-B Rx Frequency',
null,
1,
1000
),
];
}
/**
* Discover wireless MSE. Mean square error value *10 in dB.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors
*/
public function discoverWirelessMse()
{
return [
// SAF-INTEGRAX-MIB::integraXmodemAnormalizedMse
new WirelessSensor(
'mse',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.10.3.1.2.0',
'saf-integrax-a-mse',
'integraXmodemAnormalizedMse',
'Modem-A MSE',
null,
1,
10
),
// SAF-INTEGRAX-MIB::integraXmodemBnormalizedMse
new WirelessSensor(
'mse',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.10.3.2.2.0',
'saf-integrax-b-mse',
'integraXmodemBnormalizedMse',
'Modem-B MSE',
null,
1,
10
),
];
}
/**
* Discover wireless tx or rx power. This is in dBm. Type is power.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array
*/
public function discoverWirelessPower()
{
return [
// SAF-INTEGRAX-MIB::integraXradioAtxPower
new WirelessSensor(
'power',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.10.2.1.1.0',
'saf-integrax-a-tx-power',
'integraXradioAtxPower',
'Radio-A Tx Power'
),
// SAF-INTEGRAX-MIB::integraXradioBtxPower
new WirelessSensor(
'power',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.10.2.2.1.0',
'saf-integrax-b-tx-power',
'integraXradioBtxPower',
'Radio-B Tx Power'
),
// SAF-INTEGRAX-MIB::integraXradioArxLevel
new WirelessSensor(
'power',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.10.2.1.3.0',
'saf-integrax-a-rx-level',
'integraXradioArxLevel',
'Radio-A Rx Level'
),
// SAF-INTEGRAX-MIB::integraXradioBrxLevel
new WirelessSensor(
'power',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.10.2.2.3.0',
'saf-integrax-b-rx-level',
'integraXradioBrxLevel',
'Radio-B Rx Level'
),
];
}
/**
* Discover wireless rate. This is in bps. Type is rate.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array
*/
public function discoverWirelessRate()
{
return [
// SAF-INTEGRAX-MIB::integraXmodemArxCapacity
new WirelessSensor(
'rate',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.10.3.1.9.0',
'saf-integrax-a-rx-capacity',
'integraXmodemArxCapacity',
'Modem-A RX Capacity',
null,
1000
),
// SAF-INTEGRAX-MIB::integraXmodemBrxCapacity
new WirelessSensor(
'rate',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.10.3.2.9.0',
'saf-integrax-b-rx-capacity',
'integraXmodemBrxCapacity',
'Modem-B RX Capacity',
null,
1000
),
// SAF-INTEGRAX-MIB::integraXmodemAtxCapacity
new WirelessSensor(
'rate',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.10.3.1.10.0',
'saf-integrax-a-tx-capacity',
'integraXmodemAtxCapacity',
'Modem-A TX Capacity',
null,
1000
),
// SAF-INTEGRAX-MIB::integraXmodemBtxCapacity
new WirelessSensor(
'rate',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.10.3.2.10.0',
'saf-integrax-b-tx-capacity',
'integraXmodemBtxCapacity',
'Modem-B TX Capacity',
null,
1000
),
];
}
}

View File

@ -0,0 +1,64 @@
mib: SAF-INTEGRAX-MIB
modules:
os:
sysDescr_regex: '/Prod: (?<hardware>[A-Za-z-_]+);Vers: (?<version>[0-9.]+);.*;S\/N: (?<serial>[0-9]+)/'
processors:
data:
-
oid: integraXsysCPUidle
num_oid: '.1.3.6.1.4.1.7571.100.1.1.7.10.4.10.{{ $index }}'
precision: -10
type: saf-integra
sensors:
temperature:
data:
-
oid: integraXsysCPUtemperature
num_oid: '.1.3.6.1.4.1.7571.100.1.1.7.10.4.2.{{ $index }}'
descr: System CPU
index: 'integraXsysCPUtemperature.{{ $index }}'
-
oid: integraXsysBoardTemperature
num_oid: '.1.3.6.1.4.1.7571.100.1.1.7.10.4.8.{{ $index }}'
descr: System Board
index: 'integraXsysBoardTemperature.{{ $index }}'
voltage:
options:
divisor: 1000
data:
-
oid: integraXsysPSUvoltage
num_oid: '.1.3.6.1.4.1.7571.100.1.1.7.10.4.5.{{ $index }}'
descr: PSU Voltage
index: 'integraXsysPSUvoltage.{{ $index }}'
current:
options:
divisor: 1000
data:
-
oid: integraXsysPSUcurrent
num_oid: '.1.3.6.1.4.1.7571.100.1.1.7.10.4.6.{{ $index }}'
descr: PSU Current
index: 'integraXsysPSUcurrent.{{ $index }}'
power:
options:
divisor: 1000
data:
-
oid: integraXsysPSUpower
num_oid: '.1.3.6.1.4.1.7571.100.1.1.7.10.4.7.{{ $index }}'
descr: PSU Power
index: 'integraXsysPSUpower.{{ $index }}'
state:
data:
-
oid: integraXsysLicenseGenStatus
num_oid: '.1.3.6.1.4.1.7571.100.1.1.7.10.4.4.{{ $index }}'
descr: License Status
index: 'integraXsysLicenseGenStatus.{{ $index }}'
state_name: integraXsysLicenseGenStatus
states:
- { value: 1, generic: 0, graph: 1, descr: ok }
- { value: 2, generic: 2, graph: 1, descr: expired }
- { value: 3, generic: 3, graph: 1, descr: unknown }
- { value: 4, generic: 0, graph: 1, descr: unlimitedTime }

View File

@ -11,3 +11,5 @@ discovery:
-
sysObjectID:
- .1.3.6.1.4.1.7571.100.1.1.7.1
sysDescr:
- 'Prod: Integra;'

View File

@ -0,0 +1,15 @@
os: saf-integra-x
text: 'SAF Integra X'
type: wireless
icon: saf
group: saf
over:
- { graph: device_bits, text: 'Device Traffic' }
- { graph: device_processor, text: 'CPU Usage' }
- { graph: device_mempool, text: 'Memory Usage' }
discovery:
-
sysObjectID:
- .1.3.6.1.4.1.7571.100.1.1.7.10
sysDescr:
- 'Prod: Integra-X;'

2857
mibs/saf/SAF-INTEGRAX-MIB Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,386 @@
1.3.6.1.2.1.1.1.0|4|Prod: Integra-X;Vers: 3.19.6;Timestamp: 2021-01-22 12:37:36;kernel: 4.14.0;rootfs: 0.0.5;fpga: 0.0.5;devicetree: 0.0.5;radio: RAVRAVRAVRAVRAV;uboot: 2017.01.01;eth_switch_fw: 6.5.18.1;P/C: D11XSR05HB;S/N: 0123456789
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.7571.100.1.1.7.10
1.3.6.1.2.1.1.3.0|67|432080407
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|LAN1
1.3.6.1.2.1.2.2.1.2.2|4|LAN2
1.3.6.1.2.1.2.2.1.2.3|4|LAN3
1.3.6.1.2.1.2.2.1.2.4|4|WANLP
1.3.6.1.2.1.2.2.1.3.1|2|117
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|6
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.4.1|2|12284
1.3.6.1.2.1.2.2.1.4.2|2|12284
1.3.6.1.2.1.2.2.1.4.3|2|12284
1.3.6.1.2.1.2.2.1.4.4|2|12284
1.3.6.1.2.1.2.2.1.6.1|4x|ABCDEF123456
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|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|1
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|1
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|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.13.4|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.14.4|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.19.4|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.4.3.0|65|2147483647
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.5.0|65|0
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|0
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|2147483647
1.3.6.1.2.1.4.10.0|65|2147483647
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|0
1.3.6.1.2.1.4.14.0|65|25875214
1.3.6.1.2.1.4.15.0|65|4312432
1.3.6.1.2.1.4.16.0|65|125
1.3.6.1.2.1.4.17.0|65|4319040
1.3.6.1.2.1.4.18.0|65|0
1.3.6.1.2.1.4.19.0|65|25914240
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
1.3.6.1.2.1.4.20.1.2.172.16.1.10|2|2
1.3.6.1.2.1.4.20.1.2.192.168.1.2|2|3
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0
1.3.6.1.2.1.4.20.1.3.172.16.1.10|64|255.255.0.0
1.3.6.1.2.1.4.20.1.3.192.168.1.2|64|255.255.255.0
1.3.6.1.2.1.4.22.1.2.2.172.16.1.100|4x|000000000002
1.3.6.1.2.1.4.22.1.2.3.192.168.1.1|4x|ABCDEF123456
1.3.6.1.2.1.4.22.1.2.3.192.168.1.3|4x|ABCDEF123456
1.3.6.1.2.1.4.31.1.1.3.1|65|2116040286
1.3.6.1.2.1.4.31.1.1.4.1|70|6411007582
1.3.6.1.2.1.4.31.1.1.5.1|65|368379788
1.3.6.1.2.1.4.31.1.1.6.1|70|416980207500
1.3.6.1.2.1.4.31.1.1.7.1|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.9.1|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.11.1|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.13.1|70|0
1.3.6.1.2.1.4.31.1.1.14.1|65|25875082
1.3.6.1.2.1.4.31.1.1.15.1|65|4312410
1.3.6.1.2.1.4.31.1.1.16.1|65|125
1.3.6.1.2.1.4.31.1.1.17.1|65|0
1.3.6.1.2.1.4.31.1.1.18.1|65|2094477614
1.3.6.1.2.1.4.31.1.1.19.1|70|6389444910
1.3.6.1.2.1.4.31.1.1.20.1|65|2088128303
1.3.6.1.2.1.4.31.1.1.21.1|70|6383095599
1.3.6.1.2.1.4.31.1.1.22.1|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.24.1|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.26.1|65|4319018
1.3.6.1.2.1.4.31.1.1.27.1|65|4319018
1.3.6.1.2.1.4.31.1.1.28.1|65|0
1.3.6.1.2.1.4.31.1.1.29.1|65|25914108
1.3.6.1.2.1.4.31.1.1.30.1|65|2109723393
1.3.6.1.2.1.4.31.1.1.31.1|70|6404690689
1.3.6.1.2.1.4.31.1.1.32.1|65|4191998289
1.3.6.1.2.1.4.31.1.1.33.1|70|407918924113
1.3.6.1.2.1.4.31.1.1.34.1|65|0
1.3.6.1.2.1.4.31.1.1.35.1|70|0
1.3.6.1.2.1.4.31.1.1.36.1|65|0
1.3.6.1.2.1.4.31.1.1.37.1|70|0
1.3.6.1.2.1.4.31.1.1.38.1|65|0
1.3.6.1.2.1.4.31.1.1.39.1|70|0
1.3.6.1.2.1.4.31.1.1.40.1|65|0
1.3.6.1.2.1.4.31.1.1.41.1|70|0
1.3.6.1.2.1.4.31.1.1.42.1|65|12
1.3.6.1.2.1.4.31.1.1.43.1|70|12
1.3.6.1.2.1.4.31.1.1.44.1|65|0
1.3.6.1.2.1.4.31.1.1.45.1|70|0
1.3.6.1.2.1.4.31.1.1.46.1|67|0
1.3.6.1.2.1.4.31.1.1.47.1|66|60000
1.3.6.1.2.1.4.35.1.4.2.1.4.172.16.1.100|4x|000000000002
1.3.6.1.2.1.4.35.1.4.3.1.4.192.168.1.1|4x|ABCDEF123456
1.3.6.1.2.1.4.35.1.4.3.1.4.192.168.1.3|4x|ABCDEF123456
1.3.6.1.2.1.5.1.0|65|1531446
1.3.6.1.2.1.5.2.0|65|6409
1.3.6.1.2.1.5.3.0|65|6312
1.3.6.1.2.1.5.4.0|65|100
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|1525032
1.3.6.1.2.1.5.9.0|65|2
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|1543019
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|17861
1.3.6.1.2.1.5.17.0|65|124
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|2
1.3.6.1.2.1.5.22.0|65|1525032
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|1531446
1.3.6.1.2.1.5.29.1.2.2|65|0
1.3.6.1.2.1.5.29.1.3.1|65|6409
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|1543019
1.3.6.1.2.1.5.29.1.4.2|65|0
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.0|65|2
1.3.6.1.2.1.5.30.1.3.1.3|65|6312
1.3.6.1.2.1.5.30.1.3.1.4|65|0
1.3.6.1.2.1.5.30.1.3.1.5|65|0
1.3.6.1.2.1.5.30.1.3.1.8|65|1525032
1.3.6.1.2.1.5.30.1.3.1.11|65|100
1.3.6.1.2.1.5.30.1.3.1.12|65|0
1.3.6.1.2.1.5.30.1.3.1.13|65|0
1.3.6.1.2.1.5.30.1.3.1.14|65|0
1.3.6.1.2.1.5.30.1.3.1.17|65|0
1.3.6.1.2.1.5.30.1.3.1.18|65|0
1.3.6.1.2.1.5.30.1.3.2.1|65|0
1.3.6.1.2.1.5.30.1.3.2.2|65|0
1.3.6.1.2.1.5.30.1.3.2.3|65|0
1.3.6.1.2.1.5.30.1.3.2.4|65|0
1.3.6.1.2.1.5.30.1.3.2.128|65|0
1.3.6.1.2.1.5.30.1.3.2.129|65|0
1.3.6.1.2.1.5.30.1.3.2.130|65|0
1.3.6.1.2.1.5.30.1.3.2.131|65|0
1.3.6.1.2.1.5.30.1.3.2.132|65|0
1.3.6.1.2.1.5.30.1.3.2.133|65|0
1.3.6.1.2.1.5.30.1.3.2.134|65|0
1.3.6.1.2.1.5.30.1.3.2.135|65|0
1.3.6.1.2.1.5.30.1.3.2.136|65|0
1.3.6.1.2.1.5.30.1.3.2.137|65|0
1.3.6.1.2.1.5.30.1.4.1.0|65|1525032
1.3.6.1.2.1.5.30.1.4.1.3|65|17861
1.3.6.1.2.1.5.30.1.4.1.4|65|0
1.3.6.1.2.1.5.30.1.4.1.5|65|0
1.3.6.1.2.1.5.30.1.4.1.8|65|2
1.3.6.1.2.1.5.30.1.4.1.11|65|124
1.3.6.1.2.1.5.30.1.4.1.12|65|0
1.3.6.1.2.1.5.30.1.4.1.13|65|0
1.3.6.1.2.1.5.30.1.4.1.14|65|0
1.3.6.1.2.1.5.30.1.4.1.17|65|0
1.3.6.1.2.1.5.30.1.4.1.18|65|0
1.3.6.1.2.1.5.30.1.4.2.1|65|0
1.3.6.1.2.1.5.30.1.4.2.2|65|0
1.3.6.1.2.1.5.30.1.4.2.3|65|0
1.3.6.1.2.1.5.30.1.4.2.4|65|0
1.3.6.1.2.1.5.30.1.4.2.128|65|0
1.3.6.1.2.1.5.30.1.4.2.129|65|0
1.3.6.1.2.1.5.30.1.4.2.131|65|0
1.3.6.1.2.1.5.30.1.4.2.132|65|0
1.3.6.1.2.1.5.30.1.4.2.133|65|0
1.3.6.1.2.1.5.30.1.4.2.135|65|0
1.3.6.1.2.1.5.30.1.4.2.136|65|0
1.3.6.1.2.1.5.30.1.4.2.137|65|0
1.3.6.1.2.1.6.5.0|65|1
1.3.6.1.2.1.6.6.0|65|11562
1.3.6.1.2.1.6.7.0|65|0
1.3.6.1.2.1.6.8.0|65|3
1.3.6.1.2.1.6.9.0|66|1
1.3.6.1.2.1.6.10.0|65|2087689723
1.3.6.1.2.1.6.11.0|65|2081346291
1.3.6.1.2.1.6.12.0|65|203
1.3.6.1.2.1.6.14.0|65|0
1.3.6.1.2.1.6.15.0|65|11885
1.3.6.1.2.1.6.19.1.7.1.4.10.64.0.154.10001.1.4.10.64.53.5.45759|2|5
1.3.6.1.2.1.6.19.1.7.1.4.172.16.1.10.50010.1.4.172.16.1.100.20567|2|5
1.3.6.1.2.1.7.1.0|65|5275151
1.3.6.1.2.1.7.2.0|65|11549
1.3.6.1.2.1.7.3.0|65|0
1.3.6.1.2.1.7.4.0|65|5286456
1.3.6.1.2.1.11.1.0|65|911279
1.3.6.1.2.1.11.2.0|65|912740
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|27865
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|7137438
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|186508
1.3.6.1.2.1.11.16.0|65|62200
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|883415
1.3.6.1.2.1.11.29.0|65|29327
1.3.6.1.2.1.11.30.0|2|1
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|432082104
1.3.6.1.2.1.25.1.5.0|66|0
1.3.6.1.2.1.31.1.1.1.1.1|4|LAN1
1.3.6.1.2.1.31.1.1.1.1.2|4|LAN2
1.3.6.1.2.1.31.1.1.1.1.3|4|LAN3
1.3.6.1.2.1.31.1.1.1.1.4|4|WANLP
1.3.6.1.2.1.31.1.1.1.2.1|65|2301497
1.3.6.1.2.1.31.1.1.1.2.2|65|11768470
1.3.6.1.2.1.31.1.1.1.2.3|65|0
1.3.6.1.2.1.31.1.1.1.2.4|65|12241669
1.3.6.1.2.1.31.1.1.1.3.1|65|4
1.3.6.1.2.1.31.1.1.1.3.2|65|34
1.3.6.1.2.1.31.1.1.1.3.3|65|0
1.3.6.1.2.1.31.1.1.1.3.4|65|40
1.3.6.1.2.1.31.1.1.1.4.1|65|846452
1.3.6.1.2.1.31.1.1.1.4.2|65|11395212
1.3.6.1.2.1.31.1.1.1.4.3|65|0
1.3.6.1.2.1.31.1.1.1.4.4|65|14069965
1.3.6.1.2.1.31.1.1.1.5.1|65|4627
1.3.6.1.2.1.31.1.1.1.5.2|65|17
1.3.6.1.2.1.31.1.1.1.5.3|65|0
1.3.6.1.2.1.31.1.1.1.5.4|65|4642
1.3.6.1.2.1.31.1.1.1.6.1|70|474265609
1.3.6.1.2.1.31.1.1.1.6.2|70|225090325340
1.3.6.1.2.1.31.1.1.1.6.3|70|0
1.3.6.1.2.1.31.1.1.1.6.4|70|55168542223
1.3.6.1.2.1.31.1.1.1.7.1|70|2660993
1.3.6.1.2.1.31.1.1.1.7.2|70|161612846
1.3.6.1.2.1.31.1.1.1.7.3|70|0
1.3.6.1.2.1.31.1.1.1.7.4|70|96318213
1.3.6.1.2.1.31.1.1.1.8.1|70|2301497
1.3.6.1.2.1.31.1.1.1.8.2|70|11768470
1.3.6.1.2.1.31.1.1.1.8.3|70|0
1.3.6.1.2.1.31.1.1.1.8.4|70|12241669
1.3.6.1.2.1.31.1.1.1.9.1|70|4
1.3.6.1.2.1.31.1.1.1.9.2|70|34
1.3.6.1.2.1.31.1.1.1.9.3|70|0
1.3.6.1.2.1.31.1.1.1.9.4|70|40
1.3.6.1.2.1.31.1.1.1.10.1|70|522770628
1.3.6.1.2.1.31.1.1.1.10.2|70|19580068009
1.3.6.1.2.1.31.1.1.1.10.3|70|0
1.3.6.1.2.1.31.1.1.1.10.4|70|260780716642
1.3.6.1.2.1.31.1.1.1.11.1|70|2667261
1.3.6.1.2.1.31.1.1.1.11.2|70|70191622
1.3.6.1.2.1.31.1.1.1.11.3|70|0
1.3.6.1.2.1.31.1.1.1.11.4|70|187740533
1.3.6.1.2.1.31.1.1.1.12.1|70|846452
1.3.6.1.2.1.31.1.1.1.12.2|70|11395212
1.3.6.1.2.1.31.1.1.1.12.3|70|0
1.3.6.1.2.1.31.1.1.1.12.4|70|14069965
1.3.6.1.2.1.31.1.1.1.13.1|70|4627
1.3.6.1.2.1.31.1.1.1.13.2|70|17
1.3.6.1.2.1.31.1.1.1.13.3|70|0
1.3.6.1.2.1.31.1.1.1.13.4|70|4642
1.3.6.1.2.1.31.1.1.1.14.1|65|2
1.3.6.1.2.1.31.1.1.1.14.2|65|2
1.3.6.1.2.1.31.1.1.1.14.3|65|2
1.3.6.1.2.1.31.1.1.1.14.4|65|2
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|10000
1.3.6.1.2.1.31.1.1.1.15.3|66|0
1.3.6.1.2.1.31.1.1.1.15.4|66|5000
1.3.6.1.2.1.31.1.1.1.16.1|65|2
1.3.6.1.2.1.31.1.1.1.16.2|65|2
1.3.6.1.2.1.31.1.1.1.16.3|65|2
1.3.6.1.2.1.31.1.1.1.16.4|65|2
1.3.6.1.2.1.31.1.1.1.17.1|65|1
1.3.6.1.2.1.31.1.1.1.17.2|65|1
1.3.6.1.2.1.31.1.1.1.17.3|65|1
1.3.6.1.2.1.31.1.1.1.17.4|65|1
1.3.6.1.2.1.31.1.1.1.18.1|4|
1.3.6.1.2.1.31.1.1.1.18.2|4|
1.3.6.1.2.1.31.1.1.1.18.3|4|
1.3.6.1.2.1.31.1.1.1.18.4|4|
1.3.6.1.2.1.31.1.1.1.19.1|67|0
1.3.6.1.2.1.31.1.1.1.19.2|67|0
1.3.6.1.2.1.31.1.1.1.19.3|67|0
1.3.6.1.2.1.31.1.1.1.19.4|67|0
1.3.6.1.4.1.2021.4.3.0|2|0
1.3.6.1.4.1.2021.4.4.0|2|0
1.3.6.1.4.1.2021.4.5.0|2|1032388
1.3.6.1.4.1.2021.4.6.0|2|920732
1.3.6.1.4.1.2021.4.14.0|2|0
1.3.6.1.4.1.2021.4.15.0|2|57864
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|7942
1.3.6.1.4.1.2021.11.8.0|2|8981
1.3.6.1.4.1.2021.11.9.0|2|17
1.3.6.1.4.1.2021.11.10.0|2|8
1.3.6.1.4.1.2021.11.11.0|2|71
1.3.6.1.4.1.2021.11.50.0|65|142332861
1.3.6.1.4.1.2021.11.51.0|65|0
1.3.6.1.4.1.2021.11.52.0|65|70309534
1.3.6.1.4.1.2021.11.53.0|65|604037921
1.3.6.1.4.1.2021.11.54.0|65|0
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|128
1.3.6.1.4.1.2021.11.59.0|65|2814588484
1.3.6.1.4.1.2021.11.60.0|65|3524993541
1.3.6.1.4.1.2021.11.61.0|65|22599195
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|2
1.3.6.1.4.1.7571.100.1.1.7.10.2.1.1.0|2|26
1.3.6.1.4.1.7571.100.1.1.7.10.2.1.2.0|2|11645000
1.3.6.1.4.1.7571.100.1.1.7.10.2.1.3.0|2|-32
1.3.6.1.4.1.7571.100.1.1.7.10.2.1.9.0|2|11155000
1.3.6.1.4.1.7571.100.1.1.7.10.2.2.1.0|2|26
1.3.6.1.4.1.7571.100.1.1.7.10.2.2.2.0|2|11645000
1.3.6.1.4.1.7571.100.1.1.7.10.2.2.3.0|2|-32
1.3.6.1.4.1.7571.100.1.1.7.10.2.2.9.0|2|11155000
1.3.6.1.4.1.7571.100.1.1.7.10.3.1.2.0|2|-457
1.3.6.1.4.1.7571.100.1.1.7.10.3.1.9.0|2|769076
1.3.6.1.4.1.7571.100.1.1.7.10.3.1.10.0|2|769076
1.3.6.1.4.1.7571.100.1.1.7.10.3.2.2.0|2|-455
1.3.6.1.4.1.7571.100.1.1.7.10.3.2.9.0|2|769076
1.3.6.1.4.1.7571.100.1.1.7.10.3.2.10.0|2|769076
1.3.6.1.4.1.7571.100.1.1.7.10.4.2.0|2|682
1.3.6.1.4.1.7571.100.1.1.7.10.4.4.0|2|4
1.3.6.1.4.1.7571.100.1.1.7.10.4.5.0|2|55800
1.3.6.1.4.1.7571.100.1.1.7.10.4.6.0|2|1568
1.3.6.1.4.1.7571.100.1.1.7.10.4.7.0|2|87490
1.3.6.1.4.1.7571.100.1.1.7.10.4.8.0|2|590
1.3.6.1.4.1.7571.100.1.1.7.10.4.10.0|2|773
1.3.6.1.6.3.10.2.1.3.0|2|4320804