mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Cleaned up Trango Apex Lynx OS code and added wireless sensors (#9026)
I removed an incorrect mib and added the correct one. Changed initial detection to use mib instead of numeric oid. Removed trim function. Added wireless sensor class. DO NOT DELETE THIS TEXT #### Please note > Please read this information carefully. You can run `./scripts/pre-commit.php` to check your code before submitting. - [ ] Have you followed our [code guidelines?](http://docs.librenms.org/Developing/Code-Guidelines/) #### Testers If you would like to test this pull request then please run: `./scripts/github-apply <pr_id>`, i.e `./scripts/github-apply 5926`
This commit is contained in:
120
LibreNMS/OS/ApexLynx.php
Normal file
120
LibreNMS/OS/ApexLynx.php
Normal file
@@ -0,0 +1,120 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* ApexLynx.php
|
||||
* Trango Systems Apex Lynx Wireless Sensors for LibreNMS
|
||||
* Author: Cory Hill (cory@metavrs.com)
|
||||
*
|
||||
*/
|
||||
|
||||
namespace LibreNMS\OS;
|
||||
|
||||
use LibreNMS\Device\WirelessSensor;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRssiDiscovery;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessFrequencyDiscovery;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessMseDiscovery;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRateDiscovery;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessErrorRateDiscovery;
|
||||
use LibreNMS\OS;
|
||||
|
||||
class ApexLynx extends OS implements
|
||||
WirelessRssiDiscovery,
|
||||
WirelessFrequencyDiscovery,
|
||||
WirelessMseDiscovery,
|
||||
WirelessRateDiscovery,
|
||||
WirelessErrorRateDiscovery
|
||||
{
|
||||
public function discoverWirelessRssi()
|
||||
{
|
||||
// GIGA-PLUS-MIB::rfRSSIInt
|
||||
$oid = '.1.3.6.1.4.1.5454.1.80.3.14.2.0';
|
||||
$sensors = array();
|
||||
|
||||
$sensors[] = new WirelessSensor(
|
||||
'rssi',
|
||||
$this->getDeviceId(),
|
||||
$oid,
|
||||
'apex-lynx',
|
||||
1,
|
||||
'RSSI'
|
||||
);
|
||||
return $sensors;
|
||||
}
|
||||
|
||||
public function discoverWirelessFrequency()
|
||||
{
|
||||
// GIGA-PLUS-MIB::rfTxFrequencyInt, rfRxFrequencyInt
|
||||
$txoid = '.1.3.6.1.4.1.5454.1.80.3.1.1.2.0';
|
||||
$rxoid = '.1.3.6.1.4.1.5454.1.80.3.1.2.2.0';
|
||||
|
||||
return array(
|
||||
new WirelessSensor(
|
||||
'frequency',
|
||||
$this->getDeviceId(),
|
||||
$txoid,
|
||||
'apex-lynx',
|
||||
0,
|
||||
'Tx Frequency'
|
||||
),
|
||||
new WirelessSensor(
|
||||
'frequency',
|
||||
$this->getDeviceId(),
|
||||
$rxoid,
|
||||
'apex-lynx',
|
||||
1,
|
||||
'Rx Frequency'
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
public function discoverWirelessMse()
|
||||
{
|
||||
// GIGA-PLUS-MIB::modemMSEInt
|
||||
$oid = '.1.3.6.1.4.1.5454.1.80.2.4.2.2.0';
|
||||
$sensors = array();
|
||||
|
||||
$sensors[] = new WirelessSensor(
|
||||
'mse',
|
||||
$this->getDeviceId(),
|
||||
$oid,
|
||||
'apex-lynx',
|
||||
1,
|
||||
'MSE'
|
||||
);
|
||||
return $sensors;
|
||||
}
|
||||
|
||||
public function discoverWirelessRate()
|
||||
{
|
||||
// GIGA-PLUS-MIB::rfSpeedInt
|
||||
$oid = '.1.3.6.1.4.1.5454.1.80.3.6.4.2.0';
|
||||
$sensors = array();
|
||||
|
||||
$sensors[] = new WirelessSensor(
|
||||
'rate',
|
||||
$this->getDeviceId(),
|
||||
$oid,
|
||||
'apex-lynx',
|
||||
1,
|
||||
'Rate'
|
||||
);
|
||||
return $sensors;
|
||||
}
|
||||
|
||||
public function discoverWirelessErrorRate()
|
||||
{
|
||||
// GIGA-PLUS-MIB::modemBER
|
||||
$oid = '.1.3.6.1.4.1.5454.1.80.2.4.1.1.0';
|
||||
$sensors = array();
|
||||
|
||||
$sensors[] = new WirelessSensor(
|
||||
'error-rate',
|
||||
$this->getDeviceId(),
|
||||
$oid,
|
||||
'apex-lynx',
|
||||
1,
|
||||
'BER'
|
||||
);
|
||||
return $sensors;
|
||||
}
|
||||
}
|
@@ -1,3 +1,4 @@
|
||||
<?php
|
||||
$version = trim(snmp_get($device, ".1.3.6.1.4.1.5454.1.80.1.1.2.0", "-Oqv"), '"');
|
||||
$hardware = $device['sysDescr'];
|
||||
|
||||
$version = snmp_get($device, '.1.3.6.1.4.1.5454.1.80.1.1.2.0', '-OQv');
|
||||
$hardware = 'Trango ' . $device['sysDescr'];
|
||||
|
@@ -1,618 +0,0 @@
|
||||
GIGA-PLUS-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY,
|
||||
OBJECT-TYPE,
|
||||
OBJECT-IDENTITY,
|
||||
IpAddress,
|
||||
Unsigned32,
|
||||
Counter64,
|
||||
NOTIFICATION-TYPE,
|
||||
enterprises
|
||||
FROM SNMPv2-SMI
|
||||
MODULE-COMPLIANCE
|
||||
FROM SNMPv2-CONF
|
||||
DisplayString
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
-- *******************************************************************
|
||||
-- * Trango module
|
||||
-- *******************************************************************
|
||||
trango OBJECT IDENTIFIER ::= { enterprises 5454 }
|
||||
tbw OBJECT IDENTIFIER ::= { trango 1 }
|
||||
ptp OBJECT IDENTIFIER ::= { tbw 80 }
|
||||
|
||||
sys OBJECT IDENTIFIER ::= { ptp 1 }
|
||||
modem OBJECT IDENTIFIER ::= { ptp 2 }
|
||||
rf OBJECT IDENTIFIER ::= { ptp 3 }
|
||||
gige OBJECT IDENTIFIER ::= { ptp 4 }
|
||||
tdm OBJECT IDENTIFIER ::= { ptp 5 }
|
||||
trangotrap OBJECT IDENTIFIER ::= { ptp 6 }
|
||||
|
||||
-- *******************************************************************
|
||||
-- ** System Information ** trango.tbw.ptp.sys
|
||||
-- *******************************************************************
|
||||
|
||||
community OBJECT IDENTIFIER ::= { sys 8 }
|
||||
|
||||
sysSNMPReadCommStr OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(1..32))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "SNMP agent read community string"
|
||||
::= { community 1 }
|
||||
|
||||
sysSNMPWriteCommStr OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(1..32))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "SNMP agent Write community string"
|
||||
::= { community 2 }
|
||||
|
||||
sysSNMPTrapCommStr OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(1..32))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "SNMP trap community string"
|
||||
::= { community 3 }
|
||||
|
||||
sysIDUTemp OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "PIC's current temperatur reading in Celsius"
|
||||
::= { sys 19 }
|
||||
|
||||
sysVoltage OBJECT-TYPE
|
||||
SYNTAX Opaque
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display system voltage"
|
||||
::= { sys 44 }
|
||||
|
||||
sysUptime OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(1..100))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display system uptime"
|
||||
::= { sys 45 }
|
||||
|
||||
sysVoltage12 OBJECT-TYPE
|
||||
SYNTAX Opaque
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display power input(1.2V) "
|
||||
::= { sys 49 }
|
||||
|
||||
sysVoltage25 OBJECT-TYPE
|
||||
SYNTAX Opaque
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display power input(2.5V)"
|
||||
::= { sys 50 }
|
||||
|
||||
sysVoltage33 OBJECT-TYPE
|
||||
SYNTAX Opaque
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display power input(3.3V)"
|
||||
::= { sys 51 }
|
||||
|
||||
acm OBJECT IDENTIFIER ::= { modem 3 }
|
||||
|
||||
profile_x OBJECT IDENTIFIER ::= { acm 5}
|
||||
|
||||
modemACMTxProfile OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ACM transmitter profile"
|
||||
::= { profile_x 1 }
|
||||
|
||||
modemACM256RxProfile OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ACM receiver profile"
|
||||
::= { profile_x 2 }
|
||||
|
||||
link OBJECT IDENTIFIER ::= { modem 4 }
|
||||
|
||||
link_ber OBJECT IDENTIFIER ::= { link 1 }
|
||||
|
||||
modemBER OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Set/Display BER value"
|
||||
::= { link_ber 1 }
|
||||
|
||||
modemBERStr OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..80))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display BER value string"
|
||||
::= { link_ber 2 }
|
||||
|
||||
mse OBJECT IDENTIFIER ::= { link 2 }
|
||||
|
||||
modemMSE OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display MSE value"
|
||||
::= { mse 1 }
|
||||
|
||||
modemMSEInt OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display MSE value"
|
||||
::= { mse 2 }
|
||||
|
||||
lock OBJECT IDENTIFIER ::= { modem 5 }
|
||||
|
||||
modemLockStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER { nolock(0), lock(1), NA(2) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Set/Display link lock statsu"
|
||||
::= { lock 1 }
|
||||
|
||||
debug OBJECT IDENTIFIER ::= { modem 6 }
|
||||
|
||||
modemLDPCStressDecoder OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display LDPC Stress Decoder"
|
||||
::= { debug 1 }
|
||||
|
||||
hc OBJECT IDENTIFIER ::= { modem 8 }
|
||||
|
||||
modemHCNetComp OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display HC net compression"
|
||||
::= { hc 4 }
|
||||
|
||||
modemHCGrossComp OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display HC gross compression"
|
||||
::= { hc 5 }
|
||||
|
||||
modemTxCapacity OBJECT-TYPE
|
||||
SYNTAX OPAQUE(Float)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display transmitter capacity"
|
||||
::= { modem 10 }
|
||||
|
||||
modemSpeedCurrent OBJECT-TYPE
|
||||
SYNTAX OPAQUE(Float)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display current speed"
|
||||
::= { modem 11 }
|
||||
|
||||
power OBJECT IDENTIFIER ::= { rf 4 }
|
||||
|
||||
rfPower OBJECT-TYPE
|
||||
SYNTAX Opaque
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Set/Display TX power. SNMPc does not support
|
||||
setting and displaying float value."
|
||||
::= { power 1 }
|
||||
|
||||
rfPowerInt OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Set/Display TX power 1/10 dB in step size "
|
||||
::= { power 2 }
|
||||
|
||||
rssi OBJECT IDENTIFIER ::= { rf 14 }
|
||||
|
||||
rfRSSIInt OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display current RSSI value "
|
||||
::= { rssi 2 }
|
||||
|
||||
pll OBJECT IDENTIFIER ::= { rf 15 }
|
||||
|
||||
rfODUIFpll OBJECT-TYPE
|
||||
SYNTAX INTEGER { nolock(0), lock(1), NA(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Display current status of ODU IF PLL "
|
||||
::= { pll 2 }
|
||||
|
||||
rfODUTxpll OBJECT-TYPE
|
||||
SYNTAX INTEGER { nolock(0), lock(1), NA(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Display current status of ODU TX PLL "
|
||||
::= { pll 3 }
|
||||
|
||||
rfODURxpll OBJECT-TYPE
|
||||
SYNTAX INTEGER { nolock(0), lock(1), NA(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Display current status of ODU RX PLL "
|
||||
::= { pll 4 }
|
||||
|
||||
rfIDUTxpll OBJECT-TYPE
|
||||
SYNTAX INTEGER { nolock(0), lock(1), NA(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Display current status of IDU TX PLL "
|
||||
::= { pll 5 }
|
||||
|
||||
eth1 OBJECT IDENTIFIER ::= { gige 1 }
|
||||
|
||||
config1 OBJECT IDENTIFIER ::= { eth1 1 }
|
||||
|
||||
gigeEth1Speed OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Set/Display speed setting for ETH 1"
|
||||
::= { config1 7 }
|
||||
|
||||
gigeEth1Status OBJECT-TYPE
|
||||
SYNTAX INTEGER { off(0), on(1) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Set/Display port status for ETH 1"
|
||||
::= { config1 8 }
|
||||
|
||||
counter1 OBJECT IDENTIFIER ::= { eth1 2 }
|
||||
|
||||
gigeEth1InTotalPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH1 IN non-unicast packet counter"
|
||||
::= { counter1 4 }
|
||||
|
||||
gigeEth1OutTotalPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH1 OUT total packet counter"
|
||||
::= { counter1 8 }
|
||||
|
||||
gigeEth1CRCError OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH1 CRC error counter"
|
||||
::= { counter1 9 }
|
||||
|
||||
gigeEth1CollisionError OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH1 Collision error counter"
|
||||
::= { counter1 10 }
|
||||
|
||||
gigeEth1InPortRate OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH1 In Port Rate"
|
||||
::= { counter1 11 }
|
||||
|
||||
gigeEth1InPortUtil OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH1 In Port utilization"
|
||||
::= { counter1 12 }
|
||||
|
||||
gigeEth1OutPortRate OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH1 Out Port Rate"
|
||||
::= { counter1 13 }
|
||||
|
||||
gigeEth1OutPortUtil OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH1 Out Port utilization"
|
||||
::= { counter1 14 }
|
||||
|
||||
gigeEth1InDiscard OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display Eth1 In Discard"
|
||||
::= { counter1 15 }
|
||||
|
||||
gigeEth1OutDiscard OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display Eth1 Out Discard"
|
||||
::= { counter1 16 }
|
||||
|
||||
eth2 OBJECT IDENTIFIER ::= { gige 2 }
|
||||
|
||||
config2 OBJECT IDENTIFIER ::= { eth2 1 }
|
||||
|
||||
gigeEth2Speed OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Set/Display speed setting for ETH 2"
|
||||
::= { config2 7 }
|
||||
|
||||
gigeEth2Status OBJECT-TYPE
|
||||
SYNTAX INTEGER { off(0), on(1) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Set/Display port status for ETH 2"
|
||||
::= { config2 8 }
|
||||
|
||||
counter2 OBJECT IDENTIFIER ::= { eth2 2 }
|
||||
|
||||
gigeEth2InTotalPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH2 IN non-unicast packet counter"
|
||||
::= { counter2 4 }
|
||||
|
||||
gigeEth2OutTotalPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH2 OUT total packet counter"
|
||||
::= { counter2 8 }
|
||||
|
||||
gigeEth2CRCError OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH2 CRC error counter"
|
||||
::= { counter2 9 }
|
||||
|
||||
gigeEth2CollisionError OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH2 Collision error counter"
|
||||
::= { counter2 10 }
|
||||
|
||||
gigeEth2InPortRate OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH2 In Port Rate"
|
||||
::= { counter2 11 }
|
||||
|
||||
gigeEth2InPortUtil OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH2 In Port utilization"
|
||||
::= { counter2 12 }
|
||||
|
||||
gigeEth2OutPortRate OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH2 Out Port Rate"
|
||||
::= { counter2 13 }
|
||||
|
||||
gigeEth2OutPortUtil OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH2 Out Port utilization"
|
||||
::= { counter2 14 }
|
||||
|
||||
gigeEth2InDiscard OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display Eth2 In Discard"
|
||||
::= { counter2 15 }
|
||||
|
||||
gigeEth2OutDiscard OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display Eth2 Out Discard"
|
||||
::= { counter2 16 }
|
||||
|
||||
eth3 OBJECT IDENTIFIER ::= { gige 3 }
|
||||
|
||||
config3 OBJECT IDENTIFIER ::= { eth3 1 }
|
||||
|
||||
gigeEth3Speed OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Set/Display speed setting for ETH 3"
|
||||
::= { config3 7 }
|
||||
|
||||
gigeEth3Status OBJECT-TYPE
|
||||
SYNTAX INTEGER { off(0), on(1) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Set/Display port status for ETH 3"
|
||||
::= { config3 8 }
|
||||
|
||||
counter3 OBJECT IDENTIFIER ::= { eth3 2 }
|
||||
|
||||
gigeEth3InTotalPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH3 IN non-unicast packet counter"
|
||||
::= { counter3 4 }
|
||||
|
||||
gigeEth3OutTotalPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH3 OUT total packet counter"
|
||||
::= { counter3 8 }
|
||||
|
||||
gigeEth3CRCError OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH3 CRC error counter"
|
||||
::= { counter3 9 }
|
||||
|
||||
gigeEth3CollisionError OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH3 Collision error counter"
|
||||
::= { counter3 10 }
|
||||
|
||||
gigeEth3InPortRate OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH3 In Port Rate"
|
||||
::= { counter3 11 }
|
||||
|
||||
gigeEth3InPortUtil OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH3 In Port utilization"
|
||||
::= { counter3 12 }
|
||||
|
||||
gigeEth3OutPortRate OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH3 Out Port Rate"
|
||||
::= { counter3 13 }
|
||||
|
||||
gigeEth3OutPortUtil OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH3 Out Port utilization"
|
||||
::= { counter3 14 }
|
||||
|
||||
gigeEth3InDiscard OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display Eth3 In Discard"
|
||||
::= { counter3 15 }
|
||||
|
||||
gigeEth3OutDiscard OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display Eth3 Out Discard"
|
||||
::= { counter3 16 }
|
||||
|
||||
eth4 OBJECT IDENTIFIER ::= { gige 4 }
|
||||
|
||||
config4 OBJECT IDENTIFIER ::= { eth4 1 }
|
||||
|
||||
gigeEth4Speed OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Set/Display speed setting for ETH 4"
|
||||
::= { config4 7 }
|
||||
|
||||
gigeEth4Status OBJECT-TYPE
|
||||
SYNTAX INTEGER { off(0), on(1) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Set/Display port status for ETH 4"
|
||||
::= { config4 8 }
|
||||
|
||||
counter4 OBJECT IDENTIFIER ::= { eth4 2 }
|
||||
|
||||
gigeEth4InTotalPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH3 IN non-unicast packet counter"
|
||||
::= { counter4 4 }
|
||||
|
||||
gigeEth4OutTotalPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH3 OUT total packet counter"
|
||||
::= { counter4 8 }
|
||||
|
||||
gigeEth4CRCError OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH3 CRC error counter"
|
||||
::= { counter4 9 }
|
||||
|
||||
gigeEth4CollisionError OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH3 Collision error counter"
|
||||
::= { counter4 10 }
|
||||
|
||||
gigeEth4InPortRate OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH3 In Port Rate"
|
||||
::= { counter4 11 }
|
||||
|
||||
gigeEth4InPortUtil OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display ETH3 In Port utilization"
|
||||
::= { counter4 12 }
|
||||
|
||||
gigeEth4OutPortRate OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display Eth4 Out Port Rate"
|
||||
::= { counter4 13 }
|
||||
|
||||
gigeEth4OutPortUtil OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display Eth4 Out Port utilization"
|
||||
::= { counter4 14 }
|
||||
|
||||
gigeEth4InDiscard OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display Eth4 In Discard"
|
||||
::= { counter4 15 }
|
||||
|
||||
gigeEth4OutDiscard OBJECT-TYPE
|
||||
SYNTAX Integer
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Display Eth4 Out Discard"
|
||||
::= { counter4 16 }
|
||||
|
||||
END
|
||||
|
972
tests/data/apex-lynx.json
Normal file
972
tests/data/apex-lynx.json
Normal file
@@ -0,0 +1,972 @@
|
||||
{
|
||||
"os": {
|
||||
"discovery": {
|
||||
"devices": [
|
||||
{
|
||||
"sysName": "<private>",
|
||||
"sysObjectID": ".1.3",
|
||||
"sysDescr": "Apex Lynx-2.0.2",
|
||||
"sysContact": null,
|
||||
"version": null,
|
||||
"hardware": "",
|
||||
"features": null,
|
||||
"location": null,
|
||||
"os": "apex-lynx",
|
||||
"type": "wireless",
|
||||
"serial": null,
|
||||
"icon": "trango.png"
|
||||
}
|
||||
]
|
||||
},
|
||||
"poller": {
|
||||
"devices": [
|
||||
{
|
||||
"sysName": "<private>",
|
||||
"sysObjectID": ".1.3",
|
||||
"sysDescr": "Apex Lynx-2.0.2",
|
||||
"sysContact": "<private>",
|
||||
"version": "2p6r22b0D031716",
|
||||
"hardware": "Trango Apex Lynx-2.0.2",
|
||||
"features": null,
|
||||
"location": "<private>",
|
||||
"os": "apex-lynx",
|
||||
"type": "wireless",
|
||||
"serial": null,
|
||||
"icon": "trango.png"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"ports": {
|
||||
"discovery": {
|
||||
"ports": [
|
||||
{
|
||||
"port_descr_type": null,
|
||||
"port_descr_descr": null,
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "lo",
|
||||
"ifName": "lo",
|
||||
"portName": null,
|
||||
"ifIndex": "1",
|
||||
"ifSpeed": null,
|
||||
"ifConnectorPresent": null,
|
||||
"ifPromiscuousMode": null,
|
||||
"ifHighSpeed": null,
|
||||
"ifOperStatus": null,
|
||||
"ifOperStatus_prev": null,
|
||||
"ifAdminStatus": null,
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifMtu": null,
|
||||
"ifType": null,
|
||||
"ifAlias": "",
|
||||
"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,
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "eth1",
|
||||
"ifName": "eth1",
|
||||
"portName": null,
|
||||
"ifIndex": "2",
|
||||
"ifSpeed": null,
|
||||
"ifConnectorPresent": null,
|
||||
"ifPromiscuousMode": null,
|
||||
"ifHighSpeed": null,
|
||||
"ifOperStatus": null,
|
||||
"ifOperStatus_prev": null,
|
||||
"ifAdminStatus": null,
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifMtu": null,
|
||||
"ifType": null,
|
||||
"ifAlias": "",
|
||||
"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,
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "eth2",
|
||||
"ifName": "eth2",
|
||||
"portName": null,
|
||||
"ifIndex": "3",
|
||||
"ifSpeed": null,
|
||||
"ifConnectorPresent": null,
|
||||
"ifPromiscuousMode": null,
|
||||
"ifHighSpeed": null,
|
||||
"ifOperStatus": null,
|
||||
"ifOperStatus_prev": null,
|
||||
"ifAdminStatus": null,
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifMtu": null,
|
||||
"ifType": null,
|
||||
"ifAlias": "",
|
||||
"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
|
||||
}
|
||||
]
|
||||
},
|
||||
"poller": {
|
||||
"ports": [
|
||||
{
|
||||
"port_descr_type": null,
|
||||
"port_descr_descr": null,
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "lo",
|
||||
"ifName": "lo",
|
||||
"portName": null,
|
||||
"ifIndex": "1",
|
||||
"ifSpeed": "10000000",
|
||||
"ifConnectorPresent": null,
|
||||
"ifPromiscuousMode": "false",
|
||||
"ifHighSpeed": "10",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": null,
|
||||
"ifAdminStatus": "up",
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifMtu": "16436",
|
||||
"ifType": "softwareLoopback",
|
||||
"ifAlias": "lo",
|
||||
"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": "2667434",
|
||||
"ifInUcastPkts_prev": "0",
|
||||
"ifInUcastPkts_delta": null,
|
||||
"ifInUcastPkts_rate": null,
|
||||
"ifOutUcastPkts": "2667434",
|
||||
"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": "3215768666",
|
||||
"ifInOctets_prev": "0",
|
||||
"ifInOctets_delta": null,
|
||||
"ifInOctets_rate": null,
|
||||
"ifOutOctets": "3215768666",
|
||||
"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,
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "eth1",
|
||||
"ifName": "eth1",
|
||||
"portName": null,
|
||||
"ifIndex": "2",
|
||||
"ifSpeed": "100000000",
|
||||
"ifConnectorPresent": "true",
|
||||
"ifPromiscuousMode": "false",
|
||||
"ifHighSpeed": "100",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": null,
|
||||
"ifAdminStatus": "up",
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifMtu": "1500",
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth1",
|
||||
"ifPhysAddress": "0001de806c60",
|
||||
"ifHardType": null,
|
||||
"ifLastChange": "624404754",
|
||||
"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": "59140156",
|
||||
"ifInUcastPkts_prev": "0",
|
||||
"ifInUcastPkts_delta": null,
|
||||
"ifInUcastPkts_rate": null,
|
||||
"ifOutUcastPkts": "64769667",
|
||||
"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": "2326550759",
|
||||
"ifInOctets_prev": "0",
|
||||
"ifInOctets_delta": null,
|
||||
"ifInOctets_rate": null,
|
||||
"ifOutOctets": "3490552589",
|
||||
"ifOutOctets_prev": "0",
|
||||
"ifOutOctets_delta": null,
|
||||
"ifOutOctets_rate": null,
|
||||
"poll_prev": null,
|
||||
"ifInNUcastPkts": "1729218",
|
||||
"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": "1729218",
|
||||
"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,
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "eth2",
|
||||
"ifName": "eth2",
|
||||
"portName": null,
|
||||
"ifIndex": "3",
|
||||
"ifSpeed": "100000000",
|
||||
"ifConnectorPresent": "true",
|
||||
"ifPromiscuousMode": "false",
|
||||
"ifHighSpeed": "100",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": null,
|
||||
"ifAdminStatus": "up",
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifMtu": "1500",
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth2",
|
||||
"ifPhysAddress": "0002b3030303",
|
||||
"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": "2220118747",
|
||||
"ifInUcastPkts_prev": "0",
|
||||
"ifInUcastPkts_delta": null,
|
||||
"ifInUcastPkts_rate": null,
|
||||
"ifOutUcastPkts": "2220118738",
|
||||
"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": "1343497355",
|
||||
"ifInOctets_prev": "0",
|
||||
"ifInOctets_delta": null,
|
||||
"ifInOctets_rate": null,
|
||||
"ifOutOctets": "2458911987",
|
||||
"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
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"processors": {
|
||||
"discovery": {
|
||||
"processors": [
|
||||
{
|
||||
"entPhysicalIndex": "0",
|
||||
"hrDeviceIndex": "768",
|
||||
"processor_oid": ".1.3.6.1.2.1.25.3.3.1.2.768",
|
||||
"processor_index": "768",
|
||||
"processor_type": "hr",
|
||||
"processor_usage": "25",
|
||||
"processor_descr": "Processor",
|
||||
"processor_precision": "1",
|
||||
"processor_perc_warn": "75"
|
||||
}
|
||||
]
|
||||
},
|
||||
"poller": "matches discovery"
|
||||
},
|
||||
"bgp-peers": {
|
||||
"discovery": {
|
||||
"devices": [
|
||||
{
|
||||
"bgpLocalAs": null
|
||||
}
|
||||
],
|
||||
"bgpPeers": [],
|
||||
"bgpPeers_cbgp": []
|
||||
},
|
||||
"poller": "matches discovery"
|
||||
},
|
||||
"wireless": {
|
||||
"discovery": {
|
||||
"wireless_sensors": [
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "rate",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "apex-lynx",
|
||||
"sensor_descr": "Rate",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": "24400",
|
||||
"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.5454.1.80.3.6.4.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "mse",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "apex-lynx",
|
||||
"sensor_descr": "MSE",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": "-21",
|
||||
"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.5454.1.80.2.4.2.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "rssi",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "apex-lynx",
|
||||
"sensor_descr": "RSSI",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": "-70",
|
||||
"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.5454.1.80.3.14.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "error-rate",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "apex-lynx",
|
||||
"sensor_descr": "BER",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": "881110000",
|
||||
"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.5454.1.80.2.4.1.1.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "frequency",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "apex-lynx",
|
||||
"sensor_descr": "Tx Frequency",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": "17900000",
|
||||
"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.5454.1.80.3.1.1.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "frequency",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "apex-lynx",
|
||||
"sensor_descr": "Rx Frequency",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": "19460000",
|
||||
"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.5454.1.80.3.1.2.2.0\"]"
|
||||
}
|
||||
]
|
||||
},
|
||||
"poller": {
|
||||
"wireless_sensors": [
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "rate",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "apex-lynx",
|
||||
"sensor_descr": "Rate",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": "24400",
|
||||
"sensor_prev": "24400",
|
||||
"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.5454.1.80.3.6.4.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "mse",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "apex-lynx",
|
||||
"sensor_descr": "MSE",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": "-21",
|
||||
"sensor_prev": "-21",
|
||||
"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.5454.1.80.2.4.2.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "rssi",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "apex-lynx",
|
||||
"sensor_descr": "RSSI",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": "-70",
|
||||
"sensor_prev": "-70",
|
||||
"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.5454.1.80.3.14.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "error-rate",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "apex-lynx",
|
||||
"sensor_descr": "BER",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": "881110000",
|
||||
"sensor_prev": "881110000",
|
||||
"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.5454.1.80.2.4.1.1.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "frequency",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "apex-lynx",
|
||||
"sensor_descr": "Tx Frequency",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": "17900000",
|
||||
"sensor_prev": "17900000",
|
||||
"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.5454.1.80.3.1.1.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "frequency",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "apex-lynx",
|
||||
"sensor_descr": "Rx Frequency",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": "19460000",
|
||||
"sensor_prev": "19460000",
|
||||
"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.5454.1.80.3.1.2.2.0\"]"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,2 +1,304 @@
|
||||
1.3.6.1.2.1.1.1.0|4|Apex Lynx-2.0.2
|
||||
1.3.6.1.2.1.1.2.0|6|.1.3
|
||||
1.3.6.1.2.1.1.2.0|6|.1.3
|
||||
1.3.6.1.2.1.1.3.0|67|3218145521
|
||||
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.1.1|2|1
|
||||
1.3.6.1.2.1.2.2.1.1.2|2|2
|
||||
1.3.6.1.2.1.2.2.1.1.3|2|3
|
||||
1.3.6.1.2.1.2.2.1.2.1|4|lo
|
||||
1.3.6.1.2.1.2.2.1.2.2|4|eth1
|
||||
1.3.6.1.2.1.2.2.1.2.3|4|eth2
|
||||
1.3.6.1.2.1.2.2.1.3.1|2|24
|
||||
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.4.1|2|16436
|
||||
1.3.6.1.2.1.2.2.1.4.2|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.3|2|1500
|
||||
1.3.6.1.2.1.2.2.1.5.1|66|10000000
|
||||
1.3.6.1.2.1.2.2.1.5.2|66|100000000
|
||||
1.3.6.1.2.1.2.2.1.5.3|66|100000000
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|0001DE806C60
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|0002B3030303
|
||||
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.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|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|624404754
|
||||
1.3.6.1.2.1.2.2.1.9.3|67|0
|
||||
1.3.6.1.2.1.2.2.1.10.1|65|3215768666
|
||||
1.3.6.1.2.1.2.2.1.10.2|65|2326550759
|
||||
1.3.6.1.2.1.2.2.1.10.3|65|1343497355
|
||||
1.3.6.1.2.1.2.2.1.11.1|65|2667434
|
||||
1.3.6.1.2.1.2.2.1.11.2|65|59140156
|
||||
1.3.6.1.2.1.2.2.1.11.3|65|2220118747
|
||||
1.3.6.1.2.1.2.2.1.12.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.12.2|65|1729218
|
||||
1.3.6.1.2.1.2.2.1.12.3|65|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.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.15.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.15.2|65|0
|
||||
1.3.6.1.2.1.2.2.1.15.3|65|0
|
||||
1.3.6.1.2.1.2.2.1.16.1|65|3215768666
|
||||
1.3.6.1.2.1.2.2.1.16.2|65|3490552589
|
||||
1.3.6.1.2.1.2.2.1.16.3|65|2458911987
|
||||
1.3.6.1.2.1.2.2.1.17.1|65|2667434
|
||||
1.3.6.1.2.1.2.2.1.17.2|65|64769667
|
||||
1.3.6.1.2.1.2.2.1.17.3|65|2220118738
|
||||
1.3.6.1.2.1.2.2.1.18.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.18.2|65|0
|
||||
1.3.6.1.2.1.2.2.1.18.3|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.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.21.1|66|0
|
||||
1.3.6.1.2.1.2.2.1.21.2|66|0
|
||||
1.3.6.1.2.1.2.2.1.21.3|66|0
|
||||
1.3.6.1.2.1.2.2.1.22.1|6|0.0
|
||||
1.3.6.1.2.1.2.2.1.22.2|6|0.0
|
||||
1.3.6.1.2.1.2.2.1.22.3|6|0.0
|
||||
1.3.6.1.2.1.4.3.0|65|2278551342
|
||||
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|1729218
|
||||
1.3.6.1.2.1.4.8.0|65|0
|
||||
1.3.6.1.2.1.4.9.0|65|2276822124
|
||||
1.3.6.1.2.1.4.10.0|65|2285483301
|
||||
1.3.6.1.2.1.4.11.0|65|1
|
||||
1.3.6.1.2.1.4.12.0|65|2
|
||||
1.3.6.1.2.1.4.14.0|65|0
|
||||
1.3.6.1.2.1.4.15.0|65|0
|
||||
1.3.6.1.2.1.4.16.0|65|0
|
||||
1.3.6.1.2.1.4.17.0|65|0
|
||||
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.3.10.30.0.30|64|255.255.255.128
|
||||
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.128|64|255.255.255.128
|
||||
1.3.6.1.2.1.4.22.1.2.2.10.30.0.1|4x|02F2ACDDB5D7
|
||||
1.3.6.1.2.1.4.22.1.2.3.172.16.1.139|4x|020000000000
|
||||
1.3.6.1.2.1.4.31.1.1.3.1|65|2278509548
|
||||
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|1729215
|
||||
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.14.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.15.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.16.1|65|0
|
||||
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|2276780337
|
||||
1.3.6.1.2.1.4.31.1.1.20.1|65|2285441496
|
||||
1.3.6.1.2.1.4.31.1.1.22.1|65|2
|
||||
1.3.6.1.2.1.4.31.1.1.23.1|65|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|0
|
||||
1.3.6.1.2.1.4.31.1.1.27.1|65|0
|
||||
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|0
|
||||
1.3.6.1.2.1.4.31.1.1.30.1|65|2285441494
|
||||
1.3.6.1.2.1.4.31.1.1.34.1|65|1729211
|
||||
1.3.6.1.2.1.4.31.1.1.38.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.42.1|65|634612
|
||||
1.3.6.1.2.1.4.31.1.1.44.1|65|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.10.30.0.1|4x|02CA6D745A55
|
||||
1.3.6.1.2.1.4.35.1.4.3.1.4.172.16.1.139|4x|020000000000
|
||||
1.3.6.1.2.1.5.1.0|65|19077256
|
||||
1.3.6.1.2.1.5.2.0|65|2058341
|
||||
1.3.6.1.2.1.5.3.0|65|16081955
|
||||
1.3.6.1.2.1.5.4.0|65|0
|
||||
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|2995299
|
||||
1.3.6.1.2.1.5.9.0|65|0
|
||||
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|2996123
|
||||
1.3.6.1.2.1.5.15.0|65|0
|
||||
1.3.6.1.2.1.5.16.0|65|824
|
||||
1.3.6.1.2.1.5.17.0|65|0
|
||||
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|0
|
||||
1.3.6.1.2.1.5.22.0|65|2995299
|
||||
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|19077256
|
||||
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|2058341
|
||||
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|2996123
|
||||
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|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.3|65|16081955
|
||||
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|2995299
|
||||
1.3.6.1.2.1.5.30.1.3.1.11|65|0
|
||||
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.4.1.0|65|2995299
|
||||
1.3.6.1.2.1.5.30.1.4.1.3|65|824
|
||||
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|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.11|65|0
|
||||
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.6.5.0|65|2
|
||||
1.3.6.1.2.1.6.6.0|65|14513
|
||||
1.3.6.1.2.1.6.7.0|65|0
|
||||
1.3.6.1.2.1.6.8.0|65|2
|
||||
1.3.6.1.2.1.6.9.0|66|0
|
||||
1.3.6.1.2.1.6.10.0|65|297621
|
||||
1.3.6.1.2.1.6.11.0|65|292212
|
||||
1.3.6.1.2.1.6.12.0|65|101
|
||||
1.3.6.1.2.1.6.14.0|65|0
|
||||
1.3.6.1.2.1.6.15.0|65|1
|
||||
1.3.6.1.2.1.7.1.0|65|2256732279
|
||||
1.3.6.1.2.1.7.2.0|65|812
|
||||
1.3.6.1.2.1.7.3.0|65|80009
|
||||
1.3.6.1.2.1.7.4.0|65|2282195334
|
||||
1.3.6.1.2.1.11.1.0|65|35288035
|
||||
1.3.6.1.2.1.11.2.0|65|35288021
|
||||
1.3.6.1.2.1.11.3.0|65|0
|
||||
1.3.6.1.2.1.11.4.0|65|14
|
||||
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|78135359
|
||||
1.3.6.1.2.1.11.14.0|65|0
|
||||
1.3.6.1.2.1.11.15.0|65|4211709
|
||||
1.3.6.1.2.1.11.16.0|65|27110521
|
||||
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|960245
|
||||
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|35288045
|
||||
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.25.1.1.0|67|2593752205
|
||||
1.3.6.1.2.1.25.1.5.0|66|0
|
||||
1.3.6.1.2.1.25.1.6.0|66|86
|
||||
1.3.6.1.2.1.25.3.2.1.1.768|2|768
|
||||
1.3.6.1.2.1.25.3.2.1.1.1025|2|1025
|
||||
1.3.6.1.2.1.25.3.2.1.1.1026|2|1026
|
||||
1.3.6.1.2.1.25.3.2.1.3.768|4|
|
||||
1.3.6.1.2.1.25.3.2.1.3.1025|4|network interface lo
|
||||
1.3.6.1.2.1.25.3.2.1.3.1026|4|network interface eth1
|
||||
1.3.6.1.2.1.25.3.3.1.2.768|2|25
|
||||
1.3.6.1.2.1.31.1.1.1.1.1|4|lo
|
||||
1.3.6.1.2.1.31.1.1.1.1.2|4|eth1
|
||||
1.3.6.1.2.1.31.1.1.1.1.3|4|eth2
|
||||
1.3.6.1.2.1.31.1.1.1.2.1|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.2|65|1729218
|
||||
1.3.6.1.2.1.31.1.1.1.2.3|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.1|65|0
|
||||
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|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.1|65|0
|
||||
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|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.1|65|0
|
||||
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|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.1|66|10
|
||||
1.3.6.1.2.1.31.1.1.1.15.2|66|100
|
||||
1.3.6.1.2.1.31.1.1.1.15.3|66|100
|
||||
1.3.6.1.2.1.31.1.1.1.16.1|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.2|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.3|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.2|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.3|2|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.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.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|256924
|
||||
1.3.6.1.4.1.2021.4.6.0|2|140516
|
||||
1.3.6.1.4.1.2021.4.11.0|2|140516
|
||||
1.3.6.1.4.1.2021.4.14.0|2|52964
|
||||
1.3.6.1.4.1.2021.4.15.0|2|13648
|
||||
1.3.6.1.4.1.2021.10.1.5.1|2|128
|
||||
1.3.6.1.4.1.2021.10.1.5.2|2|89
|
||||
1.3.6.1.4.1.2021.10.1.5.3|2|57
|
||||
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|661
|
||||
1.3.6.1.4.1.2021.11.8.0|2|3810
|
||||
1.3.6.1.4.1.2021.11.9.0|2|9
|
||||
1.3.6.1.4.1.2021.11.10.0|2|10
|
||||
1.3.6.1.4.1.2021.11.11.0|2|75
|
||||
1.3.6.1.4.1.2021.11.50.0|65|201473378
|
||||
1.3.6.1.4.1.2021.11.51.0|65|0
|
||||
1.3.6.1.4.1.2021.11.52.0|65|248165625
|
||||
1.3.6.1.4.1.2021.11.53.0|65|2045080501
|
||||
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|10825219
|
||||
1.3.6.1.4.1.2021.11.57.0|65|30391388
|
||||
1.3.6.1.4.1.2021.11.58.0|65|23546
|
||||
1.3.6.1.4.1.2021.11.59.0|65|619429418
|
||||
1.3.6.1.4.1.2021.11.60.0|65|2496436818
|
||||
1.3.6.1.4.1.2021.11.61.0|65|88215216
|
||||
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.5454.1.80.1.1.2.0|4|2p6r22b0D031716
|
||||
1.3.6.1.4.1.5454.1.80.2.4.1.1.0|2|881110303
|
||||
1.3.6.1.4.1.5454.1.80.2.4.2.2.0|2|-21
|
||||
1.3.6.1.4.1.5454.1.80.3.1.1.2.0|2|17900000
|
||||
1.3.6.1.4.1.5454.1.80.3.1.2.2.0|2|19460000
|
||||
1.3.6.1.4.1.5454.1.80.3.6.4.2.0|2|24400
|
||||
1.3.6.1.4.1.5454.1.80.3.14.2.0|2|-70
|
||||
1.3.6.1.6.3.10.2.1.3.0|2|25937502
|
||||
|
Reference in New Issue
Block a user