mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Mikrotik - Updated MIB file and added Wireless Quality (#11347)
* Updated MIB file and added Wireless Quality * Update snmprec file * New snmprec file and restore original routeros.snmprec * Revert "New snmprec file and restore original routeros.snmprec" This reverts commit ce3a1fbc048b7b084adf3b07f17b5119b9e60d4f. * Fix snmprec files * Create routeros_wifi.json * Update routeros.json * rebase, more Co-authored-by: PipoCanaja <38363551+PipoCanaja@users.noreply.github.com>
This commit is contained in:
@@ -36,6 +36,7 @@ use LibreNMS\Interfaces\Discovery\Sensors\WirelessDistanceDiscovery;
|
|||||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRsrqDiscovery;
|
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRsrqDiscovery;
|
||||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRsrpDiscovery;
|
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRsrpDiscovery;
|
||||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessSinrDiscovery;
|
use LibreNMS\Interfaces\Discovery\Sensors\WirelessSinrDiscovery;
|
||||||
|
use LibreNMS\Interfaces\Discovery\Sensors\WirelessQualityDiscovery;
|
||||||
use LibreNMS\OS;
|
use LibreNMS\OS;
|
||||||
|
|
||||||
class Routeros extends OS implements
|
class Routeros extends OS implements
|
||||||
@@ -48,7 +49,8 @@ class Routeros extends OS implements
|
|||||||
WirelessDistanceDiscovery,
|
WirelessDistanceDiscovery,
|
||||||
WirelessRsrqDiscovery,
|
WirelessRsrqDiscovery,
|
||||||
WirelessRsrpDiscovery,
|
WirelessRsrpDiscovery,
|
||||||
WirelessSinrDiscovery
|
WirelessSinrDiscovery,
|
||||||
|
WirelessQualityDiscovery
|
||||||
{
|
{
|
||||||
private $data;
|
private $data;
|
||||||
|
|
||||||
@@ -133,6 +135,20 @@ class Routeros extends OS implements
|
|||||||
'.1.3.6.1.4.1.14988.1.1.1.8.1.12.'
|
'.1.3.6.1.4.1.14988.1.1.1.8.1.12.'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Discover wireless Quality. This is in Dbm. Type is Dbm.
|
||||||
|
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
|
||||||
|
*
|
||||||
|
* @return array Sensors
|
||||||
|
*/
|
||||||
|
public function discoverWirelessQuality()
|
||||||
|
{
|
||||||
|
return $this->discoverSensor(
|
||||||
|
'quality',
|
||||||
|
'mtxrWl60GSignal',
|
||||||
|
'.1.3.6.1.4.1.14988.1.1.1.8.1.8.'
|
||||||
|
);
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
|
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
|
||||||
*
|
*
|
||||||
|
@@ -7,11 +7,11 @@ TEXTUAL-CONVENTION, DisplayString, MacAddress, DateAndTime FROM SNMPv2-TC
|
|||||||
OBJECT-GROUP, NOTIFICATION-GROUP FROM SNMPv2-CONF;
|
OBJECT-GROUP, NOTIFICATION-GROUP FROM SNMPv2-CONF;
|
||||||
|
|
||||||
mikrotikExperimentalModule MODULE-IDENTITY
|
mikrotikExperimentalModule MODULE-IDENTITY
|
||||||
LAST-UPDATED "201801030000Z"
|
LAST-UPDATED "201807310000Z"
|
||||||
ORGANIZATION "MikroTik"
|
ORGANIZATION "MikroTik"
|
||||||
CONTACT-INFO "support@mikrotik.com"
|
CONTACT-INFO "support@mikrotik.com"
|
||||||
DESCRIPTION ""
|
DESCRIPTION ""
|
||||||
REVISION "201801030000Z"
|
REVISION "201807310000Z"
|
||||||
DESCRIPTION ""
|
DESCRIPTION ""
|
||||||
::= { mikrotik 1 }
|
::= { mikrotik 1 }
|
||||||
|
|
||||||
@@ -595,6 +595,13 @@ mtxrWlCMRtabEntryCount OBJECT-TYPE
|
|||||||
DESCRIPTION "Wireless CAPSMAN registration table entry count"
|
DESCRIPTION "Wireless CAPSMAN registration table entry count"
|
||||||
::= { mtxrWireless 6 }
|
::= { mtxrWireless 6 }
|
||||||
|
|
||||||
|
mtxrWlCMREntryCount OBJECT-TYPE
|
||||||
|
SYNTAX Gauge32
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION "Wireless CAPSMAN remote-cap entry count"
|
||||||
|
::= { mtxrWireless 10 }
|
||||||
|
|
||||||
mtxrWlCMTable OBJECT-TYPE
|
mtxrWlCMTable OBJECT-TYPE
|
||||||
SYNTAX SEQUENCE OF MtxrWlCMEntry
|
SYNTAX SEQUENCE OF MtxrWlCMEntry
|
||||||
MAX-ACCESS not-accessible
|
MAX-ACCESS not-accessible
|
||||||
@@ -613,7 +620,9 @@ mtxrWlCMEntry OBJECT-TYPE
|
|||||||
MtxrWlCMEntry ::= SEQUENCE {
|
MtxrWlCMEntry ::= SEQUENCE {
|
||||||
mtxrWlCMIndex ObjectIndex,
|
mtxrWlCMIndex ObjectIndex,
|
||||||
mtxrWlCMRegClientCount Counter32,
|
mtxrWlCMRegClientCount Counter32,
|
||||||
mtxrWlCMAuthClientCount Counter32
|
mtxrWlCMAuthClientCount Counter32,
|
||||||
|
mtxrWlCMState DisplayString,
|
||||||
|
mtxrWlCMChannel DisplayString
|
||||||
}
|
}
|
||||||
|
|
||||||
mtxrWlCMIndex OBJECT-TYPE
|
mtxrWlCMIndex OBJECT-TYPE
|
||||||
@@ -637,6 +646,79 @@ mtxrWlCMAuthClientCount OBJECT-TYPE
|
|||||||
DESCRIPTION ""
|
DESCRIPTION ""
|
||||||
::= { mtxrWlCMEntry 3 }
|
::= { mtxrWlCMEntry 3 }
|
||||||
|
|
||||||
|
mtxrWlCMState OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION ""
|
||||||
|
::= { mtxrWlCMEntry 4 }
|
||||||
|
|
||||||
|
mtxrWlCMChannel OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION "for master only"
|
||||||
|
::= { mtxrWlCMEntry 5 }
|
||||||
|
|
||||||
|
--
|
||||||
|
mtxrWlCMRemoteTable OBJECT-TYPE
|
||||||
|
SYNTAX SEQUENCE OF MtxrWlCMRemoteEntry
|
||||||
|
MAX-ACCESS not-accessible
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION ""
|
||||||
|
::= { mtxrWireless 11 }
|
||||||
|
|
||||||
|
mtxrWlCMRemoteEntry OBJECT-TYPE
|
||||||
|
SYNTAX MtxrWlCMRemoteEntry
|
||||||
|
MAX-ACCESS not-accessible
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION "CAPSMAN remote-cap list"
|
||||||
|
INDEX { mtxrWlCMRemoteIndex }
|
||||||
|
::= { mtxrWlCMRemoteTable 1 }
|
||||||
|
|
||||||
|
MtxrWlCMRemoteEntry ::= SEQUENCE {
|
||||||
|
mtxrWlCMRemoteIndex ObjectIndex,
|
||||||
|
mtxrWlCMRemoteName DisplayString,
|
||||||
|
mtxrWlCMRemoteState DisplayString,
|
||||||
|
mtxrWlCMRemoteAddress DisplayString,
|
||||||
|
mtxrWlCMRemoteRadios Counter32
|
||||||
|
}
|
||||||
|
|
||||||
|
mtxrWlCMRemoteIndex OBJECT-TYPE
|
||||||
|
SYNTAX ObjectIndex
|
||||||
|
MAX-ACCESS not-accessible
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION ""
|
||||||
|
::= { mtxrWlCMRemoteEntry 1 }
|
||||||
|
|
||||||
|
mtxrWlCMRemoteName OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION ""
|
||||||
|
::= { mtxrWlCMRemoteEntry 2 }
|
||||||
|
|
||||||
|
mtxrWlCMRemoteState OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION ""
|
||||||
|
::= { mtxrWlCMRemoteEntry 3 }
|
||||||
|
|
||||||
|
mtxrWlCMRemoteAddress OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION ""
|
||||||
|
::= { mtxrWlCMRemoteEntry 4 }
|
||||||
|
|
||||||
|
mtxrWlCMRemoteRadios OBJECT-TYPE
|
||||||
|
SYNTAX Counter32
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION ""
|
||||||
|
::= { mtxrWlCMRemoteEntry 5 }
|
||||||
|
|
||||||
-- W60G
|
-- W60G
|
||||||
mtxrWl60GTable OBJECT-TYPE
|
mtxrWl60GTable OBJECT-TYPE
|
||||||
SYNTAX SEQUENCE OF MtxrWl60GEntry
|
SYNTAX SEQUENCE OF MtxrWl60GEntry
|
||||||
@@ -663,7 +745,9 @@ MtxrWl60GEntry ::= SEQUENCE {
|
|||||||
mtxrWl60GMcs Integer32,
|
mtxrWl60GMcs Integer32,
|
||||||
mtxrWl60GSignal Integer32,
|
mtxrWl60GSignal Integer32,
|
||||||
mtxrWl60GTxSector Integer32,
|
mtxrWl60GTxSector Integer32,
|
||||||
mtxrWl60GRxSector Integer32
|
mtxrWl60GRxSector Integer32,
|
||||||
|
mtxrWl60GTxSectorInfo DisplayString,
|
||||||
|
mtxrWl60GRssi Integer32
|
||||||
}
|
}
|
||||||
|
|
||||||
mtxrWl60GIndex OBJECT-TYPE
|
mtxrWl60GIndex OBJECT-TYPE
|
||||||
@@ -741,6 +825,20 @@ mtxrWl60GRxSector OBJECT-TYPE
|
|||||||
DESCRIPTION ""
|
DESCRIPTION ""
|
||||||
::= { mtxrWl60GEntry 10 }
|
::= { mtxrWl60GEntry 10 }
|
||||||
|
|
||||||
|
mtxrWl60GTxSectorInfo OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION ""
|
||||||
|
::= { mtxrWl60GEntry 11 }
|
||||||
|
|
||||||
|
mtxrWl60GRssi OBJECT-TYPE
|
||||||
|
SYNTAX Integer32
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION ""
|
||||||
|
::= { mtxrWl60GEntry 12 }
|
||||||
|
|
||||||
-- W60GSta
|
-- W60GSta
|
||||||
mtxrWl60GStaTable OBJECT-TYPE
|
mtxrWl60GStaTable OBJECT-TYPE
|
||||||
SYNTAX SEQUENCE OF MtxrWl60GStaEntry
|
SYNTAX SEQUENCE OF MtxrWl60GStaEntry
|
||||||
@@ -764,7 +862,10 @@ MtxrWl60GStaEntry ::= SEQUENCE {
|
|||||||
mtxrWl60GStaMcs Integer32,
|
mtxrWl60GStaMcs Integer32,
|
||||||
mtxrWl60GStaSignal Integer32,
|
mtxrWl60GStaSignal Integer32,
|
||||||
mtxrWl60GStaTxSector Integer32,
|
mtxrWl60GStaTxSector Integer32,
|
||||||
mtxrWl60GStaRxSector Integer32
|
mtxrWl60GStaRxSector Integer32,
|
||||||
|
mtxrWl60GStaPhyRate Gauge32,
|
||||||
|
mtxrWl60GStaRssi Integer32,
|
||||||
|
mtxrWl60GStaDistance Integer32
|
||||||
}
|
}
|
||||||
|
|
||||||
mtxrWl60GStaIndex OBJECT-TYPE
|
mtxrWl60GStaIndex OBJECT-TYPE
|
||||||
@@ -816,6 +917,27 @@ mtxrWl60GStaRxSector OBJECT-TYPE
|
|||||||
DESCRIPTION ""
|
DESCRIPTION ""
|
||||||
::= { mtxrWl60GStaEntry 7 }
|
::= { mtxrWl60GStaEntry 7 }
|
||||||
|
|
||||||
|
mtxrWl60GStaPhyRate OBJECT-TYPE
|
||||||
|
SYNTAX Gauge32
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION "Mbits per second"
|
||||||
|
::= { mtxrWl60GStaEntry 8 }
|
||||||
|
|
||||||
|
mtxrWl60GStaRssi OBJECT-TYPE
|
||||||
|
SYNTAX Integer32
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION ""
|
||||||
|
::= { mtxrWl60GStaEntry 9 }
|
||||||
|
|
||||||
|
mtxrWl60GStaDistance OBJECT-TYPE
|
||||||
|
SYNTAX Integer32
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION "meters"
|
||||||
|
::= { mtxrWl60GStaEntry 10 }
|
||||||
|
|
||||||
|
|
||||||
mtxrWirelessGroup OBJECT-GROUP OBJECTS {
|
mtxrWirelessGroup OBJECT-GROUP OBJECTS {
|
||||||
mtxrWlStatTxRate,
|
mtxrWlStatTxRate,
|
||||||
@@ -865,6 +987,7 @@ mtxrWirelessGroup OBJECT-GROUP OBJECTS {
|
|||||||
mtxrWlCMRtabRxStrength,
|
mtxrWlCMRtabRxStrength,
|
||||||
mtxrWlCMRtabSsid,
|
mtxrWlCMRtabSsid,
|
||||||
mtxrWlCMRtabEntryCount,
|
mtxrWlCMRtabEntryCount,
|
||||||
|
mtxrWlCMREntryCount,
|
||||||
mtxrWlCMRegClientCount,
|
mtxrWlCMRegClientCount,
|
||||||
mtxrWlCMAuthClientCount,
|
mtxrWlCMAuthClientCount,
|
||||||
mtxrWl60GMode,
|
mtxrWl60GMode,
|
||||||
@@ -876,6 +999,8 @@ mtxrWirelessGroup OBJECT-GROUP OBJECTS {
|
|||||||
mtxrWl60GSignal,
|
mtxrWl60GSignal,
|
||||||
mtxrWl60GTxSector,
|
mtxrWl60GTxSector,
|
||||||
mtxrWl60GRxSector,
|
mtxrWl60GRxSector,
|
||||||
|
mtxrWl60GTxSectorInfo,
|
||||||
|
mtxrWl60GRssi,
|
||||||
mtxrWl60GStaConnected,
|
mtxrWl60GStaConnected,
|
||||||
mtxrWl60GStaRemote,
|
mtxrWl60GStaRemote,
|
||||||
mtxrWl60GStaMcs,
|
mtxrWl60GStaMcs,
|
||||||
@@ -1267,7 +1392,7 @@ mtxrHlFanSpeed2 OBJECT-TYPE
|
|||||||
mtxrHealthGroup OBJECT-GROUP OBJECTS {
|
mtxrHealthGroup OBJECT-GROUP OBJECTS {
|
||||||
mtxrHlCoreVoltage, mtxrHlThreeDotThreeVoltage, mtxrHlFiveVoltage,
|
mtxrHlCoreVoltage, mtxrHlThreeDotThreeVoltage, mtxrHlFiveVoltage,
|
||||||
mtxrHlTwelveVoltage, mtxrHlSensorTemperature, mtxrHlCpuTemperature,
|
mtxrHlTwelveVoltage, mtxrHlSensorTemperature, mtxrHlCpuTemperature,
|
||||||
mtxrHlBoardTemperature, mtxrHlVoltage, mtxrHlActiveFan,
|
mtxrHlBoardTemperature, mtxrHlVoltage, mtxrHlActiveFan,
|
||||||
mtxrHlTemperature, mtxrHlProcessorTemperature,
|
mtxrHlTemperature, mtxrHlProcessorTemperature,
|
||||||
mtxrHlCurrent, mtxrHlPower,
|
mtxrHlCurrent, mtxrHlPower,
|
||||||
mtxrHlProcessorFrequency,
|
mtxrHlProcessorFrequency,
|
||||||
@@ -1594,6 +1719,13 @@ mtxrFirmwareUpgradeVersion OBJECT-TYPE
|
|||||||
DESCRIPTION "Upgrade firmware version"
|
DESCRIPTION "Upgrade firmware version"
|
||||||
::= { mtxrSystem 7 }
|
::= { mtxrSystem 7 }
|
||||||
|
|
||||||
|
mtxrBoardName OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString
|
||||||
|
MAX-ACCESS read-only
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION "board name"
|
||||||
|
::= { mtxrSystem 8 }
|
||||||
|
|
||||||
mtxrSystemGroup OBJECT-GROUP OBJECTS {
|
mtxrSystemGroup OBJECT-GROUP OBJECTS {
|
||||||
mtxrSystemReboot,
|
mtxrSystemReboot,
|
||||||
mtxrUSBPowerReset,
|
mtxrUSBPowerReset,
|
||||||
@@ -1601,7 +1733,8 @@ mtxrSystemGroup OBJECT-GROUP OBJECTS {
|
|||||||
mtxrFirmwareVersion,
|
mtxrFirmwareVersion,
|
||||||
mtxrNote,
|
mtxrNote,
|
||||||
mtxrBuildTime,
|
mtxrBuildTime,
|
||||||
mtxrFirmwareUpgradeVersion
|
mtxrFirmwareUpgradeVersion,
|
||||||
|
mtxrBoardName
|
||||||
}
|
}
|
||||||
STATUS current
|
STATUS current
|
||||||
DESCRIPTION ""
|
DESCRIPTION ""
|
||||||
@@ -1725,7 +1858,7 @@ MtxrDnStatEntry ::= SEQUENCE {
|
|||||||
mtxrDnStatTxStrength Integer32,
|
mtxrDnStatTxStrength Integer32,
|
||||||
mtxrDnStatRxStrength Integer32,
|
mtxrDnStatRxStrength Integer32,
|
||||||
mtxrDnConnected Integer32
|
mtxrDnConnected Integer32
|
||||||
}
|
}
|
||||||
|
|
||||||
mtxrDnStatIndex OBJECT-TYPE
|
mtxrDnStatIndex OBJECT-TYPE
|
||||||
SYNTAX ObjectIndex
|
SYNTAX ObjectIndex
|
||||||
@@ -2152,7 +2285,7 @@ mtxrInterfaceStatsRxBytes OBJECT-TYPE
|
|||||||
STATUS current
|
STATUS current
|
||||||
DESCRIPTION ""
|
DESCRIPTION ""
|
||||||
::= { mtxrInterfaceStatsEntry 31 }
|
::= { mtxrInterfaceStatsEntry 31 }
|
||||||
|
|
||||||
mtxrInterfaceStatsRxPackets OBJECT-TYPE
|
mtxrInterfaceStatsRxPackets OBJECT-TYPE
|
||||||
SYNTAX Counter64
|
SYNTAX Counter64
|
||||||
MAX-ACCESS read-only
|
MAX-ACCESS read-only
|
||||||
@@ -3006,4 +3139,3 @@ mtxrTrapGroup NOTIFICATION-GROUP NOTIFICATIONS {
|
|||||||
-- ***************************************************************************
|
-- ***************************************************************************
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
||||||
|
@@ -51,9 +51,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 1,
|
"ifIndex": 1,
|
||||||
"ifSpeed": null,
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": null,
|
"ifHighSpeed": null,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "up",
|
"ifOperStatus": "up",
|
||||||
"ifOperStatus_prev": null,
|
"ifOperStatus_prev": null,
|
||||||
"ifAdminStatus": null,
|
"ifAdminStatus": null,
|
||||||
@@ -143,9 +145,7 @@
|
|||||||
"ifOutMulticastPkts": null,
|
"ifOutMulticastPkts": null,
|
||||||
"ifOutMulticastPkts_prev": null,
|
"ifOutMulticastPkts_prev": null,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -158,9 +158,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 2,
|
"ifIndex": 2,
|
||||||
"ifSpeed": null,
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": null,
|
"ifHighSpeed": null,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "down",
|
"ifOperStatus": "down",
|
||||||
"ifOperStatus_prev": null,
|
"ifOperStatus_prev": null,
|
||||||
"ifAdminStatus": null,
|
"ifAdminStatus": null,
|
||||||
@@ -250,9 +252,7 @@
|
|||||||
"ifOutMulticastPkts": null,
|
"ifOutMulticastPkts": null,
|
||||||
"ifOutMulticastPkts_prev": null,
|
"ifOutMulticastPkts_prev": null,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -265,9 +265,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 3,
|
"ifIndex": 3,
|
||||||
"ifSpeed": null,
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": null,
|
"ifHighSpeed": null,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "up",
|
"ifOperStatus": "up",
|
||||||
"ifOperStatus_prev": null,
|
"ifOperStatus_prev": null,
|
||||||
"ifAdminStatus": null,
|
"ifAdminStatus": null,
|
||||||
@@ -357,9 +359,7 @@
|
|||||||
"ifOutMulticastPkts": null,
|
"ifOutMulticastPkts": null,
|
||||||
"ifOutMulticastPkts_prev": null,
|
"ifOutMulticastPkts_prev": null,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -372,9 +372,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 4,
|
"ifIndex": 4,
|
||||||
"ifSpeed": null,
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": null,
|
"ifHighSpeed": null,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "up",
|
"ifOperStatus": "up",
|
||||||
"ifOperStatus_prev": null,
|
"ifOperStatus_prev": null,
|
||||||
"ifAdminStatus": null,
|
"ifAdminStatus": null,
|
||||||
@@ -464,9 +466,7 @@
|
|||||||
"ifOutMulticastPkts": null,
|
"ifOutMulticastPkts": null,
|
||||||
"ifOutMulticastPkts_prev": null,
|
"ifOutMulticastPkts_prev": null,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -479,9 +479,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 5,
|
"ifIndex": 5,
|
||||||
"ifSpeed": null,
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": null,
|
"ifHighSpeed": null,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "down",
|
"ifOperStatus": "down",
|
||||||
"ifOperStatus_prev": null,
|
"ifOperStatus_prev": null,
|
||||||
"ifAdminStatus": null,
|
"ifAdminStatus": null,
|
||||||
@@ -571,9 +573,7 @@
|
|||||||
"ifOutMulticastPkts": null,
|
"ifOutMulticastPkts": null,
|
||||||
"ifOutMulticastPkts_prev": null,
|
"ifOutMulticastPkts_prev": null,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -586,9 +586,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 6,
|
"ifIndex": 6,
|
||||||
"ifSpeed": null,
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": null,
|
"ifHighSpeed": null,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "down",
|
"ifOperStatus": "down",
|
||||||
"ifOperStatus_prev": null,
|
"ifOperStatus_prev": null,
|
||||||
"ifAdminStatus": null,
|
"ifAdminStatus": null,
|
||||||
@@ -678,9 +680,7 @@
|
|||||||
"ifOutMulticastPkts": null,
|
"ifOutMulticastPkts": null,
|
||||||
"ifOutMulticastPkts_prev": null,
|
"ifOutMulticastPkts_prev": null,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -693,9 +693,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 7,
|
"ifIndex": 7,
|
||||||
"ifSpeed": null,
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": null,
|
"ifHighSpeed": null,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "down",
|
"ifOperStatus": "down",
|
||||||
"ifOperStatus_prev": null,
|
"ifOperStatus_prev": null,
|
||||||
"ifAdminStatus": null,
|
"ifAdminStatus": null,
|
||||||
@@ -785,9 +787,7 @@
|
|||||||
"ifOutMulticastPkts": null,
|
"ifOutMulticastPkts": null,
|
||||||
"ifOutMulticastPkts_prev": null,
|
"ifOutMulticastPkts_prev": null,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -800,9 +800,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 8,
|
"ifIndex": 8,
|
||||||
"ifSpeed": null,
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": null,
|
"ifHighSpeed": null,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "down",
|
"ifOperStatus": "down",
|
||||||
"ifOperStatus_prev": null,
|
"ifOperStatus_prev": null,
|
||||||
"ifAdminStatus": null,
|
"ifAdminStatus": null,
|
||||||
@@ -892,9 +894,7 @@
|
|||||||
"ifOutMulticastPkts": null,
|
"ifOutMulticastPkts": null,
|
||||||
"ifOutMulticastPkts_prev": null,
|
"ifOutMulticastPkts_prev": null,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -907,9 +907,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 9,
|
"ifIndex": 9,
|
||||||
"ifSpeed": null,
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": null,
|
"ifHighSpeed": null,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "up",
|
"ifOperStatus": "up",
|
||||||
"ifOperStatus_prev": null,
|
"ifOperStatus_prev": null,
|
||||||
"ifAdminStatus": null,
|
"ifAdminStatus": null,
|
||||||
@@ -999,9 +1001,7 @@
|
|||||||
"ifOutMulticastPkts": null,
|
"ifOutMulticastPkts": null,
|
||||||
"ifOutMulticastPkts_prev": null,
|
"ifOutMulticastPkts_prev": null,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -1014,9 +1014,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 10,
|
"ifIndex": 10,
|
||||||
"ifSpeed": null,
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": null,
|
"ifHighSpeed": null,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "up",
|
"ifOperStatus": "up",
|
||||||
"ifOperStatus_prev": null,
|
"ifOperStatus_prev": null,
|
||||||
"ifAdminStatus": null,
|
"ifAdminStatus": null,
|
||||||
@@ -1106,9 +1108,7 @@
|
|||||||
"ifOutMulticastPkts": null,
|
"ifOutMulticastPkts": null,
|
||||||
"ifOutMulticastPkts_prev": null,
|
"ifOutMulticastPkts_prev": null,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -1121,9 +1121,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 12,
|
"ifIndex": 12,
|
||||||
"ifSpeed": null,
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": null,
|
"ifHighSpeed": null,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "up",
|
"ifOperStatus": "up",
|
||||||
"ifOperStatus_prev": null,
|
"ifOperStatus_prev": null,
|
||||||
"ifAdminStatus": null,
|
"ifAdminStatus": null,
|
||||||
@@ -1213,9 +1215,7 @@
|
|||||||
"ifOutMulticastPkts": null,
|
"ifOutMulticastPkts": null,
|
||||||
"ifOutMulticastPkts_prev": null,
|
"ifOutMulticastPkts_prev": null,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -1232,9 +1232,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 1,
|
"ifIndex": 1,
|
||||||
"ifSpeed": 50000000,
|
"ifSpeed": 50000000,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": 50,
|
"ifHighSpeed": 50,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "up",
|
"ifOperStatus": "up",
|
||||||
"ifOperStatus_prev": "up",
|
"ifOperStatus_prev": "up",
|
||||||
"ifAdminStatus": "up",
|
"ifAdminStatus": "up",
|
||||||
@@ -1324,9 +1326,7 @@
|
|||||||
"ifOutMulticastPkts": 0,
|
"ifOutMulticastPkts": 0,
|
||||||
"ifOutMulticastPkts_prev": 0,
|
"ifOutMulticastPkts_prev": 0,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -1339,9 +1339,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 2,
|
"ifIndex": 2,
|
||||||
"ifSpeed": 50000000,
|
"ifSpeed": 50000000,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": 50,
|
"ifHighSpeed": 50,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "down",
|
"ifOperStatus": "down",
|
||||||
"ifOperStatus_prev": "down",
|
"ifOperStatus_prev": "down",
|
||||||
"ifAdminStatus": "up",
|
"ifAdminStatus": "up",
|
||||||
@@ -1431,9 +1433,7 @@
|
|||||||
"ifOutMulticastPkts": 0,
|
"ifOutMulticastPkts": 0,
|
||||||
"ifOutMulticastPkts_prev": 0,
|
"ifOutMulticastPkts_prev": 0,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -1446,9 +1446,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 3,
|
"ifIndex": 3,
|
||||||
"ifSpeed": 100000000,
|
"ifSpeed": 100000000,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": 100,
|
"ifHighSpeed": 100,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "up",
|
"ifOperStatus": "up",
|
||||||
"ifOperStatus_prev": "up",
|
"ifOperStatus_prev": "up",
|
||||||
"ifAdminStatus": "up",
|
"ifAdminStatus": "up",
|
||||||
@@ -1538,9 +1540,7 @@
|
|||||||
"ifOutMulticastPkts": 0,
|
"ifOutMulticastPkts": 0,
|
||||||
"ifOutMulticastPkts_prev": 0,
|
"ifOutMulticastPkts_prev": 0,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -1553,9 +1553,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 4,
|
"ifIndex": 4,
|
||||||
"ifSpeed": 100000000,
|
"ifSpeed": 100000000,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": 100,
|
"ifHighSpeed": 100,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "up",
|
"ifOperStatus": "up",
|
||||||
"ifOperStatus_prev": "up",
|
"ifOperStatus_prev": "up",
|
||||||
"ifAdminStatus": "up",
|
"ifAdminStatus": "up",
|
||||||
@@ -1645,9 +1647,7 @@
|
|||||||
"ifOutMulticastPkts": 0,
|
"ifOutMulticastPkts": 0,
|
||||||
"ifOutMulticastPkts_prev": 0,
|
"ifOutMulticastPkts_prev": 0,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -1660,9 +1660,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 5,
|
"ifIndex": 5,
|
||||||
"ifSpeed": null,
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": 0,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": 0,
|
"ifHighSpeed": 0,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "down",
|
"ifOperStatus": "down",
|
||||||
"ifOperStatus_prev": "down",
|
"ifOperStatus_prev": "down",
|
||||||
"ifAdminStatus": "up",
|
"ifAdminStatus": "up",
|
||||||
@@ -1752,9 +1754,7 @@
|
|||||||
"ifOutMulticastPkts": 0,
|
"ifOutMulticastPkts": 0,
|
||||||
"ifOutMulticastPkts_prev": 0,
|
"ifOutMulticastPkts_prev": 0,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -1767,9 +1767,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 6,
|
"ifIndex": 6,
|
||||||
"ifSpeed": null,
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": 0,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": 0,
|
"ifHighSpeed": 0,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "down",
|
"ifOperStatus": "down",
|
||||||
"ifOperStatus_prev": "down",
|
"ifOperStatus_prev": "down",
|
||||||
"ifAdminStatus": "up",
|
"ifAdminStatus": "up",
|
||||||
@@ -1859,9 +1861,7 @@
|
|||||||
"ifOutMulticastPkts": 0,
|
"ifOutMulticastPkts": 0,
|
||||||
"ifOutMulticastPkts_prev": 0,
|
"ifOutMulticastPkts_prev": 0,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -1874,9 +1874,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 7,
|
"ifIndex": 7,
|
||||||
"ifSpeed": null,
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": 0,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": 0,
|
"ifHighSpeed": 0,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "down",
|
"ifOperStatus": "down",
|
||||||
"ifOperStatus_prev": "down",
|
"ifOperStatus_prev": "down",
|
||||||
"ifAdminStatus": "down",
|
"ifAdminStatus": "down",
|
||||||
@@ -1966,9 +1968,7 @@
|
|||||||
"ifOutMulticastPkts": 0,
|
"ifOutMulticastPkts": 0,
|
||||||
"ifOutMulticastPkts_prev": 0,
|
"ifOutMulticastPkts_prev": 0,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -1981,9 +1981,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 8,
|
"ifIndex": 8,
|
||||||
"ifSpeed": 50000000,
|
"ifSpeed": 50000000,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": 50,
|
"ifHighSpeed": 50,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "down",
|
"ifOperStatus": "down",
|
||||||
"ifOperStatus_prev": "down",
|
"ifOperStatus_prev": "down",
|
||||||
"ifAdminStatus": "up",
|
"ifAdminStatus": "up",
|
||||||
@@ -2073,9 +2075,7 @@
|
|||||||
"ifOutMulticastPkts": 0,
|
"ifOutMulticastPkts": 0,
|
||||||
"ifOutMulticastPkts_prev": 0,
|
"ifOutMulticastPkts_prev": 0,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -2088,9 +2088,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 9,
|
"ifIndex": 9,
|
||||||
"ifSpeed": 50000000,
|
"ifSpeed": 50000000,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": 50,
|
"ifHighSpeed": 50,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "up",
|
"ifOperStatus": "up",
|
||||||
"ifOperStatus_prev": "up",
|
"ifOperStatus_prev": "up",
|
||||||
"ifAdminStatus": "up",
|
"ifAdminStatus": "up",
|
||||||
@@ -2180,9 +2182,7 @@
|
|||||||
"ifOutMulticastPkts": 0,
|
"ifOutMulticastPkts": 0,
|
||||||
"ifOutMulticastPkts_prev": 0,
|
"ifOutMulticastPkts_prev": 0,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -2195,9 +2195,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 10,
|
"ifIndex": 10,
|
||||||
"ifSpeed": 100000000,
|
"ifSpeed": 100000000,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": 100,
|
"ifHighSpeed": 100,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "up",
|
"ifOperStatus": "up",
|
||||||
"ifOperStatus_prev": "up",
|
"ifOperStatus_prev": "up",
|
||||||
"ifAdminStatus": "up",
|
"ifAdminStatus": "up",
|
||||||
@@ -2287,9 +2289,7 @@
|
|||||||
"ifOutMulticastPkts": 0,
|
"ifOutMulticastPkts": 0,
|
||||||
"ifOutMulticastPkts_prev": 0,
|
"ifOutMulticastPkts_prev": 0,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"port_descr_type": null,
|
"port_descr_type": null,
|
||||||
@@ -2302,9 +2302,11 @@
|
|||||||
"portName": null,
|
"portName": null,
|
||||||
"ifIndex": 12,
|
"ifIndex": 12,
|
||||||
"ifSpeed": 100000000,
|
"ifSpeed": 100000000,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
"ifConnectorPresent": null,
|
"ifConnectorPresent": null,
|
||||||
"ifPromiscuousMode": null,
|
"ifPromiscuousMode": null,
|
||||||
"ifHighSpeed": 100,
|
"ifHighSpeed": 100,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
"ifOperStatus": "up",
|
"ifOperStatus": "up",
|
||||||
"ifOperStatus_prev": "up",
|
"ifOperStatus_prev": "up",
|
||||||
"ifAdminStatus": "up",
|
"ifAdminStatus": "up",
|
||||||
@@ -2394,9 +2396,7 @@
|
|||||||
"ifOutMulticastPkts": 0,
|
"ifOutMulticastPkts": 0,
|
||||||
"ifOutMulticastPkts_prev": 0,
|
"ifOutMulticastPkts_prev": 0,
|
||||||
"ifOutMulticastPkts_delta": null,
|
"ifOutMulticastPkts_delta": null,
|
||||||
"ifOutMulticastPkts_rate": null,
|
"ifOutMulticastPkts_rate": null
|
||||||
"ifSpeed_prev": null,
|
|
||||||
"ifHighSpeed_prev": null
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -3098,6 +3098,27 @@
|
|||||||
"entPhysicalIndex_measured": null,
|
"entPhysicalIndex_measured": null,
|
||||||
"sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.6.9\"]"
|
"sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.6.9\"]"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "quality",
|
||||||
|
"sensor_index": "1",
|
||||||
|
"sensor_type": "mikrotik",
|
||||||
|
"sensor_descr": "SSID: MikroTik-e2f1fc",
|
||||||
|
"sensor_divisor": 1,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_aggregator": "sum",
|
||||||
|
"sensor_current": 80,
|
||||||
|
"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.14988.1.1.1.8.1.8.1\"]"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"sensor_deleted": 0,
|
"sensor_deleted": 0,
|
||||||
"sensor_class": "rate",
|
"sensor_class": "rate",
|
||||||
@@ -3585,6 +3606,27 @@
|
|||||||
"entPhysicalIndex_measured": null,
|
"entPhysicalIndex_measured": null,
|
||||||
"sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.6.9\"]"
|
"sensor_oids": "[\".1.3.6.1.4.1.14988.1.1.1.3.1.6.9\"]"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "quality",
|
||||||
|
"sensor_index": "1",
|
||||||
|
"sensor_type": "mikrotik",
|
||||||
|
"sensor_descr": "SSID: MikroTik-e2f1fc",
|
||||||
|
"sensor_divisor": 1,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_aggregator": "sum",
|
||||||
|
"sensor_current": 80,
|
||||||
|
"sensor_prev": 80,
|
||||||
|
"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.14988.1.1.1.8.1.8.1\"]"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"sensor_deleted": 0,
|
"sensor_deleted": 0,
|
||||||
"sensor_class": "rate",
|
"sensor_class": "rate",
|
||||||
|
1354
tests/data/routeros_wifi.json
Normal file
1354
tests/data/routeros_wifi.json
Normal file
File diff suppressed because it is too large
Load Diff
261
tests/snmpsim/routeros_wifi.snmprec
Normal file
261
tests/snmpsim/routeros_wifi.snmprec
Normal file
@@ -0,0 +1,261 @@
|
|||||||
|
1.3.6.1.2.1.1.1.0|4|RouterOS RBLHGG-60ad
|
||||||
|
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.14988.1
|
||||||
|
1.3.6.1.2.1.1.3.0|67|138343100
|
||||||
|
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|wlan60-1
|
||||||
|
1.3.6.1.2.1.2.2.1.2.2|4|ether1
|
||||||
|
1.3.6.1.2.1.2.2.1.2.3|4|bridge
|
||||||
|
1.3.6.1.2.1.2.2.1.2.4|4|wlan60-station-1
|
||||||
|
1.3.6.1.2.1.2.2.1.3.1|2|71
|
||||||
|
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|209
|
||||||
|
1.3.6.1.2.1.2.2.1.3.4|2|71
|
||||||
|
1.3.6.1.2.1.2.2.1.4.1|2|1500
|
||||||
|
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.4.4|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.6.1|4x|B869F4802FC2
|
||||||
|
1.3.6.1.2.1.2.2.1.6.2|4x|B869F4802FC1
|
||||||
|
1.3.6.1.2.1.2.2.1.6.3|4x|B869F4802FC1
|
||||||
|
1.3.6.1.2.1.2.2.1.6.4|4x|B869F4802FC2
|
||||||
|
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|2
|
||||||
|
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.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|119
|
||||||
|
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.20.1.1.10.37.102.3|64|10.37.102.3
|
||||||
|
1.3.6.1.2.1.4.20.1.2.10.37.102.3|2|3
|
||||||
|
1.3.6.1.2.1.4.20.1.2.192.168.88.2|2|3
|
||||||
|
1.3.6.1.2.1.4.20.1.3.10.37.102.3|64|255.255.255.192
|
||||||
|
1.3.6.1.2.1.4.20.1.3.192.168.88.2|64|255.255.255.0
|
||||||
|
1.3.6.1.2.1.4.22.1.2.3.10.37.102.1|4x|744D28E31731
|
||||||
|
1.3.6.1.2.1.4.24.3.0|66|3
|
||||||
|
1.3.6.1.2.1.17.1.1.0|4x|B869F4802FC1
|
||||||
|
1.3.6.1.2.1.17.1.4.1.2.0|2|2
|
||||||
|
1.3.6.1.2.1.17.1.4.1.2.20|2|4
|
||||||
|
1.3.6.1.2.1.17.2.1.0|2|3
|
||||||
|
1.3.6.1.2.1.17.2.2.0|2|32768
|
||||||
|
1.3.6.1.2.1.17.4.3.1.2.0.36.254.216.215.239|2|2
|
||||||
|
1.3.6.1.2.1.17.4.3.1.2.0.114.99.95.127.171|2|2
|
||||||
|
1.3.6.1.2.1.17.4.3.1.2.80.199.191.96.137.173|2|2
|
||||||
|
1.3.6.1.2.1.17.4.3.1.2.100.102.179.239.92.211|2|2
|
||||||
|
1.3.6.1.2.1.17.4.3.1.2.104.255.123.127.177.196|2|2
|
||||||
|
1.3.6.1.2.1.17.4.3.1.2.116.77.40.227.23.49|2|4
|
||||||
|
1.3.6.1.2.1.17.4.3.1.2.120.138.32.250.83.196|2|2
|
||||||
|
1.3.6.1.2.1.17.4.3.1.2.120.138.32.250.83.204|2|2
|
||||||
|
1.3.6.1.2.1.17.4.3.1.2.184.105.244.127.65.111|2|4
|
||||||
|
1.3.6.1.2.1.17.4.3.1.2.184.105.244.127.65.112|2|4
|
||||||
|
1.3.6.1.2.1.17.4.3.1.2.184.105.244.128.47.193|2|3
|
||||||
|
1.3.6.1.2.1.17.4.3.1.2.184.105.244.128.47.194|2|4
|
||||||
|
1.3.6.1.2.1.25.1.1.0|67|138343100
|
||||||
|
1.3.6.1.2.1.25.2.2.0|2|262144
|
||||||
|
1.3.6.1.2.1.25.2.3.1.1.65536|2|65536
|
||||||
|
1.3.6.1.2.1.25.2.3.1.1.131072|2|131072
|
||||||
|
1.3.6.1.2.1.25.2.3.1.2.65536|6|1.3.6.1.2.1.25.2.1.2
|
||||||
|
1.3.6.1.2.1.25.2.3.1.2.131072|6|1.3.6.1.2.1.25.2.1.4
|
||||||
|
1.3.6.1.2.1.25.2.3.1.3.65536|4|main memory
|
||||||
|
1.3.6.1.2.1.25.2.3.1.3.131072|4|system disk
|
||||||
|
1.3.6.1.2.1.25.2.3.1.4.65536|2|1024
|
||||||
|
1.3.6.1.2.1.25.2.3.1.4.131072|2|1024
|
||||||
|
1.3.6.1.2.1.25.2.3.1.5.65536|2|262144
|
||||||
|
1.3.6.1.2.1.25.2.3.1.5.131072|2|15616
|
||||||
|
1.3.6.1.2.1.25.2.3.1.6.65536|2|55664
|
||||||
|
1.3.6.1.2.1.25.2.3.1.6.131072|2|13044
|
||||||
|
1.3.6.1.2.1.25.2.3.1.7.65536|65|0
|
||||||
|
1.3.6.1.2.1.25.2.3.1.7.131072|65|0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.1.1|2|1
|
||||||
|
1.3.6.1.2.1.25.3.2.1.1.2|2|2
|
||||||
|
1.3.6.1.2.1.25.3.2.1.1.3|2|3
|
||||||
|
1.3.6.1.2.1.25.3.2.1.1.4|2|4
|
||||||
|
1.3.6.1.2.1.25.3.2.1.2.1|6|1.3.6.1.2.1.25.3.1.3
|
||||||
|
1.3.6.1.2.1.25.3.2.1.2.2|6|1.3.6.1.2.1.25.3.1.3
|
||||||
|
1.3.6.1.2.1.25.3.2.1.2.3|6|1.3.6.1.2.1.25.3.1.3
|
||||||
|
1.3.6.1.2.1.25.3.2.1.2.4|6|1.3.6.1.2.1.25.3.1.3
|
||||||
|
1.3.6.1.2.1.25.3.2.1.3.1|4|
|
||||||
|
1.3.6.1.2.1.25.3.2.1.3.2|4|
|
||||||
|
1.3.6.1.2.1.25.3.2.1.3.3|4|
|
||||||
|
1.3.6.1.2.1.25.3.2.1.3.4|4|
|
||||||
|
1.3.6.1.2.1.25.3.2.1.4.1|6|0.0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.4.2|6|0.0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.4.3|6|0.0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.4.4|6|0.0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.5.1|2|2
|
||||||
|
1.3.6.1.2.1.25.3.2.1.5.2|2|2
|
||||||
|
1.3.6.1.2.1.25.3.2.1.5.3|2|2
|
||||||
|
1.3.6.1.2.1.25.3.2.1.5.4|2|2
|
||||||
|
1.3.6.1.2.1.25.3.2.1.6.1|65|0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.6.2|65|0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.6.3|65|0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.6.4|65|0
|
||||||
|
1.3.6.1.2.1.25.3.3.1.1.1|6|0.0
|
||||||
|
1.3.6.1.2.1.25.3.3.1.1.2|6|0.0
|
||||||
|
1.3.6.1.2.1.25.3.3.1.1.3|6|0.0
|
||||||
|
1.3.6.1.2.1.25.3.3.1.1.4|6|0.0
|
||||||
|
1.3.6.1.2.1.25.3.3.1.2.1|2|1
|
||||||
|
1.3.6.1.2.1.25.3.3.1.2.2|2|0
|
||||||
|
1.3.6.1.2.1.25.3.3.1.2.3|2|0
|
||||||
|
1.3.6.1.2.1.25.3.3.1.2.4|2|1
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.1|4|wlan60-1
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.2|4|ether1
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.3|4|bridge
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.4|4|wlan60-station-1
|
||||||
|
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|0
|
||||||
|
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|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.3.4|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.4.4|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.5.4|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.1|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.2|70|82373172268
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.3|70|378513640
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.4|70|1266640779979
|
||||||
|
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|352464139
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.3|70|6546318
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.4|70|938967926
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.1|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.2|70|0
|
||||||
|
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|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.1|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.2|70|0
|
||||||
|
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|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.2|70|1266370950088
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.3|70|275464846
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.4|70|82796895118
|
||||||
|
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|932652666
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.3|70|1196704
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.4|70|358583247
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.1|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.2|70|0
|
||||||
|
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|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.1|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.2|70|0
|
||||||
|
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|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.1|66|2310
|
||||||
|
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|2310
|
||||||
|
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|defconf
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.4|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.1.65536|2|65536
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.1.131073|2|131073
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.1.131074|2|131074
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.2.65536|4|RouterOS 6.44 (stable) on RBLHGG-60ad
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.2.131073|4|unknown unknown (rev: 2)
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.2.131074|4|Airgo Networks Inc unknown device (rev: 0)
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.3.65536|6|0.0
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.3.131073|6|0.0
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.3.131074|6|0.0
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.4.65536|2|0
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.4.131073|2|65536
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.4.131074|2|65536
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.5.65536|2|3
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.5.131073|2|2
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.5.131074|2|2
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.6.65536|2|-1
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.6.131073|2|-1
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.6.131074|2|-1
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.7.65536|4|ARMv7
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.7.131073|4|01:00.0
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.7.131074|4|00:00.0
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.8.65536|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.8.131073|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.8.131074|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.9.65536|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.9.131073|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.9.131074|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.10.65536|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.10.131073|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.10.131074|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.11.65536|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.11.131073|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.11.131074|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.12.65536|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.12.131073|4|0x1ae9
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.12.131074|4|0x17cb
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.13.65536|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.13.131073|4|0x0310
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.13.131074|4|0x1001
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.14.65536|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.14.131073|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.14.131074|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.15.65536|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.15.131073|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.15.131074|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.16.65536|2|2
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.16.131073|2|2
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.16.131074|2|2
|
||||||
|
1.3.6.1.4.1.9.9.150.1.1.1.0|66|0
|
||||||
|
1.3.6.1.4.1.2021.11.10.0|2|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.8.1.2.1|2|3
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.8.1.3.1|4|MikroTik-802fc1
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.8.1.4.1|2|1
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.8.1.5.1|4x|B869F47F4170
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.8.1.6.1|2|58320
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.8.1.7.1|2|8
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.8.1.8.1|2|80
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.8.1.9.1|2|63
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.8.1.11.1|4|right 1.4 degrees, up 1.4 degrees
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.8.1.12.1|2|-54
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.8.1.13.1|66|2310
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.9.1.2.4|2|1
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.9.1.3.4|4x|B869F47F4170
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.9.1.4.4|2|8
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.9.1.5.4|2|80
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.9.1.6.4|2|63
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.9.1.8.4|66|2310
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.9.1.9.4|2|-54
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.9.1.10.4|2|18545
|
||||||
|
1.3.6.1.4.1.14988.1.1.4.3.0|2|3
|
||||||
|
1.3.6.1.4.1.14988.1.1.4.4.0|4|6.44
|
||||||
|
1.3.6.1.4.1.14988.1.1.6.1.0|66|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.7.3.0|4|90C709063CC4
|
||||||
|
1.3.6.1.4.1.14988.1.1.11.1.1.8.35|2|4
|
||||||
|
1.3.6.1.4.1.14988.1.1.11.1.1.8.36|2|4
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.1|4|wlan60-1
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.2|4|ether1
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.3|4|bridge
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.4|4|wlan60-station-1
|
Reference in New Issue
Block a user