Added support Ericsson MINI-LINK (#10546)

* Added support Ericsson MINI-LINK
* cleaning
This commit is contained in:
Martin Zatloukal
2019-08-22 13:19:50 +02:00
committed by PipoCanaja
parent 259fc28b05
commit f16805b71d
12 changed files with 7402 additions and 0 deletions

116
LibreNMS/OS/Ericsson-ml.php Normal file
View File

@@ -0,0 +1,116 @@
<?php
/**
* Ericsson-ml.php
*
*
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright 2017 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace LibreNMS\OS;
use LibreNMS\Device\Processor;
use LibreNMS\Device\WirelessSensor;
use LibreNMS\Interfaces\Discovery\ProcessorDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessFrequencyDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRssiDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessSnrDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRateDiscovery;
use LibreNMS\OS;
class Ericssonml extends OS implements
ProcessorDiscovery,
WirelessFrequencyDiscovery,
WirelessPowerDiscovery,
WirelessRssiDiscovery,
WirelessRateDiscovery,
WirelessSnrDiscovery
{
/**
* Discover wireless frequency. This is in GHz. Type is frequency.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors
*/
public function discoverWirelessFrequency()
{
return array(
// PT-RADIOLINK-MIB::txFrequency.0
new WirelessSensor('frequency', $this->getDeviceId(), '.1.3.6.1.4.1.193.223.2.7.1.1.10.110101', 'eric-tx', 1, 'TX Frequency', null, 1, 1000),
// PT-RADIOLINK-MIB::rxFrequency.0
new WirelessSensor('frequency', $this->getDeviceId(), '.1.3.6.1.4.1.193.223.2.7.1.1.13.110101', 'eric-rx', 1, 'RX Frequency', null, 1, 1000),
);
}
/**
* Discover wireless tx or rx power. This is in dBm. Type is power.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array
*/
public function discoverWirelessPower()
{
return array(
// PT-RADIOLINK-MIB::actualOutputPower.0
new WirelessSensor('power', $this->getDeviceId(), '.1.3.6.1.4.1.193.223.2.7.1.1.2.110101', 'eric-pow-cur', 1, 'Tx Power Current'),
);
}
/**
* Discover wireless RSSI (Received Signal Strength Indicator). This is in dBm. Type is rssi.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array
*/
public function discoverWirelessRssi()
{
$oid = '.1.3.6.1.4.1.193.223.2.7.1.1.1.110101'; // PT-RADIOLINK-MIB::actualInputPower.0
return array(
new WirelessSensor('rssi', $this->getDeviceId(), $oid, 'eric', 1, 'RSSI', null, 1, 1),
);
}
/**
* Discover wireless SNR. This is in dB. Type is snr.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors
*/
public function discoverWirelessSnr()
{
$oid = '.1.3.6.1.4.1.193.223.2.7.1.1.43.110101'; //PT-RADIOLINK-MIB::actualSnir.0
return array(
new WirelessSensor('snr', $this->getDeviceId(), $oid, 'eric', 1, 'CINR', null, 1, 10),
);
}
/**
* Discover wireless RATE. This is in bps. Type is rate.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors
*/
public function discoverWirelessRate()
{
$oid_bitrate = '.1.3.6.1.4.1.193.223.2.7.1.1.46.110101'; // PT-RADIOLINK-MIB::actualTxCapacity.0
return array(
new WirelessSensor('rate', $this->getDeviceId(), $oid_bitrate, 'eric-netBitrate', 1, 'Net Bitrate', null, 1000, 1),
);
}
}

View File

@@ -0,0 +1,13 @@
os: ericsson-ml
text: 'Ericsson MINI-LINK'
type: wireless
empty_ifdescr: true
icon: ericsson
over:
- { graph: device_processor, text: 'CPU Usage' }
- { graph: device_bits, text: 'Device Traffic' }
discovery:
- sysObjectID: .1.3.6.1.4.1.193.223.2.1
mib_dir:
- ericsson

View File

@@ -0,0 +1,22 @@
<?php
/*
* LibreNMS
*
* Copyright (c) 2017 Martin Zatloukal <slezi2@pvfree.net>
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
d_echo('ERICSSON-ML');
$oid = ".1.3.6.1.4.1.193.223.2.4.1.1.2.1";
$index = 0;
$sensor_type = ' temperatureRadio';
$descr = 'Internal Temp';
$divisor = 1;
$temperature = (snmp_get($device, $oid, '-Oqv', 'PT-MONITOR-MIB') / $divisor);
if (is_numeric($temperature)) {
discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, $sensor_type, $descr, $divisor, null, null, null, null, null, $temperature);
}

940
mibs/ericsson/PT-FM-MIB Normal file
View File

@@ -0,0 +1,940 @@
PT-FM-MIB DEFINITIONS::=BEGIN
IMPORTS
MODULE-IDENTITY,OBJECT-TYPE,Integer32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP FROM SNMPv2-CONF
pt FROM PT-MIB
TEXTUAL-CONVENTION, DateAndTime FROM SNMPv2-TC;
ptFM MODULE-IDENTITY
LAST-UPDATED "201603211200Z"
ORGANIZATION "Ericsson"
CONTACT-INFO
"Anders Ekvall
Postal: Ericsson AB,
E-Mail: anders.ekvall@ericsson.com"
DESCRIPTION
"This is the MIB of PT specifics"
REVISION "201603211200Z"
DESCRIPTION
"Added Managed and Reference OID to the current alarms"
REVISION "201603091200Z"
DESCRIPTION
"Validated."
REVISION "201602101230Z"
DESCRIPTION
"The initial version of this MIB module."
::= { pt 3 }
config OBJECT IDENTIFIER ::= { ptFM 1 }
alarm OBJECT IDENTIFIER ::= { ptFM 2 }
log OBJECT IDENTIFIER ::= { ptFM 3 }
ptFMConformance OBJECT IDENTIFIER ::= { ptFM 4 }
--
-- The textual conventions we define and use in this MIB.
--
NotificationIdTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Notification ID which is NONE now."
SYNTAX INTEGER {
eNONE (0)
}
MoClassTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Textual Convention for MoClass"
SYNTAX INTEGER {
eNONE (0)
}
SeverityTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer indicates the severity level, take the value of INDETERMINATE,
CRITICAL, MAJOR, MINOR, WARNING and CLEARED. "
SYNTAX INTEGER {
eINDETERMINATE (1),
eCRITICAL (2),
eMAJOR (3),
eMINOR (4),
eWARNING (5),
eCLEARED (6)
}
ProbableCauseTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Probable Cause"
SYNTAX INTEGER {
eNONE (0)
}
CategoryTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer indicates the category. "
SYNTAX INTEGER {
eHIGHORDERLEVEL (1),
eUNFILTERED (2),
eLOWORDERLEVEL (3),
eNONE (4)
}
ClearableTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer indicates whether a notification is clearable or not."
SYNTAX INTEGER {
eTRUE (1),
eFALSE (2)
}
EnableStatusTypeTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer indicates the enable status type: ENABLED or DISABLED. "
SYNTAX INTEGER {
eENABLED (1),
eDISABLED (2)
}
LayerRateTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An emulation for layer rate."
SYNTAX INTEGER {
eLRNOTAPPLICABLE (1),
eLRT3ANDDS345M (4),
eLRE12M (5),
eLRE334M (7),
eLRVT2ANDTU12VC12 (11),
eLRLOWORDERTU3VC3 (13),
eLRSTS3CANDAU4VC4 (15),
eLRSTS12CVC44C (16),
eLRSECTIONOC3STS3ANDRSSTM1 (20),
eLRSECTIONOC12STS12ANDRSSTM4 (21),
eLRSECTIONOC48STS48ANDRSSTM16 (22),
eLRLINEOC3STS3ANDMSSTM1 (25),
eLRLINEOC12STS12ANDMSSTM4 (26),
eLRLINEOC48STS48ANDMSSTM16 (27),
eLRDSROC3STM1 (73),
eLRDSROC12STM4 (74),
eLRDSROC48STM16 (76),
eLRDSRGIGABITETHERNET (87),
eLRENCAPSULATION (98),
eLRFRAGMENT (99)
}
EventTypeTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer indicates the event type: INFORMATION or WARNING. "
SYNTAX INTEGER {
eINFORMATION (1),
eWARNING (2)
}
EventCauseTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer indicates the event cause (only NONE is supported)."
SYNTAX INTEGER {
eNONE (0)
}
SwitchTypeTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer indicates the switch type. "
SYNTAX INTEGER {
eSDHMSP (1),
eSDHSNCP (2),
eEQUIPEMEMTPROTECTION (3),
eSYNCHRONISATION (4),
eSCSWITCHOVER (5)
}
SwitchReasonTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer indicates the switch reason. "
SYNTAX INTEGER {
eNA (1),
eRESTORED (2),
eSIGNALFAIL (3),
eSIGNALMISMATCH (4),
eSIGNALDEGRADE (5),
eAUTOMATICSWITCH (6),
eMANUAL (7),
eREMOTEREQUEST (8),
ePROTECTIONDISABLED (9),
eMODULEFAIL (10)
}
---
---The Fault Managment Group definition
---
---
--- Alarm Config Table definition
---
alarmConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlarmConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This configuration defines the default severity of an alarm notification.
"
::= { config 1 }
alarmConfigEntry OBJECT-TYPE
SYNTAX AlarmConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a
particular interface indexed by NotificationId and moClass. "
INDEX { notificationId ,moClass }
::= { alarmConfigTable 1 }
AlarmConfigEntry ::=
SEQUENCE {
notificationId NotificationIdTC,
moClass MoClassTC,
severity SeverityTC,
probableCauseQualifier OCTET STRING,
probableCause ProbableCauseTC,
category CategoryTC,
clearable ClearableTC
}
notificationId OBJECT-TYPE
SYNTAX NotificationIdTC
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Notification Id"
::= { alarmConfigEntry 1 }
moClass OBJECT-TYPE
SYNTAX MoClassTC
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MO Class"
::= { alarmConfigEntry 2 }
severity OBJECT-TYPE
SYNTAX SeverityTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SeverityTC"
::= { alarmConfigEntry 3 }
probableCauseQualifier OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Probable Cause Qualifier"
::= { alarmConfigEntry 4 }
probableCause OBJECT-TYPE
SYNTAX ProbableCauseTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Probable Cause"
::= { alarmConfigEntry 5 }
category OBJECT-TYPE
SYNTAX CategoryTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For non-clearable alarms, filtering category is NONE."
::= { alarmConfigEntry 6 }
clearable OBJECT-TYPE
SYNTAX ClearableTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute indicates whether this is a clearable or
non-clearable alarm notification."
::= { alarmConfigEntry 7 }
---
--- AlarmPersistencyConfigTable definition
---
alarmPersistencyConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlarmPersistencyConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Alarm Persistency Configuration Table"
::= { config 2 }
alarmPersistencyConfigEntry OBJECT-TYPE
SYNTAX AlarmPersistencyConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a
particular interface."
INDEX { category }
::= { alarmPersistencyConfigTable 1 }
AlarmPersistencyConfigEntry ::=
SEQUENCE {
persistencyConfigcategory CategoryTC,
onFilter Integer32,
offFilter Integer32
}
persistencyConfigcategory OBJECT-TYPE
SYNTAX CategoryTC
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Persistency Configuration category"
::= { alarmPersistencyConfigEntry 1 }
onFilter OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer with max value of 30.
Default is 0 sec for highOrderLevel and Unfiltered,
and 3 sec for lowOrderLevel"
::= { alarmPersistencyConfigEntry 2 }
offFilter OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Off Filter"
::= { alarmPersistencyConfigEntry 3 }
---NotificationConfigTable definition
notificationConfig OBJECT IDENTIFIER ::= { config 3 }
notificationReporting OBJECT-TYPE
SYNTAX EnableStatusTypeTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute is used to enable or disable reporting of notifications
from the AXXMETRO device. When disabled, no notifications will be sent."
::= { notificationConfig 1 }
lCASExtendedAlarms OBJECT-TYPE
SYNTAX EnableStatusTypeTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute is used to enable or disable reporting of
extended LCAS notifications."
::= { notificationConfig 2 }
nIMAlarms OBJECT-TYPE
SYNTAX EnableStatusTypeTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute is used to enable or disable reporting of
notifications from the NIM objects."
::= { notificationConfig 3 }
pJEAlarms OBJECT-TYPE
SYNTAX EnableStatusTypeTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When the operator changes the value from enabled to disabled,
all active PJE alarms shall be cleared.
When the operator changes the value from disabled to enabled,
event counting shall be restarted (counters reset to 0).
This attribute has node scope, ie. it impacts all PJE alarms
on all SDH ports on the node."
::= { notificationConfig 4 }
---CurrentAlarmsTable definition
currentAlarmsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CurrentAlarmsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Current Alarms Table"
::= { alarm 1 }
currentAlarmsEntry OBJECT-TYPE
SYNTAX CurrentAlarmsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a
particular interface."
INDEX {sequenceNumber}
::= { currentAlarmsTable 1 }
CurrentAlarmsEntry ::=
SEQUENCE {
sequenceNumber Integer32,
currentAlarmTimeStamp DateAndTime,
currentAlarmNotificationId NotificationIdTC,
currentAlarmManagedObjectId OCTET STRING,
currentAlarmReferenceObjectId OCTET STRING,
currentAlarmSeverity SeverityTC,
currentAlarmProbableCause ProbableCauseTC,
currentAlarmProbableCauseQualifier OCTET STRING,
currentAlarmAdditionalText OCTET STRING,
currentAlarmLayerRate LayerRateTC
}
sequenceNumber OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Sequence Number"
::= { currentAlarmsEntry 1 }
currentAlarmTimeStamp OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time Stamp"
::= { currentAlarmsEntry 2 }
currentAlarmNotificationId OBJECT-TYPE
SYNTAX NotificationIdTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current Alarm Notification Id"
::= { currentAlarmsEntry 3 }
currentAlarmManagedObjectId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the managed object id of an active alarm.
The managed object id uniquely identifies the source of the
notification and consists of class and instance information
for the source. It is represented by a formated text string
which first contains the class and depending on the class a list
of attribute name and value pairs:
'<class>:<name>=<value>;<name>=<value>;...'
<class> : class name.
<name> : attribute name.
<value> : attribute value."
::= { currentAlarmsEntry 4 }
currentAlarmReferenceObjectId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the referenced object id for the
managed object id in cases where the managed object id is
a virtual object id.
It has the same format as 'currentAlarmManagedObjectId' and
is represented by a formated text string which first contains
the class and depending on the class a list of attribute name
and value pairs:
'<class>:<name>=<value>;<name>=<value>;...'
<class> : class name.
<name> : attribute name.
<value> : attribute value."
::= { currentAlarmsEntry 5 }
currentAlarmSeverity OBJECT-TYPE
SYNTAX SeverityTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current Alarm Severity"
::= { currentAlarmsEntry 6 }
currentAlarmProbableCause OBJECT-TYPE
SYNTAX ProbableCauseTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current Alarm Probable Cause"
::= { currentAlarmsEntry 7 }
currentAlarmProbableCauseQualifier OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current Alarm Probable Cause Qualifier"
::= { currentAlarmsEntry 8 }
currentAlarmAdditionalText OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Additional Text"
::= { currentAlarmsEntry 9 }
currentAlarmLayerRate OBJECT-TYPE
SYNTAX LayerRateTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Layer Rate"
::= { currentAlarmsEntry 10 }
---Log definition
alarmLog OBJECT IDENTIFIER ::= { log 1 }
---Alarm Log definition
maxNumOfEntriesForAlarm OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max Number Of Entries For Alarm"
::= { alarmLog 1 }
lastSeqNumForAlarm OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last Sequence Number For Alarm"
::= { alarmLog 2 }
---AlarmLog table definition
alarmLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlarmLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Alarm Log Table"
::= { alarmLog 3 }
alarmLogEntry OBJECT-TYPE
SYNTAX AlarmLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a
particular interface."
INDEX {alarmLogSequenceNumber}
::= { alarmLogTable 1 }
AlarmLogEntry ::=
SEQUENCE {
alarmLogSequenceNumber Integer32,
alarmLogTimeStamp DateAndTime,
alarmLogNotificationId NotificationIdTC,
alarmLogSeverity SeverityTC,
alarmLogProbableCause ProbableCauseTC,
alarmLogProbableCauseQualifier OCTET STRING,
alarmLogAdditionalText OCTET STRING,
alarmLogLayerRate LayerRateTC
}
alarmLogSequenceNumber OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"AlarmLog Sequence Number"
::= { alarmLogEntry 1 }
alarmLogTimeStamp OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm Log TimeStamp"
::= { alarmLogEntry 2 }
alarmLogNotificationId OBJECT-TYPE
SYNTAX NotificationIdTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm Log Notification Id"
::= { alarmLogEntry 3 }
alarmLogSeverity OBJECT-TYPE
SYNTAX SeverityTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm Log Severity"
::= { alarmLogEntry 4 }
alarmLogProbableCause OBJECT-TYPE
SYNTAX ProbableCauseTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm Log Probable Cause"
::= { alarmLogEntry 5 }
alarmLogProbableCauseQualifier OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm Log Probable Cause Qualifier"
::= { alarmLogEntry 6 }
alarmLogAdditionalText OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm Log Additional Text"
::= { alarmLogEntry 7 }
alarmLogLayerRate OBJECT-TYPE
SYNTAX LayerRateTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm Log Layer Rate"
::= { alarmLogEntry 8 }
--- TMNNotificationLog definition
tmnNotificationLog OBJECT IDENTIFIER ::= { log 2 }
maxNumOfEntriesForTMN OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum Number Of Entries For TMN"
::= { tmnNotificationLog 1 }
lastSeqNumForTMN OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last Sequence Number For TMN"
::= { tmnNotificationLog 2 }
---TMNNotificationLog table definition
tmnNotificationLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnNotificationLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"TMN Notification Log Table"
::= { tmnNotificationLog 3 }
tmnNotificationLogEntry OBJECT-TYPE
SYNTAX TmnNotificationLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a
particular interface."
INDEX {tmnSequenceNumber}
::= { tmnNotificationLogTable 1 }
TmnNotificationLogEntry ::=
SEQUENCE {
tmnSequenceNumber Integer32,
tmnTimeStamp DateAndTime,
tmnNotificationId NotificationIdTC,
tmnAdditionalText OCTET STRING
}
tmnSequenceNumber OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"TMN Sequence Number"
::= { tmnNotificationLogEntry 1 }
tmnTimeStamp OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TMN TimeStamp"
::= { tmnNotificationLogEntry 2 }
tmnNotificationId OBJECT-TYPE
SYNTAX NotificationIdTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TMN Notification Id"
::= { tmnNotificationLogEntry 3 }
tmnAdditionalText OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TMN Additional Text"
::= { tmnNotificationLogEntry 4 }
---EventLog definition
eventLog OBJECT IDENTIFIER ::= { log 3 }
maxNumOfEntriesForEvent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum Number Of Entries For Event"
::= { eventLog 1 }
lastSeqNumForEvent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last Sequence Number For Event"
::= { eventLog 2 }
---EventLog table definition
eventLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF EventLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Event Log Table"
::= { eventLog 3 }
eventLogEntry OBJECT-TYPE
SYNTAX EventLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a
particular interface."
INDEX {eventLogSequenceNumber}
::= { eventLogTable 1 }
EventLogEntry ::=
SEQUENCE {
eventLogSequenceNumber Integer32,
eventLogTimeStamp DateAndTime,
eventLogNotificationId NotificationIdTC,
eventType EventTypeTC,
eventLogAdditionalText OCTET STRING,
eventCause EventCauseTC
}
eventLogSequenceNumber OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Event Log Sequence Number"
::= { eventLogEntry 1 }
eventLogTimeStamp OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Event Log TimeStamp"
::= { eventLogEntry 2 }
eventLogNotificationId OBJECT-TYPE
SYNTAX NotificationIdTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Event Log Notification Id"
::= { eventLogEntry 3 }
eventType OBJECT-TYPE
SYNTAX EventTypeTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Event Type"
::= { eventLogEntry 4 }
eventLogAdditionalText OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Event Log Additional Text"
::= { eventLogEntry 5 }
eventCause OBJECT-TYPE
SYNTAX EventCauseTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Event Cause"
::= { eventLogEntry 6 }
---ProtectionSwitchLog definition
protectionSwitchLog OBJECT IDENTIFIER ::= { log 4 }
maxNumOfEntriesForSwitch OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum Number Of Entries For Switch"
::= { protectionSwitchLog 1 }
lastSeqNumForSwitch OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last Sequence Number For Switch"
::= { protectionSwitchLog 2 }
---ProtectionSwitchLog table definition
protectionSwitchLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF ProtectionSwitchLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Protection Switch Log Table"
::= { protectionSwitchLog 3 }
protectionSwitchLogEntry OBJECT-TYPE
SYNTAX ProtectionSwitchLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a
particular interface."
INDEX {switchLogSequenceNumber}
::= { protectionSwitchLogTable 1 }
ProtectionSwitchLogEntry ::=
SEQUENCE {
switchLogSequenceNumber Integer32,
switchLogTimeStamp DateAndTime,
switchLogNotificationId NotificationIdTC,
switchType SwitchTypeTC,
switchLogAdditionalText OCTET STRING,
switchReason SwitchReasonTC
}
switchLogSequenceNumber OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Switch Log Sequence Number"
::= { protectionSwitchLogEntry 1 }
switchLogTimeStamp OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Switch Log TimeStamp"
::= { protectionSwitchLogEntry 2 }
switchLogNotificationId OBJECT-TYPE
SYNTAX NotificationIdTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Switch Log Notification Id"
::= { protectionSwitchLogEntry 3 }
switchType OBJECT-TYPE
SYNTAX SwitchTypeTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Represents the type of the protection for which the switch has occurred."
::= { protectionSwitchLogEntry 4 }
switchLogAdditionalText OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Switch Log Additional Text"
::= { protectionSwitchLogEntry 5 }
switchReason OBJECT-TYPE
SYNTAX SwitchReasonTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute represents the reason for the switch."
::= { protectionSwitchLogEntry 6 }
--
-- Conformance
--
ptFMCompliances OBJECT IDENTIFIER ::= { ptFMConformance 1 }
ptFMGroups OBJECT IDENTIFIER ::= { ptFMConformance 2 }
ptFMFullCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP entities which implement everything."
MODULE -- This Module
MANDATORY-GROUPS { ptFMCompleteGroup}
::= { ptFMCompliances 1 }
ptFMCompleteGroup OBJECT-GROUP
OBJECTS
{
alarmLogTimeStamp,
alarmLogNotificationId,
alarmLogSeverity,
alarmLogProbableCause,
alarmLogProbableCauseQualifier,
alarmLogAdditionalText,
alarmLogLayerRate,
category,
clearable,
currentAlarmTimeStamp,
currentAlarmNotificationId,
currentAlarmManagedObjectId,
currentAlarmReferenceObjectId,
currentAlarmSeverity,
currentAlarmProbableCause,
currentAlarmProbableCauseQualifier,
currentAlarmAdditionalText,
currentAlarmLayerRate,
eventLogTimeStamp,
eventLogNotificationId,
eventType,
eventLogAdditionalText,
eventCause,
lastSeqNumForAlarm,
lastSeqNumForTMN,
lastSeqNumForEvent,
lastSeqNumForSwitch,
lCASExtendedAlarms,
maxNumOfEntriesForAlarm,
maxNumOfEntriesForTMN,
maxNumOfEntriesForEvent,
maxNumOfEntriesForSwitch,
notificationReporting,
nIMAlarms,
onFilter,
offFilter,
pJEAlarms,
probableCauseQualifier,
probableCause,
severity,
switchLogTimeStamp,
switchLogNotificationId,
switchType,
switchLogAdditionalText,
switchReason,
tmnTimeStamp,
tmnNotificationId,
tmnAdditionalText
}
STATUS current
DESCRIPTION
"A collection of all current objects in this MIB module."
::= { ptFMGroups 1 }
END

105
mibs/ericsson/PT-MIB Normal file
View File

@@ -0,0 +1,105 @@
PT-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP FROM SNMPv2-CONF
miniLink FROM MINI-LINK-MIB;
pt MODULE-IDENTITY
LAST-UPDATED "201701211200Z"
ORGANIZATION "Ericsson"
CONTACT-INFO
"Anders Ekvall
Postal: Ericsson AB,
E-Mail: anders.ekvall@ericsson.com"
DESCRIPTION
"This is the MIB of PT specifics.
The entPhysical and ifIndex used are based on the MOC below:
IP_INTERFACE_MOC 10000
LANX_PORT_MOC 20000
WANX_PORT_MOC 30000
PT_MOC 40000
OM_MOC 50000
RMM_MOC 60000
SFP_MOC 70000
WIFI_MOC 80000
RJ45_MOC 90000
XPIC_MOC 100000
CT_MOC 110000
RLT_MOC 120000
As MOI, slot and port are added according to:
Slot no * 100
Port no * 1
For example an SFP in slot 1 port 3: 70103"
REVISION "201701211200Z"
DESCRIPTION
"MOC and MOI explained."
REVISION "201603091200Z"
DESCRIPTION
"Validated."
REVISION "201602101230Z"
DESCRIPTION
"The initial version of this MIB module."
::= { miniLink 2 }
-- ************
-- * PT *
-- ************
ptDeviceType OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents type of the PT. Always set to the
same value as 'sysObjectID'."
::= { pt 1 }
--ptTrap ::= { pt 2 }
--ptFM ::= { pt 3 }
--ptMonitor ::= { pt 4 }
--ptPM ::= { pt 5 }
--ptSFP ::= { pt 6 }
--ptRadioLink ::= { pt 7 }
ptConformance OBJECT IDENTIFIER ::= { pt 8 }
--
-- Conformance
--
ptCompliances OBJECT IDENTIFIER ::= { ptConformance 1 }
ptGroups OBJECT IDENTIFIER ::= { ptConformance 2 }
ptCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP entities which implement everything."
MODULE -- This Module
MANDATORY-GROUPS { ptCompleteGroup }
::= { ptCompliances 1 }
ptCompleteGroup OBJECT-GROUP
OBJECTS
{
ptDeviceType
}
STATUS current
DESCRIPTION
"A collection of all current objects in this MIB module."
::= { ptGroups 1 }
END

View File

@@ -0,0 +1,135 @@
PT-MONITOR-MIB DEFINITIONS::=BEGIN
IMPORTS
MODULE-IDENTITY,OBJECT-TYPE,Integer32
FROM SNMPv2-SMI
pt FROM PT-MIB
MODULE-COMPLIANCE,
OBJECT-GROUP FROM SNMPv2-CONF
TEXTUAL-CONVENTION FROM SNMPv2-TC;
ptMonitor MODULE-IDENTITY
LAST-UPDATED "201603091230Z"
ORGANIZATION "Ericsson"
CONTACT-INFO
"Anders Ekvall
Postal: Ericsson AB,
E-Mail: anders.ekvall@ericsson.com"
DESCRIPTION
"This is the MIB of PT specifics"
REVISION "201603091230Z"
DESCRIPTION
"Validated."
REVISION "201602101230Z"
DESCRIPTION
"The initial version of this MIB module."
::= { pt 4 }
ptMonitorConformance OBJECT IDENTIFIER ::= { ptMonitor 2 }
--
-- The textual conventions we define and use in this MIB.
--
HealthStatusTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"hw status."
SYNTAX INTEGER {
eOK (1),
eNOTOK (2),
eUNKNOWN (3)
}
---
---The HW Diagnostic Group definition
---
---
---hw diagnostic table definition
---
hwDiagnosticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwDiagnosticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of interface entries. The number of entries is
given by the value of ExampleNumber."
::= { ptMonitor 1 }
hwDiagnosticsEntry OBJECT-TYPE
SYNTAX HwDiagnosticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a
particular interface."
INDEX { hwIndex }
::= { hwDiagnosticsTable 1 }
HwDiagnosticsEntry ::=
SEQUENCE {
hwIndex Integer32,
temperatureStatus OCTET STRING,
healthStatus HealthStatusTC
}
hwIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"a unique index for hw that we diagnose, here it is the slotId"
::= { hwDiagnosticsEntry 1 }
temperatureStatus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature in degree Celsius."
::= { hwDiagnosticsEntry 2 }
healthStatus OBJECT-TYPE
SYNTAX HealthStatusTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the hw running status, it has the following value:
eOK (1),
eNOT_OK (2),
eUNKNOWN (3)
"
::= { hwDiagnosticsEntry 3 }
--
-- Conformance
--
ptMonitorCompliances OBJECT IDENTIFIER ::= { ptMonitorConformance 1 }
ptMonitorGroups OBJECT IDENTIFIER ::= { ptMonitorConformance 2 }
ptMonitorFullCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP entities which implement everything."
MODULE -- This Module
MANDATORY-GROUPS { ptMonitorCompleteGroup}
::= { ptMonitorCompliances 1 }
ptMonitorCompleteGroup OBJECT-GROUP
OBJECTS
{
temperatureStatus,
healthStatus
}
STATUS current
DESCRIPTION
"A collection of all current objects in this MIB module."
::= { ptMonitorGroups 1 }
END

170
mibs/ericsson/PT-PM-MIB Normal file
View File

@@ -0,0 +1,170 @@
PT-PM-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,OBJECT-TYPE,Integer32, Counter64 FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP FROM SNMPv2-CONF
pt FROM PT-MIB;
ptPM MODULE-IDENTITY
LAST-UPDATED "201808291230Z"
ORGANIZATION "Ericsson"
CONTACT-INFO
" "
DESCRIPTION
"This is the MIB of PT PM specifics"
REVISION "201808291230Z"
DESCRIPTION
"Support for PT PM OIDs"
REVISION "201603091230Z"
DESCRIPTION
"Version 1.0: Validated."
REVISION "201602101230Z"
DESCRIPTION
"Version 0.1: The initial version of this MIB module."
::= { pt 5 }
ptPMConformance OBJECT IDENTIFIER ::= { ptPM 2 }
---
---The definition of ptPMTable
---
ptPMTable OBJECT-TYPE
SYNTAX SEQUENCE OF PtPMEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of ptPM Table entries."
::= { ptPM 1 }
ptPMEntry OBJECT-TYPE
SYNTAX PtPMEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of ptPM application."
INDEX { queueIndex }
::= { ptPMTable 1 }
PtPMEntry ::=
SEQUENCE {
queueIndex Integer32,
forwardingPacket Counter64,
forwardingOctets Counter64,
discardPackets Counter64,
discardOctets Counter64,
inputPackets Counter64,
inputOctets Counter64
}
queueIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique index for the queue."
::= { ptPMEntry 1 }
forwardingPacket OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that have been sent from the queue."
::= { ptPMEntry 2 }
forwardingOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets that have been sent from the queue."
::= { ptPMEntry 3 }
discardPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that have been discarded by the queue management mechanism."
::= { ptPMEntry 4 }
discardOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets that have been discarded by the queue management mechanism."
::= { ptPMEntry 5 }
inputPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that have reached the queue."
::= { ptPMEntry 6 }
inputOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets that have reached the queue."
::= { ptPMEntry 7 }
--
-- Conformance
--
ptPMCompliances OBJECT IDENTIFIER ::= { ptPMConformance 1 }
ptPMGroups OBJECT IDENTIFIER ::= { ptPMConformance 2 }
ptPMFullCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP entities which implement everything."
MODULE -- This Module
MANDATORY-GROUPS { ptPMCompleteGroup}
::= { ptPMCompliances 1 }
ptPMCompleteGroup OBJECT-GROUP
OBJECTS
{
forwardingPacket,
forwardingOctets,
discardPackets,
discardOctets,
inputPackets,
inputOctets
}
STATUS current
DESCRIPTION
"A collection of all current objects in this MIB module."
::= { ptPMGroups 1 }
-- ************
-- * PT *
-- ************
-- Place holder for ETHERNET-PM-COUNTER-MIB
END

View File

File diff suppressed because it is too large Load Diff

458
mibs/ericsson/PT-SFP-MIB Normal file
View File

@@ -0,0 +1,458 @@
PT-SFP-MIB DEFINITIONS::=BEGIN
IMPORTS
MODULE-IDENTITY,OBJECT-TYPE,Integer32
FROM SNMPv2-SMI
pt FROM PT-MIB
MODULE-COMPLIANCE,
OBJECT-GROUP FROM SNMPv2-CONF
entPhysicalEntry FROM ENTITY-MIB
TEXTUAL-CONVENTION FROM SNMPv2-TC;
ptSFP MODULE-IDENTITY
LAST-UPDATED "201605221030Z"
ORGANIZATION "Ericsson"
CONTACT-INFO
"Anders Ekvall
Postal: Ericsson AB,
E-Mail: anders.ekvall@ericsson.com"
DESCRIPTION
"This is the MIB of PT SFP specifics. Most entries are read from the SFP itself according to SFF-8472"
REVISION "201605221030Z"
DESCRIPTION
"The initial version of this MIB module."
::= { pt 6 }
ptSFPConformance OBJECT IDENTIFIER ::= { ptSFP 2 }
--
-- The textual conventions we define and use in this MIB.
--
PortInterfaceTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer which indicates the type of PORT_INTERFACE. "
SYNTAX INTEGER {
eNONE (1),
eUNKNOWN (2),
e100BASELX10 (5),
e100BASEFX (7),
e1000BASET (8),
e1000BASEZX (10),
e1000BASELX10 (11),
eS11 (12),
eS11E (13),
eL11 (14),
eL12 (15),
eS41 (16),
eL41 (17),
eL42 (18),
eL42CWDM32DB (19),
eS161 (20),
eL161 (21),
eL162 (22),
eL162CWDM32DB (23),
eL12CWDM28DB (24),
e1000BASESX (25),
e1000BASECWDM32DB (26),
e1000BASECWDM28DB (27),
eL12CWDM32DB (29),
e10GBASELRLW (30),
e10GBASEEREW (31),
e10GBASEZpRZpW (32),
eL42CWDM28DB (33),
eL162CWDM28DB (34),
eMULTIRATECWDM28DB (35),
eMULTIRATECWDM32DB (36),
eMULTIRATES11S41 (37),
e100BASEBX10U (38),
e100BASEBX10D (39),
e1000BASEBX10U (40),
e1000BASEBX10D (41),
e10GBASESX (42),
e10GBASELH (43),
eSTM1SFWD (44),
eSTM1SFWU (45),
eSTM4SFWD (46),
eSTM4SFWU (47),
e1000BASELX (48),
e10GBASESRSW (49),
e1000BASETFIXED (50),
e1000BASEBX20U (51),
e1000BASEBX20D (52),
e10GBASEDWDM (53),
eDWDMSFPHP (54),
eUNRECOGNIZEDSFP (55)
}
InstallStateTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer which indicates the type of INSTALL_STATE."
SYNTAX INTEGER {
eEMPTY(1),
eNOTINSTALLED(2),
eINSTALLEDANDNOTPROVISIONED(3),
eINSTALLEDANDPROVISIONED(4),
eUNAVAILABLE(5),
eUNKNOWN (6)
}
WaveLengthTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer which indicates the type of WAVELENGTH. d is for the decimal."
SYNTAX INTEGER {
eNA (1),
eUNKNOWN (2),
e1471 (3),
e1491 (4),
e1511 (5),
e1531 (6),
e1551 (7),
e1571 (8),
e1591 (9),
e1611 (10),
eNOTPROVISIONED (11),
e1311 (12),
e1560d6 (13),
e1559d8 (14),
e1559d0 (15),
e1558d2 (16),
e1557d4 (17),
e1556d6 (18),
e1555d8 (19),
e1554d9 (20),
e1554d1 (21),
e1553d3 (22),
e1552d5 (23),
e1551d7 (24),
e1550d9 (25),
e1550d1 (26),
e1549d3 (27),
e1548d5 (28),
e1547d7 (29),
e1546d9 (30),
e1546d1 (31),
e1545d3 (32),
e1544d5 (33),
e1543d7 (34),
e1542d9 (35),
e1542d1 (36),
e1541d4 (37),
e1540d6 (38),
e1539d8 (39),
e1539d0 (40),
e1538d2 (41),
e1537d4 (42),
e1536d6 (43),
e1535d8 (44),
e1535d0 (45),
e1534d3 (46),
e1533d5 (47),
e1532d7 (48),
e1531d9 (49),
e1531d1 (50),
e1530d3 (51),
e1529d6 (52),
e850 (53)
}
ConnectorTypeTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer which indicates the type of CONNECTOR_TYPE according SFF-8024."
SYNTAX INTEGER {
eUNKNOWNORUNSPECIFIED (1),
eSC (2),
eFIBERCHANNELSTYLE1COPPER (3),
eFIBERCHANNELSTYLE2COPPER (4),
eBNCTNC (5),
eFIBERCHANNELCOAXIALHEADERS (6),
eFIBERJACK (7),
eLC (8),
eMTRT (9),
eMU (10),
eSG (11),
eOPTICALPIGTAIL (12),
eRESERVED (13),
eHSSDCII (14),
eCOPPERPIGTAIL (15),
eVENDORSPECIFIC (16)
}
---
---The SFP Group definition
---
---
---The definition of sfpTable
---
ptSFPTable OBJECT-TYPE
SYNTAX SEQUENCE OF PtSFPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An table of SFP Table entries."
::= { ptSFP 1 }
ptSFPEntry OBJECT-TYPE
SYNTAX PtSFPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of PT SFP application."
AUGMENTS { entPhysicalEntry }
::= { ptSFPTable 1 }
PtSFPEntry ::=
SEQUENCE {
installedSFP PortInterfaceTC,
installState InstallStateTC,
vendorName OCTET STRING,
vendorOui Integer32,
vendorPn OCTET STRING,
vendorRev OCTET STRING,
vendorSn OCTET STRING,
saleableEntityCode OCTET STRING,
connectorType ConnectorTypeTC,
installedWavelength WaveLengthTC,
levelRx Integer32,
rxPower OCTET STRING,
txPower OCTET STRING,
brNominal Integer32,
length9m1km Integer32,
length9m100m Integer32,
length50m10m Integer32,
length62m10m Integer32,
lengthCopper1m Integer32,
temperature OCTET STRING,
vcc OCTET STRING,
biasCurrent OCTET STRING
}
installedSFP OBJECT-TYPE
SYNTAX PortInterfaceTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of the inserted module, see textual convention"
::= { ptSFPEntry 1 }
installState OBJECT-TYPE
SYNTAX InstallStateTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the inserted module, see textual convention"
::= { ptSFPEntry 2 }
vendorName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SFP vendor name as reported by the SFP"
::= { ptSFPEntry 3 }
vendorOui OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SFP vendor IEEE company ID as reported by the SFP"
::= { ptSFPEntry 4 }
vendorPn OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Part number provided by SFP vendor (ASCII) as reported by the SFP"
::= { ptSFPEntry 5 }
vendorRev OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Revision level for part number provided by vendor (ASCII) as reported by the SFP"
::= { ptSFPEntry 6 }
vendorSn OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Serial number provided by vendor (ASCII) as reported by the SFP"
::= { ptSFPEntry 7 }
saleableEntityCode OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Propriety product name as reported by the SFP's Vendor Specific EEPROM"
::= { ptSFPEntry 8 }
connectorType OBJECT-TYPE
SYNTAX ConnectorTypeTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer which indicates the type of CONNECTOR_TYPE according SFF-8024. See also textual convention"
::= { ptSFPEntry 9 }
installedWavelength OBJECT-TYPE
SYNTAX WaveLengthTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer that in case of an optical SFP, is the laser wavelength in nm. See also textual convention."
::= { ptSFPEntry 10 }
levelRx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The input level in dBm (optical interfaces only). The value is an offset. The value 100 represents 0 dBm. The value 50 represents no signal."
::= { ptSFPEntry 11 }
rxPower OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The received light power, in dBm."
::= { ptSFPEntry 12 }
txPower OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmit light power, in dBm."
::= { ptSFPEntry 13 }
brNominal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The nominal bit rate, in units of 100 Mbps."
::= { ptSFPEntry 14 }
length9m1km OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Link length supported for 9/125 um single fiber, units of 1 km"
::= { ptSFPEntry 15 }
length9m100m OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Link length supported for 9/125 um single fiber, units of 100 m"
::= { ptSFPEntry 16 }
length50m10m OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Link length supported for 50/125 um OM2 fiber, units of 10 m"
::= { ptSFPEntry 17 }
length62m10m OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Link length supported for 62.5/125 um OM1 fiber, units of 10 m "
::= { ptSFPEntry 18 }
lengthCopper1m OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Link length supported for copper or direct attach cable, units of m "
::= { ptSFPEntry 19 }
temperature OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SFP module temperature, in degree Celsius"
::= { ptSFPEntry 20 }
vcc OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The supply voltage of the interface module, in V."
::= { ptSFPEntry 21 }
biasCurrent OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bias current of the interface module, in mA."
::= { ptSFPEntry 22 }
--
-- Conformance
--
ptSFPCompliances OBJECT IDENTIFIER ::= { ptSFPConformance 1 }
ptSFPGroups OBJECT IDENTIFIER ::= { ptSFPConformance 2 }
ptSFPFullCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP entities which implement everything."
MODULE -- This Module
MANDATORY-GROUPS { ptSFPCompleteGroup}
::= { ptSFPCompliances 1 }
ptSFPCompleteGroup OBJECT-GROUP
OBJECTS
{
installedSFP,
installState,
installedWavelength,
levelRx,
vendorName,
vendorOui,
vendorPn,
vendorRev,
connectorType,
brNominal,
length9m1km,
length9m100m,
length50m10m,
length62m10m,
lengthCopper1m,
saleableEntityCode,
vendorSn,
rxPower,
txPower,
temperature,
vcc,
biasCurrent
}
STATUS current
DESCRIPTION
"A collection of all current objects in this MIB module."
::= { ptSFPGroups 1 }
END

1412
mibs/ericsson/PT-TRAP-MIB Normal file
View File

File diff suppressed because it is too large Load Diff

1780
tests/data/ericsson-ml.json Normal file
View File

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,588 @@
1.3.6.1.2.1.1.1.0|4|MINI-LINK 6352 80/21H
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.193.223.2.1
1.3.6.1.2.1.1.3.0|67|59711078
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.10100|4|mgmtPort
1.3.6.1.2.1.2.2.1.2.20101|4|
1.3.6.1.2.1.2.2.1.2.20102|4|LanPort2
1.3.6.1.2.1.2.2.1.2.20103|4|
1.3.6.1.2.1.2.2.1.2.20104|4|
1.3.6.1.2.1.2.2.1.2.30105|4|
1.3.6.1.2.1.2.2.1.2.110101|4|
1.3.6.1.2.1.2.2.1.2.120101|4|okruzni
1.3.6.1.2.1.2.2.1.3.10100|2|0
1.3.6.1.2.1.2.2.1.3.20101|2|0
1.3.6.1.2.1.2.2.1.3.20102|2|0
1.3.6.1.2.1.2.2.1.3.20103|2|0
1.3.6.1.2.1.2.2.1.3.20104|2|0
1.3.6.1.2.1.2.2.1.3.30105|2|0
1.3.6.1.2.1.2.2.1.3.110101|2|0
1.3.6.1.2.1.2.2.1.3.120101|2|0
1.3.6.1.2.1.2.2.1.4.10100|2|1500
1.3.6.1.2.1.2.2.1.4.20101|2|9216
1.3.6.1.2.1.2.2.1.4.20102|2|9216
1.3.6.1.2.1.2.2.1.4.20103|2|9216
1.3.6.1.2.1.2.2.1.4.20104|2|9216
1.3.6.1.2.1.2.2.1.4.30105|2|9216
1.3.6.1.2.1.2.2.1.4.110101|2|0
1.3.6.1.2.1.2.2.1.4.120101|2|0
1.3.6.1.2.1.2.2.1.6.10100|4|
1.3.6.1.2.1.2.2.1.6.20101|4x|346E9DF6005D
1.3.6.1.2.1.2.2.1.6.20102|4x|346E9DF6005E
1.3.6.1.2.1.2.2.1.6.20103|4x|346E9DF6005F
1.3.6.1.2.1.2.2.1.6.20104|4x|346E9DF60060
1.3.6.1.2.1.2.2.1.6.30105|4x|346E9DF60061
1.3.6.1.2.1.2.2.1.6.110101|4|
1.3.6.1.2.1.2.2.1.6.120101|4|
1.3.6.1.2.1.2.2.1.7.10100|2|0
1.3.6.1.2.1.2.2.1.7.20101|2|2
1.3.6.1.2.1.2.2.1.7.20102|2|1
1.3.6.1.2.1.2.2.1.7.20103|2|2
1.3.6.1.2.1.2.2.1.7.20104|2|2
1.3.6.1.2.1.2.2.1.7.30105|2|1
1.3.6.1.2.1.2.2.1.7.110101|2|1
1.3.6.1.2.1.2.2.1.7.120101|2|0
1.3.6.1.2.1.2.2.1.8.10100|2|0
1.3.6.1.2.1.2.2.1.8.20101|2|2
1.3.6.1.2.1.2.2.1.8.20102|2|1
1.3.6.1.2.1.2.2.1.8.20103|2|2
1.3.6.1.2.1.2.2.1.8.20104|2|2
1.3.6.1.2.1.2.2.1.8.30105|2|2
1.3.6.1.2.1.2.2.1.8.110101|2|2
1.3.6.1.2.1.2.2.1.8.120101|2|2
1.3.6.1.2.1.2.2.1.9.10100|67|0
1.3.6.1.2.1.2.2.1.9.20101|67|0
1.3.6.1.2.1.2.2.1.9.20102|67|0
1.3.6.1.2.1.2.2.1.9.20103|67|0
1.3.6.1.2.1.2.2.1.9.20104|67|0
1.3.6.1.2.1.2.2.1.9.30105|67|0
1.3.6.1.2.1.2.2.1.9.110101|67|0
1.3.6.1.2.1.2.2.1.9.120101|67|0
1.3.6.1.2.1.2.2.1.13.10100|65|0
1.3.6.1.2.1.2.2.1.13.20101|65|0
1.3.6.1.2.1.2.2.1.13.20102|65|0
1.3.6.1.2.1.2.2.1.13.20103|65|0
1.3.6.1.2.1.2.2.1.13.20104|65|0
1.3.6.1.2.1.2.2.1.13.30105|65|0
1.3.6.1.2.1.2.2.1.13.110101|65|0
1.3.6.1.2.1.2.2.1.13.120101|65|0
1.3.6.1.2.1.2.2.1.14.10100|65|0
1.3.6.1.2.1.2.2.1.14.20101|65|0
1.3.6.1.2.1.2.2.1.14.20102|65|0
1.3.6.1.2.1.2.2.1.14.20103|65|0
1.3.6.1.2.1.2.2.1.14.20104|65|0
1.3.6.1.2.1.2.2.1.14.30105|65|0
1.3.6.1.2.1.2.2.1.14.110101|65|0
1.3.6.1.2.1.2.2.1.14.120101|65|0
1.3.6.1.2.1.2.2.1.19.10100|65|0
1.3.6.1.2.1.2.2.1.19.20101|65|0
1.3.6.1.2.1.2.2.1.19.20102|65|0
1.3.6.1.2.1.2.2.1.19.20103|65|0
1.3.6.1.2.1.2.2.1.19.20104|65|0
1.3.6.1.2.1.2.2.1.19.30105|65|0
1.3.6.1.2.1.2.2.1.19.110101|65|0
1.3.6.1.2.1.2.2.1.19.120101|65|0
1.3.6.1.2.1.2.2.1.20.10100|65|0
1.3.6.1.2.1.2.2.1.20.20101|65|0
1.3.6.1.2.1.2.2.1.20.20102|65|0
1.3.6.1.2.1.2.2.1.20.20103|65|0
1.3.6.1.2.1.2.2.1.20.20104|65|0
1.3.6.1.2.1.2.2.1.20.30105|65|0
1.3.6.1.2.1.2.2.1.20.110101|65|0
1.3.6.1.2.1.2.2.1.20.120101|65|0
1.3.6.1.2.1.4.3.0|65|4382475
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.5.0|65|0
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|0
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|4322048
1.3.6.1.2.1.4.10.0|65|4316540
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|0
1.3.6.1.2.1.4.14.0|65|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.2.10.133.16.235|2|8
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
1.3.6.1.2.1.4.20.1.2.127.0.0.254|2|1
1.3.6.1.2.1.4.20.1.2.169.254.254.2|2|24
1.3.6.1.2.1.4.20.1.2.192.168.1.1|2|5
1.3.6.1.2.1.4.20.1.3.10.133.16.235|64|255.255.255.248
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0
1.3.6.1.2.1.4.20.1.3.127.0.0.254|64|255.255.255.255
1.3.6.1.2.1.4.20.1.3.169.254.254.2|64|255.255.255.252
1.3.6.1.2.1.4.20.1.3.192.168.1.1|64|255.255.255.0
1.3.6.1.2.1.4.22.1.2.8.10.133.16.233|4x|C88D833A77C6
1.3.6.1.2.1.4.31.1.1.3.1|65|4381969
1.3.6.1.2.1.4.31.1.1.3.2|65|0
1.3.6.1.2.1.4.31.1.1.4.1|70|4381969
1.3.6.1.2.1.4.31.1.1.4.2|70|0
1.3.6.1.2.1.4.31.1.1.5.1|65|4234853292
1.3.6.1.2.1.4.31.1.1.5.2|65|0
1.3.6.1.2.1.4.31.1.1.6.1|70|4234853292
1.3.6.1.2.1.4.31.1.1.6.2|70|0
1.3.6.1.2.1.4.31.1.1.7.1|65|0
1.3.6.1.2.1.4.31.1.1.7.2|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.8.2|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.9.2|65|0
1.3.6.1.2.1.4.31.1.1.10.1|65|0
1.3.6.1.2.1.4.31.1.1.10.2|65|0
1.3.6.1.2.1.4.31.1.1.11.1|65|0
1.3.6.1.2.1.4.31.1.1.11.2|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.12.2|65|0
1.3.6.1.2.1.4.31.1.1.13.1|70|0
1.3.6.1.2.1.4.31.1.1.13.2|70|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.14.2|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.15.2|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.16.2|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.17.2|65|0
1.3.6.1.2.1.4.31.1.1.18.1|65|4321546
1.3.6.1.2.1.4.31.1.1.18.2|65|0
1.3.6.1.2.1.4.31.1.1.19.1|70|4321546
1.3.6.1.2.1.4.31.1.1.19.2|70|0
1.3.6.1.2.1.4.31.1.1.20.1|65|4316039
1.3.6.1.2.1.4.31.1.1.20.2|65|97
1.3.6.1.2.1.4.31.1.1.21.1|70|4316039
1.3.6.1.2.1.4.31.1.1.21.2|70|97
1.3.6.1.2.1.4.31.1.1.22.1|65|0
1.3.6.1.2.1.4.31.1.1.22.2|65|0
1.3.6.1.2.1.4.31.1.1.23.1|65|0
1.3.6.1.2.1.4.31.1.1.23.2|65|0
1.3.6.1.2.1.4.31.1.1.24.1|70|0
1.3.6.1.2.1.4.31.1.1.24.2|70|0
1.3.6.1.2.1.4.31.1.1.25.1|65|0
1.3.6.1.2.1.4.31.1.1.25.2|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.26.2|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.27.2|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.28.2|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.29.2|65|0
1.3.6.1.2.1.4.31.1.1.30.1|65|4316039
1.3.6.1.2.1.4.31.1.1.30.2|65|97
1.3.6.1.2.1.4.31.1.1.31.1|70|4316039
1.3.6.1.2.1.4.31.1.1.31.2|70|97
1.3.6.1.2.1.4.31.1.1.32.1|65|12524368
1.3.6.1.2.1.4.31.1.1.32.2|65|6220
1.3.6.1.2.1.4.31.1.1.33.1|70|4307491664
1.3.6.1.2.1.4.31.1.1.33.2|70|6220
1.3.6.1.2.1.4.31.1.1.34.1|65|0
1.3.6.1.2.1.4.31.1.1.34.2|65|0
1.3.6.1.2.1.4.31.1.1.35.1|70|0
1.3.6.1.2.1.4.31.1.1.35.2|70|0
1.3.6.1.2.1.4.31.1.1.36.1|65|0
1.3.6.1.2.1.4.31.1.1.36.2|65|0
1.3.6.1.2.1.4.31.1.1.37.1|70|0
1.3.6.1.2.1.4.31.1.1.37.2|70|0
1.3.6.1.2.1.4.31.1.1.38.1|65|0
1.3.6.1.2.1.4.31.1.1.38.2|65|97
1.3.6.1.2.1.4.31.1.1.39.1|70|0
1.3.6.1.2.1.4.31.1.1.39.2|70|97
1.3.6.1.2.1.4.31.1.1.40.1|65|0
1.3.6.1.2.1.4.31.1.1.40.2|65|6220
1.3.6.1.2.1.4.31.1.1.41.1|70|0
1.3.6.1.2.1.4.31.1.1.41.2|70|6220
1.3.6.1.2.1.4.31.1.1.42.1|65|0
1.3.6.1.2.1.4.31.1.1.43.1|70|0
1.3.6.1.2.1.4.31.1.1.44.1|65|0
1.3.6.1.2.1.4.31.1.1.45.1|70|0
1.3.6.1.2.1.4.31.1.1.46.1|67|0
1.3.6.1.2.1.4.31.1.1.46.2|67|0
1.3.6.1.2.1.4.31.1.1.47.1|66|60000
1.3.6.1.2.1.4.31.1.1.47.2|66|60000
1.3.6.1.2.1.4.34.1.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.12.217.47.255.254.40.86.141|2|9
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.16.200.149.255.254.15.44.170|2|19
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.20.173.97.255.254.23.119.166|2|15
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.24.181.157.255.254.118.254.104|2|20
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.54.110.157.255.254.246.0.89|2|8
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.56.60.134.255.254.224.115.119|2|18
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.56.97.44.255.254.103.16.233|2|16
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.140.215.16.255.254.34.15.29|2|12
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.140.253.67.255.254.65.106.70|2|21
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.144.203.168.255.254.165.207.71|2|13
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.152.55.152.255.254.95.182.64|2|23
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.152.173.20.255.254.99.196.169|2|14
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.156.88.212.255.254.23.119.35|2|10
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.184.187.134.255.254.63.170.241|2|17
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.232.43.243.255.254.228.47.8|2|11
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.236.141.234.255.254.219.235.206|2|22
1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|6|1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.12.217.47.255.254.40.86.141|6|1.3.6.1.2.1.4.32.1.5.9.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.16.200.149.255.254.15.44.170|6|1.3.6.1.2.1.4.32.1.5.19.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.20.173.97.255.254.23.119.166|6|1.3.6.1.2.1.4.32.1.5.15.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.24.181.157.255.254.118.254.104|6|1.3.6.1.2.1.4.32.1.5.20.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.54.110.157.255.254.246.0.89|6|1.3.6.1.2.1.4.32.1.5.8.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.56.60.134.255.254.224.115.119|6|1.3.6.1.2.1.4.32.1.5.18.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.56.97.44.255.254.103.16.233|6|1.3.6.1.2.1.4.32.1.5.16.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.140.215.16.255.254.34.15.29|6|1.3.6.1.2.1.4.32.1.5.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.140.253.67.255.254.65.106.70|6|1.3.6.1.2.1.4.32.1.5.21.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.144.203.168.255.254.165.207.71|6|1.3.6.1.2.1.4.32.1.5.13.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.152.55.152.255.254.95.182.64|6|1.3.6.1.2.1.4.32.1.5.23.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.152.173.20.255.254.99.196.169|6|1.3.6.1.2.1.4.32.1.5.14.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.156.88.212.255.254.23.119.35|6|1.3.6.1.2.1.4.32.1.5.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.184.187.134.255.254.63.170.241|6|1.3.6.1.2.1.4.32.1.5.17.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.232.43.243.255.254.228.47.8|6|1.3.6.1.2.1.4.32.1.5.11.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.236.141.234.255.254.219.235.206|6|1.3.6.1.2.1.4.32.1.5.22.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|2
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.12.217.47.255.254.40.86.141|2|5
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.16.200.149.255.254.15.44.170|2|5
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.20.173.97.255.254.23.119.166|2|5
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.24.181.157.255.254.118.254.104|2|5
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.54.110.157.255.254.246.0.89|2|5
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.56.60.134.255.254.224.115.119|2|5
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.56.97.44.255.254.103.16.233|2|5
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.140.215.16.255.254.34.15.29|2|5
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.140.253.67.255.254.65.106.70|2|5
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.144.203.168.255.254.165.207.71|2|5
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.152.55.152.255.254.95.182.64|2|5
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.152.173.20.255.254.99.196.169|2|5
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.156.88.212.255.254.23.119.35|2|5
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.184.187.134.255.254.63.170.241|2|5
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.232.43.243.255.254.228.47.8|2|5
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.236.141.234.255.254.219.235.206|2|5
1.3.6.1.2.1.4.35.1.4.8.1.4.10.133.16.233|4x|C88D833A77C6
1.3.6.1.2.1.5.1.0|65|10692
1.3.6.1.2.1.5.2.0|65|0
1.3.6.1.2.1.5.3.0|65|0
1.3.6.1.2.1.5.4.0|65|195
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|0
1.3.6.1.2.1.5.9.0|65|10497
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|0
1.3.6.1.2.1.5.15.0|65|10685
1.3.6.1.2.1.5.16.0|65|0
1.3.6.1.2.1.5.17.0|65|188
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|0
1.3.6.1.2.1.5.23.0|65|10497
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|10692
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|0
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|0
1.3.6.1.2.1.5.29.1.4.2|65|97
1.3.6.1.2.1.5.29.1.5.1|65|10685
1.3.6.1.2.1.5.29.1.5.2|65|0
1.3.6.1.2.1.5.30.1.3.1.3|65|195
1.3.6.1.2.1.5.30.1.3.1.8|65|10497
1.3.6.1.2.1.5.30.1.4.1.0|65|10497
1.3.6.1.2.1.5.30.1.4.1.3|65|188
1.3.6.1.2.1.5.30.1.4.2.133|65|48
1.3.6.1.2.1.5.30.1.4.2.135|65|16
1.3.6.1.2.1.5.30.1.4.2.143|65|33
1.3.6.1.2.1.6.5.0|65|46
1.3.6.1.2.1.6.6.0|65|1018
1.3.6.1.2.1.6.7.0|65|1
1.3.6.1.2.1.6.8.0|65|22
1.3.6.1.2.1.6.9.0|66|4
1.3.6.1.2.1.6.10.0|65|4020291
1.3.6.1.2.1.6.11.0|65|4032822
1.3.6.1.2.1.6.12.0|65|52
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.6.19.1.7.1.4.1.0.0.127.33000.1.4.1.0.0.127.38261|2|5
1.3.6.1.2.1.7.1.0|65|290905
1.3.6.1.2.1.7.2.0|65|0
1.3.6.1.2.1.7.3.0|65|0
1.3.6.1.2.1.7.4.0|65|291102
1.3.6.1.2.1.11.1.0|65|253956
1.3.6.1.2.1.11.2.0|65|253955
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|0
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|1940752
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|49918
1.3.6.1.2.1.11.16.0|65|34073
1.3.6.1.2.1.11.17.0|65|0
1.3.6.1.2.1.11.18.0|65|0
1.3.6.1.2.1.11.19.0|65|0
1.3.6.1.2.1.11.20.0|65|0
1.3.6.1.2.1.11.21.0|65|0
1.3.6.1.2.1.11.22.0|65|0
1.3.6.1.2.1.11.24.0|65|0
1.3.6.1.2.1.11.25.0|65|0
1.3.6.1.2.1.11.26.0|65|0
1.3.6.1.2.1.11.27.0|65|0
1.3.6.1.2.1.11.28.0|65|253957
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.31.1.1.1.1.20101|4|LANXPort:slot=1;port=1
1.3.6.1.2.1.31.1.1.1.1.20102|4|LANXPort:slot=1;port=2
1.3.6.1.2.1.31.1.1.1.1.20103|4|LANXPort:slot=1;port=3
1.3.6.1.2.1.31.1.1.1.1.20104|4|LANXPort:slot=1;port=4
1.3.6.1.2.1.31.1.1.1.1.30105|4|WANXPort:slot=1;port=5
1.3.6.1.2.1.31.1.1.1.1.110101|4|CarrierTermination:slot=1;ctNumber=1
1.3.6.1.2.1.31.1.1.1.1.120101|4|RadioLinkTerminal:slot=1;rltNumber=1
1.3.6.1.2.1.31.1.1.1.2.20101|65|0
1.3.6.1.2.1.31.1.1.1.2.20102|65|1822713
1.3.6.1.2.1.31.1.1.1.2.20103|65|0
1.3.6.1.2.1.31.1.1.1.2.20104|65|0
1.3.6.1.2.1.31.1.1.1.2.30105|65|0
1.3.6.1.2.1.31.1.1.1.2.110101|65|0
1.3.6.1.2.1.31.1.1.1.2.120101|65|0
1.3.6.1.2.1.31.1.1.1.3.20101|65|0
1.3.6.1.2.1.31.1.1.1.3.20102|65|4241922
1.3.6.1.2.1.31.1.1.1.3.20103|65|0
1.3.6.1.2.1.31.1.1.1.3.20104|65|0
1.3.6.1.2.1.31.1.1.1.3.30105|65|0
1.3.6.1.2.1.31.1.1.1.3.110101|65|0
1.3.6.1.2.1.31.1.1.1.3.120101|65|0
1.3.6.1.2.1.31.1.1.1.4.20101|65|0
1.3.6.1.2.1.31.1.1.1.4.20102|65|3
1.3.6.1.2.1.31.1.1.1.4.20103|65|0
1.3.6.1.2.1.31.1.1.1.4.20104|65|0
1.3.6.1.2.1.31.1.1.1.4.30105|65|0
1.3.6.1.2.1.31.1.1.1.4.110101|65|0
1.3.6.1.2.1.31.1.1.1.4.120101|65|0
1.3.6.1.2.1.31.1.1.1.5.20101|65|0
1.3.6.1.2.1.31.1.1.1.5.20102|65|214
1.3.6.1.2.1.31.1.1.1.5.20103|65|0
1.3.6.1.2.1.31.1.1.1.5.20104|65|0
1.3.6.1.2.1.31.1.1.1.5.30105|65|0
1.3.6.1.2.1.31.1.1.1.5.110101|65|0
1.3.6.1.2.1.31.1.1.1.5.120101|65|0
1.3.6.1.2.1.31.1.1.1.6.20101|70|0
1.3.6.1.2.1.31.1.1.1.6.20102|70|873025645
1.3.6.1.2.1.31.1.1.1.6.20103|70|0
1.3.6.1.2.1.31.1.1.1.6.20104|70|0
1.3.6.1.2.1.31.1.1.1.6.30105|70|0
1.3.6.1.2.1.31.1.1.1.6.110101|70|0
1.3.6.1.2.1.31.1.1.1.6.120101|70|0
1.3.6.1.2.1.31.1.1.1.7.20101|70|0
1.3.6.1.2.1.31.1.1.1.7.20102|70|447084
1.3.6.1.2.1.31.1.1.1.7.20103|70|0
1.3.6.1.2.1.31.1.1.1.7.20104|70|0
1.3.6.1.2.1.31.1.1.1.7.30105|70|0
1.3.6.1.2.1.31.1.1.1.7.110101|70|0
1.3.6.1.2.1.31.1.1.1.7.120101|70|0
1.3.6.1.2.1.31.1.1.1.8.20101|70|0
1.3.6.1.2.1.31.1.1.1.8.20102|70|1822713
1.3.6.1.2.1.31.1.1.1.8.20103|70|0
1.3.6.1.2.1.31.1.1.1.8.20104|70|0
1.3.6.1.2.1.31.1.1.1.8.30105|70|0
1.3.6.1.2.1.31.1.1.1.8.110101|70|0
1.3.6.1.2.1.31.1.1.1.8.120101|70|0
1.3.6.1.2.1.31.1.1.1.9.20101|70|0
1.3.6.1.2.1.31.1.1.1.9.20102|70|4241922
1.3.6.1.2.1.31.1.1.1.9.20103|70|0
1.3.6.1.2.1.31.1.1.1.9.20104|70|0
1.3.6.1.2.1.31.1.1.1.9.30105|70|0
1.3.6.1.2.1.31.1.1.1.9.110101|70|0
1.3.6.1.2.1.31.1.1.1.9.120101|70|0
1.3.6.1.2.1.31.1.1.1.10.20101|70|0
1.3.6.1.2.1.31.1.1.1.10.20102|70|119404320
1.3.6.1.2.1.31.1.1.1.10.20103|70|0
1.3.6.1.2.1.31.1.1.1.10.20104|70|0
1.3.6.1.2.1.31.1.1.1.10.30105|70|0
1.3.6.1.2.1.31.1.1.1.10.110101|70|0
1.3.6.1.2.1.31.1.1.1.10.120101|70|0
1.3.6.1.2.1.31.1.1.1.11.20101|70|0
1.3.6.1.2.1.31.1.1.1.11.20102|70|358185
1.3.6.1.2.1.31.1.1.1.11.20103|70|0
1.3.6.1.2.1.31.1.1.1.11.20104|70|0
1.3.6.1.2.1.31.1.1.1.11.30105|70|0
1.3.6.1.2.1.31.1.1.1.11.110101|70|0
1.3.6.1.2.1.31.1.1.1.11.120101|70|0
1.3.6.1.2.1.31.1.1.1.12.20101|70|0
1.3.6.1.2.1.31.1.1.1.12.20102|70|3
1.3.6.1.2.1.31.1.1.1.12.20103|70|0
1.3.6.1.2.1.31.1.1.1.12.20104|70|0
1.3.6.1.2.1.31.1.1.1.12.30105|70|0
1.3.6.1.2.1.31.1.1.1.12.110101|70|0
1.3.6.1.2.1.31.1.1.1.12.120101|70|0
1.3.6.1.2.1.31.1.1.1.13.20101|70|0
1.3.6.1.2.1.31.1.1.1.13.20102|70|214
1.3.6.1.2.1.31.1.1.1.13.20103|70|0
1.3.6.1.2.1.31.1.1.1.13.20104|70|0
1.3.6.1.2.1.31.1.1.1.13.30105|70|0
1.3.6.1.2.1.31.1.1.1.13.110101|70|0
1.3.6.1.2.1.31.1.1.1.13.120101|70|0
1.3.6.1.2.1.31.1.1.1.14.20101|2|0
1.3.6.1.2.1.31.1.1.1.14.20102|2|0
1.3.6.1.2.1.31.1.1.1.14.20103|2|0
1.3.6.1.2.1.31.1.1.1.14.20104|2|0
1.3.6.1.2.1.31.1.1.1.14.30105|2|0
1.3.6.1.2.1.31.1.1.1.14.110101|2|0
1.3.6.1.2.1.31.1.1.1.14.120101|2|0
1.3.6.1.2.1.31.1.1.1.15.20101|66|1000
1.3.6.1.2.1.31.1.1.1.15.20102|66|1000
1.3.6.1.2.1.31.1.1.1.15.20103|66|10000
1.3.6.1.2.1.31.1.1.1.15.20104|66|10000
1.3.6.1.2.1.31.1.1.1.15.30105|66|0
1.3.6.1.2.1.31.1.1.1.15.110101|66|0
1.3.6.1.2.1.31.1.1.1.15.120101|66|0
1.3.6.1.2.1.31.1.1.1.16.20101|2|0
1.3.6.1.2.1.31.1.1.1.16.20102|2|0
1.3.6.1.2.1.31.1.1.1.16.20103|2|0
1.3.6.1.2.1.31.1.1.1.16.20104|2|0
1.3.6.1.2.1.31.1.1.1.16.30105|2|0
1.3.6.1.2.1.31.1.1.1.16.110101|2|0
1.3.6.1.2.1.31.1.1.1.16.120101|2|0
1.3.6.1.2.1.31.1.1.1.17.20101|2|1
1.3.6.1.2.1.31.1.1.1.17.20102|2|1
1.3.6.1.2.1.31.1.1.1.17.20103|2|1
1.3.6.1.2.1.31.1.1.1.17.20104|2|1
1.3.6.1.2.1.31.1.1.1.17.30105|2|2
1.3.6.1.2.1.31.1.1.1.17.110101|2|2
1.3.6.1.2.1.31.1.1.1.17.120101|2|2
1.3.6.1.2.1.31.1.1.1.18.20101|4|
1.3.6.1.2.1.31.1.1.1.18.20102|4|
1.3.6.1.2.1.31.1.1.1.18.20103|4|
1.3.6.1.2.1.31.1.1.1.18.20104|4|
1.3.6.1.2.1.31.1.1.1.18.30105|4|
1.3.6.1.2.1.31.1.1.1.18.110101|4|
1.3.6.1.2.1.31.1.1.1.18.120101|4|
1.3.6.1.2.1.31.1.1.1.19.20101|67|0
1.3.6.1.2.1.31.1.1.1.19.20102|67|0
1.3.6.1.2.1.31.1.1.1.19.20103|67|0
1.3.6.1.2.1.31.1.1.1.19.20104|67|0
1.3.6.1.2.1.31.1.1.1.19.30105|67|0
1.3.6.1.2.1.31.1.1.1.19.110101|67|0
1.3.6.1.2.1.31.1.1.1.19.120101|67|0
1.3.6.1.2.1.47.1.1.1.1.1.40100|2|40100
1.3.6.1.2.1.47.1.1.1.1.1.60100|2|60100
1.3.6.1.2.1.47.1.1.1.1.1.70102|2|70102
1.3.6.1.2.1.47.1.1.1.1.1.80100|2|80100
1.3.6.1.2.1.47.1.1.1.1.2.40100|4|1xge-3x10ge-radio-channel-single
1.3.6.1.2.1.47.1.1.1.1.2.60100|4|
1.3.6.1.2.1.47.1.1.1.1.2.70102|4|1000base-lx-10
1.3.6.1.2.1.47.1.1.1.1.2.80100|4|Wi-Fi Adapter -> NOT AVAILABLE
1.3.6.1.2.1.47.1.1.1.1.3.40100|6|0.0
1.3.6.1.2.1.47.1.1.1.1.3.60100|6|0.0
1.3.6.1.2.1.47.1.1.1.1.3.70102|6|0.0
1.3.6.1.2.1.47.1.1.1.1.3.80100|6|0.0
1.3.6.1.2.1.47.1.1.1.1.4.40100|2|0
1.3.6.1.2.1.47.1.1.1.1.4.60100|2|40100
1.3.6.1.2.1.47.1.1.1.1.4.70102|2|40100
1.3.6.1.2.1.47.1.1.1.1.4.80100|2|40100
1.3.6.1.2.1.47.1.1.1.1.5.40100|2|9
1.3.6.1.2.1.47.1.1.1.1.5.60100|2|9
1.3.6.1.2.1.47.1.1.1.1.5.70102|2|9
1.3.6.1.2.1.47.1.1.1.1.5.80100|2|9
1.3.6.1.2.1.47.1.1.1.1.6.40100|2|0
1.3.6.1.2.1.47.1.1.1.1.6.60100|2|0
1.3.6.1.2.1.47.1.1.1.1.6.70102|2|0
1.3.6.1.2.1.47.1.1.1.1.6.80100|2|0
1.3.6.1.2.1.47.1.1.1.1.7.40100|4|MINI-LINK 6352 80/21H
1.3.6.1.2.1.47.1.1.1.1.7.60100|4|Removable Memory Module
1.3.6.1.2.1.47.1.1.1.1.7.70102|4|LC
1.3.6.1.2.1.47.1.1.1.1.7.80100|4|Wi-Fi Adapter -> NOT AVAILABLE
1.3.6.1.2.1.47.1.1.1.1.8.40100|4|R2A
1.3.6.1.2.1.47.1.1.1.1.8.60100|4|R2A
1.3.6.1.2.1.47.1.1.1.1.8.70102|4|0000
1.3.6.1.2.1.47.1.1.1.1.8.80100|4|UNKNOWN
1.3.6.1.2.1.47.1.1.1.1.9.40100|4|
1.3.6.1.2.1.47.1.1.1.1.9.60100|4|
1.3.6.1.2.1.47.1.1.1.1.9.70102|4|
1.3.6.1.2.1.47.1.1.1.1.9.80100|4|
1.3.6.1.2.1.47.1.1.1.1.10.40100|4|CXP9026371/3 R15A411
1.3.6.1.2.1.47.1.1.1.1.10.60100|4|
1.3.6.1.2.1.47.1.1.1.1.10.70102|4|
1.3.6.1.2.1.47.1.1.1.1.10.80100|4|UNKNOWN
1.3.6.1.2.1.47.1.1.1.1.11.40100|4|CR9P103835
1.3.6.1.2.1.47.1.1.1.1.11.60100|4|BS82000242
1.3.6.1.2.1.47.1.1.1.1.11.70102|4|
1.3.6.1.2.1.47.1.1.1.1.11.80100|4|UNKNOWN
1.3.6.1.2.1.47.1.1.1.1.12.40100|4|
1.3.6.1.2.1.47.1.1.1.1.12.60100|4|
1.3.6.1.2.1.47.1.1.1.1.12.70102|4|Optech
1.3.6.1.2.1.47.1.1.1.1.12.80100|4|
1.3.6.1.2.1.47.1.1.1.1.13.40100|4|UKL 501 57/21H
1.3.6.1.2.1.47.1.1.1.1.13.60100|4|RYS 110 243/1
1.3.6.1.2.1.47.1.1.1.1.13.70102|4|SFP LX
1.3.6.1.2.1.47.1.1.1.1.13.80100|4|UNKNOWN
1.3.6.1.2.1.47.1.1.1.1.14.40100|4|
1.3.6.1.2.1.47.1.1.1.1.14.60100|4|
1.3.6.1.2.1.47.1.1.1.1.14.70102|4|
1.3.6.1.2.1.47.1.1.1.1.14.80100|4|
1.3.6.1.2.1.47.1.1.1.1.15.40100|4|
1.3.6.1.2.1.47.1.1.1.1.15.60100|4|
1.3.6.1.2.1.47.1.1.1.1.15.70102|4|
1.3.6.1.2.1.47.1.1.1.1.15.80100|4|
1.3.6.1.2.1.47.1.1.1.1.16.40100|2|1
1.3.6.1.2.1.47.1.1.1.1.16.60100|2|1
1.3.6.1.2.1.47.1.1.1.1.16.70102|2|1
1.3.6.1.2.1.47.1.1.1.1.16.80100|2|1
1.3.6.1.2.1.47.1.1.1.1.18.40100|4|
1.3.6.1.2.1.47.1.1.1.1.18.60100|4|
1.3.6.1.2.1.47.1.1.1.1.18.70102|4|
1.3.6.1.2.1.47.1.1.1.1.18.80100|4|
1.3.6.1.4.1.193.223.2.4.1.1.2.1|4|43.0 C
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|1030992
1.3.6.1.4.1.2021.4.6.0|2|760496
1.3.6.1.4.1.2021.4.11.0|2|760496
1.3.6.1.4.1.2021.4.13.0|2|77292
1.3.6.1.4.1.2021.4.14.0|2|0
1.3.6.1.4.1.2021.4.15.0|2|149164
1.3.6.1.4.1.2021.10.1.5.1|2|185
1.3.6.1.4.1.2021.10.1.5.2|2|184
1.3.6.1.4.1.2021.10.1.5.3|2|179
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|6563
1.3.6.1.4.1.2021.11.8.0|2|13188
1.3.6.1.4.1.2021.11.9.0|2|2
1.3.6.1.4.1.2021.11.10.0|2|20
1.3.6.1.4.1.2021.11.11.0|2|77
1.3.6.1.4.1.2021.11.50.0|65|2402486
1.3.6.1.4.1.2021.11.51.0|65|0
1.3.6.1.4.1.2021.11.52.0|65|24354599
1.3.6.1.4.1.2021.11.53.0|65|92671108
1.3.6.1.4.1.2021.11.54.0|65|9
1.3.6.1.4.1.2021.11.55.0|65|0
1.3.6.1.4.1.2021.11.56.0|65|0
1.3.6.1.4.1.2021.11.57.0|65|0
1.3.6.1.4.1.2021.11.58.0|65|0
1.3.6.1.4.1.2021.11.59.0|65|3044825
1.3.6.1.4.1.2021.11.60.0|65|4278319668
1.3.6.1.4.1.2021.11.61.0|65|2264
1.3.6.1.4.1.2021.11.62.0|65|0
1.3.6.1.4.1.2021.11.63.0|65|0
1.3.6.1.4.1.2021.11.64.0|65|0
1.3.6.1.4.1.2021.11.65.0|65|0
1.3.6.1.4.1.2021.11.66.0|65|0
1.3.6.1.4.1.2021.11.67.0|2|2
1.3.6.1.6.3.10.2.1.3.0|2|597109