mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Added support for Integra E radios (#11871)
* Added support for Integra E radios * Update saf-integra-e.json * Update saf-integra-e.inc.php Co-authored-by: Tony Murray <murraytony@gmail.com>
This commit is contained in:
189
LibreNMS/OS/SafIntegraE.php
Normal file
189
LibreNMS/OS/SafIntegraE.php
Normal file
@@ -0,0 +1,189 @@
|
||||
<?php
|
||||
/**
|
||||
* Saf-Integra.php
|
||||
*
|
||||
* Saf Integra 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 <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package LibreNMS
|
||||
* @link http://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\WirelessQualityDiscovery;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRateDiscovery;
|
||||
use LibreNMS\OS;
|
||||
|
||||
class SafIntegraE extends OS implements
|
||||
WirelessFrequencyDiscovery,
|
||||
WirelessMseDiscovery,
|
||||
WirelessPowerDiscovery,
|
||||
WirelessRateDiscovery,
|
||||
WirelessQualityDiscovery
|
||||
{
|
||||
/**
|
||||
* 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 array(
|
||||
// SAF-INTEGRAE-MIB::integraEradioTxFrequency
|
||||
new WirelessSensor(
|
||||
'frequency',
|
||||
$this->getDeviceId(),
|
||||
'.1.3.6.1.4.1.7571.100.1.1.7.9.2.2.0',
|
||||
'saf-integra-tx',
|
||||
'integraEradioTxFrequency',
|
||||
'Tx Frequency',
|
||||
null,
|
||||
1,
|
||||
1000
|
||||
),
|
||||
// SAF-INTEGRAE-MIB::integraEradioRxFrequency
|
||||
new WirelessSensor(
|
||||
'frequency',
|
||||
$this->getDeviceId(),
|
||||
'.1.3.6.1.4.1.7571.100.1.1.7.9.2.7.0',
|
||||
'saf-integra-rx',
|
||||
'integraEradioRxFrequency',
|
||||
'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 array(
|
||||
// SAF-INTEGRAE-MIB::integraEmodemMse
|
||||
new WirelessSensor(
|
||||
'mse',
|
||||
$this->getDeviceId(),
|
||||
'.1.3.6.1.4.1.7571.100.1.1.7.9.3.2.0',
|
||||
'saf-integrae-modem',
|
||||
'integraEmodemMse',
|
||||
'Modem 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 array(
|
||||
// SAF-INTEGRAE-MIB::integraEradioTxPower
|
||||
new WirelessSensor(
|
||||
'power',
|
||||
$this->getDeviceId(),
|
||||
'.1.3.6.1.4.1.7571.100.1.1.7.9.2.1.0',
|
||||
'saf-integra-tx',
|
||||
'integraEradioTxPower',
|
||||
'Tx Power'
|
||||
),
|
||||
// SAF-INTEGRAE-MIB::integraEradioRxLevel
|
||||
new WirelessSensor(
|
||||
'power',
|
||||
$this->getDeviceId(),
|
||||
'.1.3.6.1.4.1.7571.100.1.1.7.9.2.3.0',
|
||||
'saf-integra-rx-level',
|
||||
'integraEradioRxLevel',
|
||||
'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 array(
|
||||
// SAF-INTEGRAE-MIB::integraEmodemRxCapacity
|
||||
new WirelessSensor(
|
||||
'rate',
|
||||
$this->getDeviceId(),
|
||||
'.1.3.6.1.4.1.7571.100.1.1.7.9.3.10.0',
|
||||
'saf-integra-rx',
|
||||
'integraEmodemRxCapacity',
|
||||
'RX Capacity',
|
||||
null,
|
||||
1000
|
||||
),
|
||||
// SAF-INTEGRAE-MIB::integraEmodemTxCapacity
|
||||
new WirelessSensor(
|
||||
'rate',
|
||||
$this->getDeviceId(),
|
||||
'.1.3.6.1.4.1.7571.100.1.1.7.9.3.11.0',
|
||||
'saf-integra-tx',
|
||||
'integraEmodemTxCapacity',
|
||||
'TX Capacity',
|
||||
null,
|
||||
1000
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Discover wireless quality. This is a percent. Type is quality.
|
||||
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
|
||||
*
|
||||
* @return array Sensors
|
||||
*/
|
||||
public function discoverWirelessQuality()
|
||||
{
|
||||
return array(
|
||||
// SAF-INTEGRAE-MIB::integraEmodemSignalQuality
|
||||
new WirelessSensor(
|
||||
'quality',
|
||||
$this->getDeviceId(),
|
||||
'.1.3.6.1.4.1.7571.100.1.1.7.9.3.14.0',
|
||||
'saf-integra-quality',
|
||||
'integraEmodemSignalQuality',
|
||||
'Model Signal',
|
||||
null,
|
||||
1
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
64
includes/definitions/discovery/saf-integra-e.yaml
Normal file
64
includes/definitions/discovery/saf-integra-e.yaml
Normal file
@@ -0,0 +1,64 @@
|
||||
mib: SAF-INTEGRAE-MIB
|
||||
modules:
|
||||
processors:
|
||||
data:
|
||||
-
|
||||
oid: integraEsysCPUidle
|
||||
num_oid: '.1.3.6.1.4.1.7571.100.1.1.7.9.4.10.{{ $index }}'
|
||||
precision: -10
|
||||
type: saf-integra
|
||||
sensors:
|
||||
temperature:
|
||||
options:
|
||||
divisor: 10
|
||||
data:
|
||||
-
|
||||
oid: integraEsysCPUtemperature
|
||||
num_oid: '.1.3.6.1.4.1.7571.100.1.1.7.9.4.2.{{ $index }}'
|
||||
descr: System CPU
|
||||
index: 'integraEsysCPUtemperature.{{ $index }}'
|
||||
-
|
||||
oid: integraEsysBoardTemperature
|
||||
num_oid: '.1.3.6.1.4.1.7571.100.1.1.7.9.4.8.{{ $index }}'
|
||||
descr: System Board
|
||||
index: 'integraEsysBoardTemperature.{{ $index }}'
|
||||
voltage:
|
||||
options:
|
||||
divisor: 1000
|
||||
data:
|
||||
-
|
||||
oid: integraEsysPSUvoltage
|
||||
num_oid: '.1.3.6.1.4.1.7571.100.1.1.7.9.4.5.{{ $index }}'
|
||||
descr: PSU Voltage
|
||||
index: 'integraEsysPSUvoltage.{{ $index }}'
|
||||
current:
|
||||
options:
|
||||
divisor: 1000
|
||||
data:
|
||||
-
|
||||
oid: integraEsysPSUcurrent
|
||||
num_oid: '.1.3.6.1.4.1.7571.100.1.1.7.9.4.6.{{ $index }}'
|
||||
descr: PSU Current
|
||||
index: 'integraEsysPSUcurrent.{{ $index }}'
|
||||
power:
|
||||
options:
|
||||
divisor: 1000
|
||||
data:
|
||||
-
|
||||
oid: integraEsysPSUpower
|
||||
num_oid: '.1.3.6.1.4.1.7571.100.1.1.7.9.4.7.{{ $index }}'
|
||||
descr: PSU Power
|
||||
index: 'integraEsysPSUpower.{{ $index }}'
|
||||
state:
|
||||
data:
|
||||
-
|
||||
oid: integraEsysLicenseGenStatus
|
||||
num_oid: '.1.3.6.1.4.1.7571.100.1.1.7.9.4.4.{{ $index }}'
|
||||
descr: License Status
|
||||
index: 'integraEsysLicenseGenStatus.{{ $index }}'
|
||||
state_name: integraBsysLicenseGenStatus
|
||||
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 }
|
12
includes/definitions/saf-integra-e.yaml
Normal file
12
includes/definitions/saf-integra-e.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
os: saf-integra-e
|
||||
text: 'SAF Integra E'
|
||||
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.9
|
30
includes/polling/os/saf-integra-e.inc.php
Normal file
30
includes/polling/os/saf-integra-e.inc.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/**
|
||||
* saf-integra-e.inc.php
|
||||
*
|
||||
* Saf Integra E Polling module
|
||||
*
|
||||
* 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 2017 Neil Lathwood
|
||||
* @author Neil Lathwood <gh+n@laf.io>
|
||||
*/
|
||||
|
||||
preg_match('/Prod: ([A-Za-z-_]+);Vers: ([0-9.]+);.*;S\/N: ([0-9]+)/', $device['sysDescr'], $matches);
|
||||
|
||||
$hardware = $matches[1];
|
||||
$version = $matches[2];
|
||||
$serial = $matches[3];
|
2187
mibs/saf/SAF-INTEGRAE-MIB
Normal file
2187
mibs/saf/SAF-INTEGRAE-MIB
Normal file
File diff suppressed because it is too large
Load Diff
1451
tests/data/saf-integra-e.json
Normal file
1451
tests/data/saf-integra-e.json
Normal file
File diff suppressed because it is too large
Load Diff
379
tests/snmpsim/saf-integra-e.snmprec
Normal file
379
tests/snmpsim/saf-integra-e.snmprec
Normal file
@@ -0,0 +1,379 @@
|
||||
1.3.6.1.2.1.1.1.0|4|Prod: Integra-E;Vers: 3.17.10;Timestamp: 2020-05-05 13:34:59;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.15.5;P/C: D80R0U01L;S/N: 393300200125
|
||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.7571.100.1.1.7.9
|
||||
1.3.6.1.2.1.1.3.0|67|26063912
|
||||
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|WAN
|
||||
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|0004A6816EF9
|
||||
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|245472610
|
||||
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|244980490
|
||||
1.3.6.1.2.1.4.10.0|65|245007570
|
||||
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|590521
|
||||
1.3.6.1.2.1.4.15.0|65|98401
|
||||
1.3.6.1.2.1.4.16.0|65|24
|
||||
1.3.6.1.2.1.4.17.0|65|112642
|
||||
1.3.6.1.2.1.4.18.0|65|0
|
||||
1.3.6.1.2.1.4.19.0|65|675852
|
||||
1.3.6.1.2.1.4.20.1.2.10.35.14.2|2|3
|
||||
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.3.10.35.14.2|64|255.255.255.0
|
||||
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.22.1.2.2.172.16.1.100|4x|000000000002
|
||||
1.3.6.1.2.1.4.22.1.2.3.10.35.14.1|4x|5C5EAB12758F
|
||||
1.3.6.1.2.1.4.31.1.1.3.1|65|245421642
|
||||
1.3.6.1.2.1.4.31.1.1.4.1|70|245421642
|
||||
1.3.6.1.2.1.4.31.1.1.5.1|65|2567590907
|
||||
1.3.6.1.2.1.4.31.1.1.6.1|70|15452492795
|
||||
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|590197
|
||||
1.3.6.1.2.1.4.31.1.1.15.1|65|98347
|
||||
1.3.6.1.2.1.4.31.1.1.16.1|65|24
|
||||
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|244929792
|
||||
1.3.6.1.2.1.4.31.1.1.19.1|70|244929792
|
||||
1.3.6.1.2.1.4.31.1.1.20.1|65|244956867
|
||||
1.3.6.1.2.1.4.31.1.1.21.1|70|244956867
|
||||
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|112587
|
||||
1.3.6.1.2.1.4.31.1.1.27.1|65|112587
|
||||
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|675522
|
||||
1.3.6.1.2.1.4.31.1.1.30.1|65|245519802
|
||||
1.3.6.1.2.1.4.31.1.1.31.1|70|245519802
|
||||
1.3.6.1.2.1.4.31.1.1.32.1|65|2386933446
|
||||
1.3.6.1.2.1.4.31.1.1.33.1|70|15271835334
|
||||
1.3.6.1.2.1.4.31.1.1.34.1|65|27
|
||||
1.3.6.1.2.1.4.31.1.1.35.1|70|27
|
||||
1.3.6.1.2.1.4.31.1.1.36.1|65|864
|
||||
1.3.6.1.2.1.4.31.1.1.37.1|70|864
|
||||
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|0
|
||||
1.3.6.1.2.1.4.31.1.1.43.1|70|0
|
||||
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.10.35.14.1|4x|5C5EAB12758F
|
||||
1.3.6.1.2.1.5.1.0|65|3049
|
||||
1.3.6.1.2.1.5.2.0|65|1
|
||||
1.3.6.1.2.1.5.3.0|65|780
|
||||
1.3.6.1.2.1.5.4.0|65|1
|
||||
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|2251
|
||||
1.3.6.1.2.1.5.9.0|65|17
|
||||
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|3070
|
||||
1.3.6.1.2.1.5.15.0|65|0
|
||||
1.3.6.1.2.1.5.16.0|65|778
|
||||
1.3.6.1.2.1.5.17.0|65|23
|
||||
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|18
|
||||
1.3.6.1.2.1.5.22.0|65|2251
|
||||
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|3049
|
||||
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|1
|
||||
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|3070
|
||||
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|17
|
||||
1.3.6.1.2.1.5.30.1.3.1.3|65|780
|
||||
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|2251
|
||||
1.3.6.1.2.1.5.30.1.3.1.11|65|1
|
||||
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|2251
|
||||
1.3.6.1.2.1.5.30.1.4.1.3|65|778
|
||||
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|18
|
||||
1.3.6.1.2.1.5.30.1.4.1.11|65|23
|
||||
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|20
|
||||
1.3.6.1.2.1.6.6.0|65|300
|
||||
1.3.6.1.2.1.6.7.0|65|20
|
||||
1.3.6.1.2.1.6.8.0|65|7
|
||||
1.3.6.1.2.1.6.9.0|66|1
|
||||
1.3.6.1.2.1.6.10.0|65|244838925
|
||||
1.3.6.1.2.1.6.11.0|65|244862698
|
||||
1.3.6.1.2.1.6.12.0|65|2002
|
||||
1.3.6.1.2.1.6.14.0|65|0
|
||||
1.3.6.1.2.1.6.15.0|65|7
|
||||
1.3.6.1.2.1.6.19.1.7.1.4.172.16.1.10.40630.1.4.172.16.1.100.20567|2|5
|
||||
1.3.6.1.2.1.7.1.0|65|136040
|
||||
1.3.6.1.2.1.7.2.0|65|778
|
||||
1.3.6.1.2.1.7.3.0|65|0
|
||||
1.3.6.1.2.1.7.4.0|65|151032
|
||||
1.3.6.1.2.1.11.1.0|65|21250
|
||||
1.3.6.1.2.1.11.2.0|65|21225
|
||||
1.3.6.1.2.1.11.3.0|65|0
|
||||
1.3.6.1.2.1.11.4.0|65|24
|
||||
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|141932
|
||||
1.3.6.1.2.1.11.14.0|65|0
|
||||
1.3.6.1.2.1.11.15.0|65|4281
|
||||
1.3.6.1.2.1.11.16.0|65|4850
|
||||
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|21227
|
||||
1.3.6.1.2.1.11.29.0|65|0
|
||||
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|26064933
|
||||
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|WAN
|
||||
1.3.6.1.2.1.31.1.1.1.2.1|65|33416
|
||||
1.3.6.1.2.1.31.1.1.1.2.2|65|51107
|
||||
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|4637
|
||||
1.3.6.1.2.1.31.1.1.1.3.1|65|130
|
||||
1.3.6.1.2.1.31.1.1.1.3.2|65|1074
|
||||
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|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.1|65|55748
|
||||
1.3.6.1.2.1.31.1.1.1.4.2|65|38059
|
||||
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|84519
|
||||
1.3.6.1.2.1.31.1.1.1.5.1|65|1074
|
||||
1.3.6.1.2.1.31.1.1.1.5.2|65|130
|
||||
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|130
|
||||
1.3.6.1.2.1.31.1.1.1.6.1|70|3450976
|
||||
1.3.6.1.2.1.31.1.1.1.6.2|70|756077004
|
||||
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|993294
|
||||
1.3.6.1.2.1.31.1.1.1.7.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.2|70|590792
|
||||
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|7
|
||||
1.3.6.1.2.1.31.1.1.1.8.1|70|33416
|
||||
1.3.6.1.2.1.31.1.1.1.8.2|70|51107
|
||||
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|4637
|
||||
1.3.6.1.2.1.31.1.1.1.9.1|70|130
|
||||
1.3.6.1.2.1.31.1.1.1.9.2|70|1074
|
||||
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|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.1|70|4952389
|
||||
1.3.6.1.2.1.31.1.1.1.10.2|70|783890088
|
||||
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|7207611
|
||||
1.3.6.1.2.1.31.1.1.1.11.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.2|70|600380
|
||||
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|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.1|70|55748
|
||||
1.3.6.1.2.1.31.1.1.1.12.2|70|38059
|
||||
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|84519
|
||||
1.3.6.1.2.1.31.1.1.1.13.1|70|1074
|
||||
1.3.6.1.2.1.31.1.1.1.13.2|70|130
|
||||
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|130
|
||||
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|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.3|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.4|66|10000
|
||||
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|939200
|
||||
1.3.6.1.4.1.2021.4.11.0|2|939200
|
||||
1.3.6.1.4.1.2021.4.13.0|2|5320
|
||||
1.3.6.1.4.1.2021.4.14.0|2|0
|
||||
1.3.6.1.4.1.2021.4.15.0|2|48488
|
||||
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|4563
|
||||
1.3.6.1.4.1.2021.11.8.0|2|5472
|
||||
1.3.6.1.4.1.2021.11.9.0|2|10
|
||||
1.3.6.1.4.1.2021.11.10.0|2|6
|
||||
1.3.6.1.4.1.2021.11.11.0|2|81
|
||||
1.3.6.1.4.1.2021.11.50.0|65|5329701
|
||||
1.3.6.1.4.1.2021.11.51.0|65|0
|
||||
1.3.6.1.4.1.2021.11.52.0|65|3585655
|
||||
1.3.6.1.4.1.2021.11.53.0|65|41355515
|
||||
1.3.6.1.4.1.2021.11.54.0|65|1
|
||||
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|1324164452
|
||||
1.3.6.1.4.1.2021.11.60.0|65|1578469990
|
||||
1.3.6.1.4.1.2021.11.61.0|65|765169
|
||||
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.9.2.1.0|2|10
|
||||
1.3.6.1.4.1.7571.100.1.1.7.9.2.2.0|2|75750000
|
||||
1.3.6.1.4.1.7571.100.1.1.7.9.2.3.0|2|-31
|
||||
1.3.6.1.4.1.7571.100.1.1.7.9.2.7.0|2|85750000
|
||||
1.3.6.1.4.1.7571.100.1.1.7.9.3.2.0|2|-373
|
||||
1.3.6.1.4.1.7571.100.1.1.7.9.3.10.0|4|256QAM
|
||||
1.3.6.1.4.1.7571.100.1.1.7.9.3.11.0|2|1455400
|
||||
1.3.6.1.4.1.7571.100.1.1.7.9.3.14.0|2|-21083
|
||||
1.3.6.1.4.1.7571.100.1.1.7.9.4.2.0|2|295
|
||||
1.3.6.1.4.1.7571.100.1.1.7.9.4.4.0|2|4
|
||||
1.3.6.1.4.1.7571.100.1.1.7.9.4.5.0|2|53000
|
||||
1.3.6.1.4.1.7571.100.1.1.7.9.4.6.0|2|768
|
||||
1.3.6.1.4.1.7571.100.1.1.7.9.4.7.0|2|40700
|
||||
1.3.6.1.4.1.7571.100.1.1.7.9.4.8.0|2|225
|
||||
1.3.6.1.4.1.7571.100.1.1.7.9.4.10.0|2|793
|
||||
1.3.6.1.6.3.10.2.1.3.0|2|260639
|
Reference in New Issue
Block a user