From b39984994b2d17baa21dcb0e99c1a9fdc3ab8106 Mon Sep 17 00:00:00 2001 From: djamp42 Date: Wed, 5 Dec 2018 13:27:08 -0500 Subject: [PATCH] Add Device Dragonwave Harmony Enhanced (#9499) * Add Dragonwave Harmony Enhanced MC Device * Remove single quote from null and 10 divisor * Update and rename HarmonyEnhancedMc.php to HarmonyEnhanced.php * Rename harmony-enhanced-mc.yaml to harmony-enhanced.yaml * Update and rename harmony-enhanced-mc.yaml to harmony-enhanced.yaml * Rename harmony-enhanced-mc.inc.php to harmony-enhanced.inc.php * Rename harmony-enhanced-mc.snmprec to harmony-enhanced.snmprec * Update HarmonyEnhanced.php * Update HarmonyEnhanced.php * Update HarmonyEnhanced.php * Update HarmonyEnhanced.php * More Code Climate Fixes * Create harmony-enhanced.json --- LibreNMS/OS/HarmonyEnhanced.php | 90 + .../discovery/harmony-enhanced.yaml | 26 + includes/definitions/harmony-enhanced.yaml | 13 + includes/polling/os/harmony-enhanced.inc.php | 13 + mibs/dragonwave/DWI-HARMONY-PRIVATE-MIB | 38 + mibs/dragonwave/EQUIPMENT-COMMON-MIB | 619 ++ mibs/dragonwave/MWR-ETHERNET-MIB | 5855 +++++++++++++++++ mibs/dragonwave/MWR-RADIO-MC-MIB | 663 ++ tests/data/harmony-enhanced.json | 3225 +++++++++ tests/snmpsim/harmony-enhanced.snmprec | 335 + 10 files changed, 10877 insertions(+) create mode 100644 LibreNMS/OS/HarmonyEnhanced.php create mode 100644 includes/definitions/discovery/harmony-enhanced.yaml create mode 100644 includes/definitions/harmony-enhanced.yaml create mode 100644 includes/polling/os/harmony-enhanced.inc.php create mode 100644 mibs/dragonwave/DWI-HARMONY-PRIVATE-MIB create mode 100644 mibs/dragonwave/EQUIPMENT-COMMON-MIB create mode 100644 mibs/dragonwave/MWR-ETHERNET-MIB create mode 100644 mibs/dragonwave/MWR-RADIO-MC-MIB create mode 100644 tests/data/harmony-enhanced.json create mode 100644 tests/snmpsim/harmony-enhanced.snmprec diff --git a/LibreNMS/OS/HarmonyEnhanced.php b/LibreNMS/OS/HarmonyEnhanced.php new file mode 100644 index 0000000000..f6ec21eee9 --- /dev/null +++ b/LibreNMS/OS/HarmonyEnhanced.php @@ -0,0 +1,90 @@ +getDevice(), 'mwrEmcRadioRSL', array(), 'MWR-RADIO-MC-MIB', null, '-Ob'); + $sensors = array(); + foreach ($oids as $index => $entry) { + $sensors[] = new WirelessSensor( + 'rssi', + $this->getDeviceId(), + '.1.3.6.1.4.1.7262.4.5.12.203.1.1.5.' . $index, + 'harmony_enhanced', + $index, + 'RSL Radio ' .$index, + null, + null, + 10 + ); + } + return $sensors; + } + + public function discoverWirelessSnr() + { + $oids = snmpwalk_cache_oid($this->getDevice(), 'mwrEmcRadioSNR', array(), 'MWR-RADIO-MC-MIB', null, '-Ob'); + $sensors = array(); + foreach ($oids as $index => $entry) { + $sensors[] = new WirelessSensor( + 'snr', + $this->getDeviceId(), + '.1.3.6.1.4.1.7262.4.5.12.203.1.1.7.' . $index, + 'harmony_enhanced', + $index, + 'SNR Radio ' . $index, + null, + null, + 10 + ); + } + return $sensors; + } + + public function discoverWirelessPower() + { + $oids = snmpwalk_cache_oid($this->getDevice(), 'mwrEmcRadioActualTxPower', array(), 'MWR-RADIO-MC-MIB', null, '-Ob'); + $sensors = array(); + foreach ($oids as $index => $entry) { + $sensors[] = new WirelessSensor( + 'power', + $this->getDeviceId(), + '.1.3.6.1.4.1.7262.4.5.12.203.1.1.9.' . $index, + 'harmony_enhanced', + $index, + 'TX Power Radio ' . $index, + null, + null, + 10 + ); + } + return $sensors; + } + + public function discoverWirelessErrors() + { + $oids = snmpwalk_cache_oid($this->getDevice(), 'mwrEmcRadioRxErrsFrames', array(), 'MWR-RADIO-MC-MIB', null, '-Ob'); + $sensors = array(); + foreach ($oids as $index => $entry) { + $sensors[] = new WirelessSensor( + 'errors', + $this->getDeviceId(), + '.1.3.6.1.4.1.7262.4.5.12.203.1.1.4.' . $index, + 'harmony_enhanced', + $index, + 'RX Errors Radio ' . $index + ); + } + return $sensors; + } +} diff --git a/includes/definitions/discovery/harmony-enhanced.yaml b/includes/definitions/discovery/harmony-enhanced.yaml new file mode 100644 index 0000000000..90cb993440 --- /dev/null +++ b/includes/definitions/discovery/harmony-enhanced.yaml @@ -0,0 +1,26 @@ +mib: MWR-ETHERNET-MIB:MWR-RADIO-MC-MIB +modules: + sensors: + temperature: + options: + skip_values_lt: 0 + data: + - + oid: mwrSystemTemperature + num_oid: '.1.3.6.1.4.1.7262.4.5.2.2.3.{{ $index }}' + descr: 'Current System Temperature' + index: 'mwrSystemTemperature.{{ $index }}' + state: + data: + - + oid: mwrEmcRadioStatusTable + value: mwrEmcRadioLinkStatus + num_oid: '.1.3.6.1.4.1.7262.4.5.12.202.1.1.11.{{ $index }}' + descr: 'Wireless Link {{ $index }}' + index: 'mwrEmcRadioLinkStatus.{{ $index }}' + snmp_flags: '-OQUsbe' + state_name: mwrEmcRadioLinkStatus + states: + - { value: -1, generic: 3, graph: 0, descr: 'null' } + - { value: 1, generic: 0, graph: 1, descr: up } + - { value: 2, generic: 2, graph: 1, descr: down } diff --git a/includes/definitions/harmony-enhanced.yaml b/includes/definitions/harmony-enhanced.yaml new file mode 100644 index 0000000000..2cbf18eca1 --- /dev/null +++ b/includes/definitions/harmony-enhanced.yaml @@ -0,0 +1,13 @@ +os: harmony-enhanced +text: 'Dragonwave Harmony Enhanced' +type: wireless +icon: dragonwave +over: + - { graph: device_wireless_snr, text: SNR } + - { graph: device_wireless_rssi, text: RSL } +discovery: + - sysObjectID: + - .1.3.6.1.4.1.7262.4. +mib_dir: + - dragonwave + diff --git a/includes/polling/os/harmony-enhanced.inc.php b/includes/polling/os/harmony-enhanced.inc.php new file mode 100644 index 0000000000..3f9234bee6 --- /dev/null +++ b/includes/polling/os/harmony-enhanced.inc.php @@ -0,0 +1,13 @@ +" + ::= { mwrBacEntry 3 } + +mwrBacRecordLogging OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Enables/disables logging of BAC related statistics like Maximum BAC gain and Maximum uncompressed ratio + on a per queue basis to syslog and flashlog." + ::= { mwrBacEntry 4 } + +mwrHcQTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrHcQEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing Header Compression settings for each queue, the configuration corresponds to the egress QoS of radio port." + ::= { mwrCompressionConfigurations 3 } + +mwrHcQEntry OBJECT-TYPE + SYNTAX MwrHcQEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table entry containing Header Compression settings for each queue." + INDEX { mwrHcQIndex } + ::= { mwrHcQTable 1 } + +MwrHcQEntry ::= SEQUENCE { + mwrHcQIndex + QueueType, + mwrHcQ1 + EnableType, + mwrHcQ2 + EnableType, + mwrHcQ3 + EnableType, + mwrHcQ4 + EnableType, + mwrHcQ5 + EnableType, + mwrHcQ6 + EnableType, + mwrHcQ7 + EnableType, + mwrHcQ8 + EnableType, + mwrHcQRowStatus + RowStatus +} + +mwrHcQIndex OBJECT-TYPE + SYNTAX QueueType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Specifies Header Compression queue index for each radio queue." + ::= { mwrHcQEntry 1 } + +mwrHcQ1 OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or disables the Header Compression on queue 1." + ::= { mwrHcQEntry 2 } + +mwrHcQ2 OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or disables the Header Compression on queue 2." + ::= { mwrHcQEntry 3 } + +mwrHcQ3 OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or disables the Header Compression on queue 3." + ::= { mwrHcQEntry 4 } + +mwrHcQ4 OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or disables the Header Compression on queue 4." + ::= { mwrHcQEntry 5 } + +mwrHcQ5 OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or disables the Header Compression on queue 5." + ::= { mwrHcQEntry 6 } + +mwrHcQ6 OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or disables the Header Compression on queue 6." + ::= { mwrHcQEntry 7 } + +mwrHcQ7 OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or disables the Header Compression on queue 7." + ::= { mwrHcQEntry 8 } + +mwrHcQ8 OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enables or disables the Header Compression on queue 8." + ::= { mwrHcQEntry 9 } + +mwrHcQRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Header Compression table Row Status. This object is used to apply Header Compression settings for all queues simultaneously." + ::= { mwrHcQEntry 10 } + +mwrBacStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrBacStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table containing Bandwidth Acceleration status entries." + ::= { mwrCompressionStatus 1 } + +mwrBacStatusEntry OBJECT-TYPE + SYNTAX MwrBacStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains Bandwidth Acceleration status entries." + INDEX { mwrBacStatusQIndex } + ::= { mwrBacStatusTable 1 } + +MwrBacStatusEntry ::= SEQUENCE { + mwrBacStatusQIndex + QueueType, + mwrBacUncompressedRatio + DisplayString, + mwrBacGain + DisplayString +} + +mwrBacStatusQIndex OBJECT-TYPE + SYNTAX QueueType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value for each of the 8 Queues." + ::= { mwrBacStatusEntry 1 } + +mwrBacUncompressedRatio OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Running average Uncompressed ratio is calculated by collecting n samples of bytes uncompressed and bytes in to queue over specified average period in percentage." + ::= { mwrBacStatusEntry 2 } + +mwrBacGain OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Running Average BAC gain is the sum of all bytes getting into the compressor divided by the sum of all compressed and uncompressed bytes calculated over an average period." + ::= { mwrBacStatusEntry 3 } + +mwrEventConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrEventConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of alarm configuration" + ::= { mwrEventsConfigurations 1 } + +mwrEventConfigEntry OBJECT-TYPE + SYNTAX MwrEventConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of alarm configuration" + INDEX { mwrEventConfigIndex, + mwrEventInstanceIndex } + ::= { mwrEventConfigTable 1 } + +MwrEventConfigEntry ::= SEQUENCE { + mwrEventConfigIndex + Unsigned32, + mwrEventInstanceIndex + Unsigned32, + mwrEventConfigSeverity + INTEGER, + mwrEventName + DisplayString, + mwrAlarmConfigState + EnableType, + mwrTrapConfigState + EnableType, + mwrLogEventState + EnableType +} + +mwrEventConfigIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value for each alarm." + ::= { mwrEventConfigEntry 1 } + +mwrEventInstanceIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each instance of an alarm." + ::= { mwrEventConfigEntry 2 } + +mwrEventConfigSeverity OBJECT-TYPE + SYNTAX INTEGER { + clear (0), + warning (1), + minor (2), + major (3), + critical (4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The severity of the alarm as minor, major or critical." + ::= { mwrEventConfigEntry 3 } + +mwrEventName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Represents the event name." + ::= { mwrEventConfigEntry 4 } + +mwrAlarmConfigState OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The state of the alarm which can be either enabled or disabled." + ::= { mwrEventConfigEntry 5 } + +mwrTrapConfigState OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The state of the trap which can be either enabled or disabled." + ::= { mwrEventConfigEntry 6 } + +mwrLogEventState OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object is used to enable or disable logging the events." + ::= { mwrEventConfigEntry 7 } + +-- +-- mwrLogs +-- + +mwrEventLogEnable OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether event log is enabled." + DEFVAL { enabled } + ::= { mwrLogsConfigurations 1 } + +mwrPerfmLogEnable OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether performance log is enabled." + DEFVAL { enabled } + ::= { mwrLogsConfigurations 2 } + +mwrPerfmLogInterval OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..10)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Performance statistics are logged periodically by this interval. The interval can be up to 00:15:00 (15 minutes) and as short as 00:00:1 (1 seconds)." + ::= { mwrLogsConfigurations 3 } + +mwrSysLogServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrSysLogServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The syslog server table." + ::= { mwrLogsConfigurations 4 } + +mwrSysLogServerEntry OBJECT-TYPE + SYNTAX MwrSysLogServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The syslog server table entry." + INDEX { mwrSysLogServerIndex } + ::= { mwrSysLogServerTable 1 } + +MwrSysLogServerEntry ::= SEQUENCE { + mwrSysLogServerIndex + Integer32, + mwrSysLogEnable + EnableType, + mwrSysLogHostDomain + InetAddressType, + mwrSysLogHostAddress + InetAddress +} + +mwrSysLogServerIndex OBJECT-TYPE + SYNTAX Integer32 (1..5) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The syslog server table index." + ::= { mwrSysLogServerEntry 1 } + +mwrSysLogEnable OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether sys log is enabled." + ::= { mwrSysLogServerEntry 2 } + +mwrSysLogHostDomain OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates sys log host inet address type. Valid types are ipv4 or ipv6. " + ::= { mwrSysLogServerEntry 3 } + +mwrSysLogHostAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates sys log host inet address octet string." + ::= { mwrSysLogServerEntry 4 } + +mwrPmRspiThresholdTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrPmRspiThresholdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Performance Monitoring table for Radio Synchronous Physical Interface thresholds." + ::= { mwrPMConfigurations 1 } + +mwrPmRspiThresholdEntry OBJECT-TYPE + SYNTAX MwrPmRspiThresholdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains entries for Radio Synchronous Physical Interface thresholds." + INDEX { mwrPmRspiThrIndex } + ::= { mwrPmRspiThresholdTable 1 } + +MwrPmRspiThresholdEntry ::= SEQUENCE { + mwrPmRspiThrIndex + RadioInstanceType, + mwrPmRLT1 + Integer32, + mwrPmRLT2 + Integer32, + mwrPmRLT3 + Integer32, + mwrPmRLT4 + Integer32, + mwrPmTLT1 + Integer32, + mwrPmTLT2 + Integer32, + mwrPmRspiThrRowStatus + RowStatus +} + +mwrPmRspiThrIndex OBJECT-TYPE + SYNTAX RadioInstanceType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index to PM RSPI Threshold table." + ::= { mwrPmRspiThresholdEntry 1 } + +mwrPmRLT1 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Receive Level Threshold 1, represents the value of the first received power level threshold." + ::= { mwrPmRspiThresholdEntry 2 } + +mwrPmRLT2 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Receive Level Threshold 2, represents the value of the second received power level threshold." + ::= { mwrPmRspiThresholdEntry 3 } + +mwrPmRLT3 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Receive Level Threshold 3, represents the value of the third received power level threshold." + ::= { mwrPmRspiThresholdEntry 4 } + +mwrPmRLT4 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Receive Level Threshold 4, represents the value of the fourth received power level threshold." + ::= { mwrPmRspiThresholdEntry 5 } + +mwrPmTLT1 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transmit Level Threshold 1, represents the value of the first transmitted power level threshold." + ::= { mwrPmRspiThresholdEntry 6 } + +mwrPmTLT2 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transmit Level Threshold 2, represents the value of the second transmitted power level threshold." + ::= { mwrPmRspiThresholdEntry 7 } + +mwrPmRspiThrRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object is used for applying all RSPI thresholds simultaneously. Set RowStatus to NotInService, make changes to all or some threshold values and then change RowStatus back to Active." + ::= { mwrPmRspiThresholdEntry 8 } + +mwrPmBwThresholdTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrPmBwThresholdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Performance monitoring out bandwidth utilization thresholds table." + ::= { mwrPMConfigurations 2 } + +mwrPmBwThresholdEntry OBJECT-TYPE + SYNTAX MwrPmBwThresholdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains entries for performance monitoring out bandwidth utilization thresholds." + INDEX { mwrPmBWThrIndex } + ::= { mwrPmBwThresholdTable 1 } + +MwrPmBwThresholdEntry ::= SEQUENCE { + mwrPmBWThrIndex + Integer32, + mwrPmBWT1 + Integer32, + mwrPmBWT2 + Integer32, + mwrPmBWT3 + Integer32, + mwrPmBWT4 + Integer32, + mwrPmBWT5 + Integer32, + mwrPmBWT6 + Integer32, + mwrPmBWT7 + Integer32, + mwrPmBWT8 + Integer32, + mwrPmBWT9 + Integer32, + mwrPmBWT10 + Integer32, + mwrPmBWTRowStatus + RowStatus +} + +mwrPmBWThrIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index to PM out BW Threshold table. Index 1 represents the radio port." + ::= { mwrPmBwThresholdEntry 1 } + +mwrPmBWT1 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring out BW utilization threshold 1." + ::= { mwrPmBwThresholdEntry 2 } + +mwrPmBWT2 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring out BW utilization threshold 2." + ::= { mwrPmBwThresholdEntry 3 } + +mwrPmBWT3 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring out BW utilization threshold 3." + ::= { mwrPmBwThresholdEntry 4 } + +mwrPmBWT4 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring out BW utilization threshold 4." + ::= { mwrPmBwThresholdEntry 5 } + +mwrPmBWT5 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring out BW utilization threshold 5." + ::= { mwrPmBwThresholdEntry 6 } + +mwrPmBWT6 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring out BW utilization threshold 6." + ::= { mwrPmBwThresholdEntry 7 } + +mwrPmBWT7 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring out BW utilization threshold 7." + ::= { mwrPmBwThresholdEntry 8 } + +mwrPmBWT8 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring out BW utilization threshold 8." + ::= { mwrPmBwThresholdEntry 9 } + +mwrPmBWT9 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring out BW utilization threshold 9." + ::= { mwrPmBwThresholdEntry 10 } + +mwrPmBWT10 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring out BW utilization threshold 10." + ::= { mwrPmBwThresholdEntry 11 } + +mwrPmBWTRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object is used for applying all PM bandwidth threshold settings simultaneously. Set RowStatus to NotInService, make changes to all or some threshold values and then change RowStatus back to Active." + ::= { mwrPmBwThresholdEntry 12 } + +mwrPmTpThresholdTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrPmTpThresholdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Performance monitoring throughput thresholds table." + ::= { mwrPMConfigurations 3 } + +mwrPmTpThresholdEntry OBJECT-TYPE + SYNTAX MwrPmTpThresholdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains entries for performance monitoring throughput thresholds." + INDEX { mwrPmTPThrIndex } + ::= { mwrPmTpThresholdTable 1 } + +MwrPmTpThresholdEntry ::= SEQUENCE { + mwrPmTPThrIndex + Integer32, + mwrPmTPT1 + Integer32, + mwrPmTPT2 + Integer32, + mwrPmTPT3 + Integer32, + mwrPmTPT4 + Integer32, + mwrPmTPT5 + Integer32, + mwrPmTPT6 + Integer32, + mwrPmTPT7 + Integer32, + mwrPmTPT8 + Integer32, + mwrPmTPT9 + Integer32, + mwrPmTPT10 + Integer32, + mwrPmTPTRowStatus + RowStatus +} + +mwrPmTPThrIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index to PM throughput Threshold table. Index 1 represents the radio port." + ::= { mwrPmTpThresholdEntry 1 } + +mwrPmTPT1 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring throughput threshold 1." + ::= { mwrPmTpThresholdEntry 2 } + +mwrPmTPT2 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring throughput threshold 2." + ::= { mwrPmTpThresholdEntry 3 } + +mwrPmTPT3 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring throughput threshold 3." + ::= { mwrPmTpThresholdEntry 4 } + +mwrPmTPT4 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring throughput threshold 4." + ::= { mwrPmTpThresholdEntry 5 } + +mwrPmTPT5 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring throughput threshold 5." + ::= { mwrPmTpThresholdEntry 6 } + +mwrPmTPT6 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring throughput threshold 6." + ::= { mwrPmTpThresholdEntry 7 } + +mwrPmTPT7 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring throughput threshold 7." + ::= { mwrPmTpThresholdEntry 8 } + +mwrPmTPT8 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring throughput threshold 8." + ::= { mwrPmTpThresholdEntry 9 } + +mwrPmTPT9 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring throughput threshold 9." + ::= { mwrPmTpThresholdEntry 10 } + +mwrPmTPT10 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The performance monitoring throughput threshold 10." + ::= { mwrPmTpThresholdEntry 11 } + +mwrPmTPTRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object is used for applying all PM throughput threshold settings simultaneously. Set RowStatus to NotInService, make changes to all or some threshold values and then change RowStatus back to Active." + ::= { mwrPmTpThresholdEntry 12 } + +mwrPmAdvThresholdTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrPmAdvThresholdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The advanced performance monitoring thresholds table." + ::= { mwrPMConfigurations 4 } + +mwrPmAdvThresholdEntry OBJECT-TYPE + SYNTAX MwrPmAdvThresholdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The advanced performance monitoring thresholds entries." + INDEX { mwrPmAdvThrIndex } + ::= { mwrPmAdvThresholdTable 1 } + +MwrPmAdvThresholdEntry ::= SEQUENCE { + mwrPmAdvThrIndex + Integer32, + mwrPmAdvTxHitsT1 + Integer32, + mwrPmAdvRxHitsT1 + Integer32, + mwrPmAdvRowStatus + RowStatus +} + +mwrPmAdvThrIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The advanced performance monitoring thresholds table index. Index 1 represents the radio port." + ::= { mwrPmAdvThresholdEntry 1 } + +mwrPmAdvTxHitsT1 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The advanced performance monitoring Tx hits threshold 1." + ::= { mwrPmAdvThresholdEntry 2 } + +mwrPmAdvRxHitsT1 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The advanced performance monitoring Rx hits threshold 1." + ::= { mwrPmAdvThresholdEntry 3 } + +mwrPmAdvRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object is used for applying all PM advanced threshold settings simultaneously. Set RowStatus to NotInService, make changes to all threshold values and then change back RowStatus to Active." + ::= { mwrPmAdvThresholdEntry 4 } + +mwrPmRspiTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrPmRspiEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Performance Monitoring table for Radio Synchronous Physical Interface." + ::= { mwrPMStatus 1 } + +mwrPmRspiEntry OBJECT-TYPE + SYNTAX MwrPmRspiEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains information for Radio Synchronous Physical Interface. The table is indexed by the granularity period and + by the interval number. 22 rows are always presents, 20 are the historical + measurements for 16 intervals in the quarter granularity and 4 intervals + in the 24 hours granularity period. 2 rows represent the current measures." + INDEX { mwrPmRspiStatusIndex, + mwrPmRspiInterval, + mwrPmRspiIntervalID } + ::= { mwrPmRspiTable 1 } + +MwrPmRspiEntry ::= SEQUENCE { + mwrPmRspiStatusIndex + RadioInstanceType, + mwrPmRspiInterval + PMIntervalType, + mwrPmRspiIntervalID + Integer32, + mwrPmRspiMeasSuspect + TruthValue, + mwrPmRspiMeasIntervalStatus + INTEGER, + mwrPmRspiMeasTimeLength + Integer32, + mwrPmRspiMeasTLTMMin + Integer32, + mwrPmRspiMeasTLTMMax + Integer32, + mwrPmRspiMeasTLTS1 + Integer32, + mwrPmRspiMeasTLTS2 + Integer32, + mwrPmRspiMeasRLTMMin + Integer32, + mwrPmRspiMeasRLTMMax + Integer32, + mwrPmRspiMeasRLTS1 + Integer32, + mwrPmRspiMeasRLTS2 + Integer32, + mwrPmRspiMeasRLTS3 + Integer32, + mwrPmRspiMeasRLTS4 + Integer32 +} + +mwrPmRspiStatusIndex OBJECT-TYPE + SYNTAX RadioInstanceType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value for each of the radio instance." + ::= { mwrPmRspiEntry 1 } + +mwrPmRspiInterval OBJECT-TYPE + SYNTAX PMIntervalType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The interval period of the row. Quarter means the 15 minutes interval and day means the 24 hours interval." + ::= { mwrPmRspiEntry 2 } + +mwrPmRspiIntervalID OBJECT-TYPE + SYNTAX Integer32 (0..16) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The interval identifier of the row, from 1 (last quarter) to 16 (oldest quarter) for the 15-minute + and from 1 (yesterday) to 4 (4 days ago) for the 24-hour. + Value 0 can be used to retrieve current measurements, according to the requested granularity." + ::= { mwrPmRspiEntry 3 } + +mwrPmRspiMeasSuspect OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Any problem that invalidates the measurement." + ::= { mwrPmRspiEntry 4 } + +mwrPmRspiMeasIntervalStatus OBJECT-TYPE + SYNTAX INTEGER { + invalid (1), + valid (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication if the interval is a valid measurement. When the system comes up, all the previous intervals are invalid." + ::= { mwrPmRspiEntry 5 } + +mwrPmRspiMeasTimeLength OBJECT-TYPE + SYNTAX Integer32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interval duration in seconds." + ::= { mwrPmRspiEntry 6 } + +mwrPmRspiMeasTLTMMin OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The transmitted power level tide mark low value." + ::= { mwrPmRspiEntry 7 } + +mwrPmRspiMeasTLTMMax OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The transmitted power level tide mark high value." + ::= { mwrPmRspiEntry 8 } + +mwrPmRspiMeasTLTS1 OBJECT-TYPE + SYNTAX Integer32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the first transmitted power level threshold." + ::= { mwrPmRspiEntry 9 } + +mwrPmRspiMeasTLTS2 OBJECT-TYPE + SYNTAX Integer32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the second transmitted power level threshold." + ::= { mwrPmRspiEntry 10 } + +mwrPmRspiMeasRLTMMin OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The received power level tide mark low value." + ::= { mwrPmRspiEntry 11 } + +mwrPmRspiMeasRLTMMax OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The received power level tide mark high value." + ::= { mwrPmRspiEntry 12 } + +mwrPmRspiMeasRLTS1 OBJECT-TYPE + SYNTAX Integer32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds below the first received power level threshold." + ::= { mwrPmRspiEntry 13 } + +mwrPmRspiMeasRLTS2 OBJECT-TYPE + SYNTAX Integer32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds below the second received power level threshold." + ::= { mwrPmRspiEntry 14 } + +mwrPmRspiMeasRLTS3 OBJECT-TYPE + SYNTAX Integer32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds below the third received power level threshold." + ::= { mwrPmRspiEntry 15 } + +mwrPmRspiMeasRLTS4 OBJECT-TYPE + SYNTAX Integer32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds below the fourth received power level threshold." + ::= { mwrPmRspiEntry 16 } + +mwrPmBWTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrPmBWEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table containing performance monitoring measurements in 15 min and 24 hrs intervals for out BW utilization." + ::= { mwrPMStatus 2 } + +mwrPmBWEntry OBJECT-TYPE + SYNTAX MwrPmBWEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entries containing performance monitoring measurements in 15 min and 24 hrs intervals for out BW utilization." + INDEX { mwrPmBWStatusIndex, + mwrPmBWInterval, + mwrPmBWIntervalID } + ::= { mwrPmBWTable 1 } + +MwrPmBWEntry ::= SEQUENCE { + mwrPmBWStatusIndex + Integer32, + mwrPmBWInterval + PMIntervalType, + mwrPmBWIntervalID + Integer32, + mwrPmBWMeasSuspect + TruthValue, + mwrPmBWMeasIntervalStatus + INTEGER, + mwrPmBWMeasTimeLength + Integer32, + mwrPmMeasBWTS1 + Integer32, + mwrPmMeasBWTS2 + Integer32, + mwrPmMeasBWTS3 + Integer32, + mwrPmMeasBWTS4 + Integer32, + mwrPmMeasBWTS5 + Integer32, + mwrPmMeasBWTS6 + Integer32, + mwrPmMeasBWTS7 + Integer32, + mwrPmMeasBWTS8 + Integer32, + mwrPmMeasBWTS9 + Integer32, + mwrPmMeasBWTS10 + Integer32 +} + +mwrPmBWStatusIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The performance monitoring out BW utilization measurements table index. Index 1 represents the radio port." + ::= { mwrPmBWEntry 1 } + +mwrPmBWInterval OBJECT-TYPE + SYNTAX PMIntervalType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The interval period of the row. Quarter means the 15 minutes interval and day means the 24 hours interval." + ::= { mwrPmBWEntry 2 } + +mwrPmBWIntervalID OBJECT-TYPE + SYNTAX Integer32 (0..16) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The interval identifier of the row, from 1 (last quarter) to 16 (oldest quarter) for the 15-minute + and from 1 (yesterday) to 4 (4 days ago) for the 24-hour. + Value 0 can be used to retrieve current measurements, according to the requested granularity." + ::= { mwrPmBWEntry 3 } + +mwrPmBWMeasSuspect OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Any problem that invalidates the measurement." + ::= { mwrPmBWEntry 4 } + +mwrPmBWMeasIntervalStatus OBJECT-TYPE + SYNTAX INTEGER { + invalid (1), + valid (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication if the interval is a valid measurement. When the system comes up, all the previous intervals are invalid." + ::= { mwrPmBWEntry 5 } + +mwrPmBWMeasTimeLength OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interval duration in seconds." + ::= { mwrPmBWEntry 6 } + +mwrPmMeasBWTS1 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the first BW utilization threshold." + ::= { mwrPmBWEntry 7 } + +mwrPmMeasBWTS2 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the second BW utilization threshold." + ::= { mwrPmBWEntry 8 } + +mwrPmMeasBWTS3 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the third BW utilization threshold." + ::= { mwrPmBWEntry 9 } + +mwrPmMeasBWTS4 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the fourth BW utilization threshold." + ::= { mwrPmBWEntry 10 } + +mwrPmMeasBWTS5 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the fifth BW utilization threshold." + ::= { mwrPmBWEntry 11 } + +mwrPmMeasBWTS6 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the sixth BW utilization threshold." + ::= { mwrPmBWEntry 12 } + +mwrPmMeasBWTS7 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the seventh BW utilization threshold." + ::= { mwrPmBWEntry 13 } + +mwrPmMeasBWTS8 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the eighth BW utilization threshold." + ::= { mwrPmBWEntry 14 } + +mwrPmMeasBWTS9 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the ninth BW utilization threshold." + ::= { mwrPmBWEntry 15 } + +mwrPmMeasBWTS10 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the tenth BW utilization threshold." + ::= { mwrPmBWEntry 16 } + +mwrPmTPTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrPmTPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table containing performance monitoring measurements in 15 min and 24 hrs intervals for throughput." + ::= { mwrPMStatus 3 } + +mwrPmTPEntry OBJECT-TYPE + SYNTAX MwrPmTPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry containing performance monitoring throughput measurements in 15 min and 24 hrs intervals." + INDEX { mwrPmTPStatusIndex, + mwrPmTPInterval, + mwrPmTPIntervalID } + ::= { mwrPmTPTable 1 } + +MwrPmTPEntry ::= SEQUENCE { + mwrPmTPStatusIndex + Integer32, + mwrPmTPInterval + PMIntervalType, + mwrPmTPIntervalID + Integer32, + mwrPmTPMeasSuspect + TruthValue, + mwrPmTPMeasIntervalStatus + INTEGER, + mwrPmTPMeasTimeLength + Integer32, + mwrPmMeasTPTS1 + Integer32, + mwrPmMeasTPTS2 + Integer32, + mwrPmMeasTPTS3 + Integer32, + mwrPmMeasTPTS4 + Integer32, + mwrPmMeasTPTS5 + Integer32, + mwrPmMeasTPTS6 + Integer32, + mwrPmMeasTPTS7 + Integer32, + mwrPmMeasTPTS8 + Integer32, + mwrPmMeasTPTS9 + Integer32, + mwrPmMeasTPTS10 + Integer32 +} + +mwrPmTPStatusIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The performance monitoring throughput measurements table index. Index 1 represents the radio port." + ::= { mwrPmTPEntry 1 } + +mwrPmTPInterval OBJECT-TYPE + SYNTAX PMIntervalType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The interval period of the row. Quarter means the 15 minutes interval and day means the 24 hours interval." + ::= { mwrPmTPEntry 2 } + +mwrPmTPIntervalID OBJECT-TYPE + SYNTAX Integer32 (0..16) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The interval identifier of the row, from 1 (last quarter) to 16 (oldest quarter) for the 15-minute + and from 1 (yesterday) to 4 (4 days ago) for the 24-hour. + Value 0 can be used to retrieve current measurements, according to the requested granularity." + ::= { mwrPmTPEntry 3 } + +mwrPmTPMeasSuspect OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Any problem that invalidates the measurement." + ::= { mwrPmTPEntry 4 } + +mwrPmTPMeasIntervalStatus OBJECT-TYPE + SYNTAX INTEGER { + invalid (1), + valid (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication if the interval is a valid measurement. When the system comes up, all the previous intervals are invalid." + ::= { mwrPmTPEntry 5 } + +mwrPmTPMeasTimeLength OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interval duration in seconds." + ::= { mwrPmTPEntry 6 } + +mwrPmMeasTPTS1 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the first throughput threshold." + ::= { mwrPmTPEntry 7 } + +mwrPmMeasTPTS2 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the second throughput threshold." + ::= { mwrPmTPEntry 8 } + +mwrPmMeasTPTS3 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the third throughput threshold." + ::= { mwrPmTPEntry 9 } + +mwrPmMeasTPTS4 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the fourth throughput threshold." + ::= { mwrPmTPEntry 10 } + +mwrPmMeasTPTS5 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the fifth throughput threshold." + ::= { mwrPmTPEntry 11 } + +mwrPmMeasTPTS6 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the sixth throughput threshold." + ::= { mwrPmTPEntry 12 } + +mwrPmMeasTPTS7 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the seventh throughput threshold." + ::= { mwrPmTPEntry 13 } + +mwrPmMeasTPTS8 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the eighth throughput threshold." + ::= { mwrPmTPEntry 14 } + +mwrPmMeasTPTS9 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the ninth throughput threshold." + ::= { mwrPmTPEntry 15 } + +mwrPmMeasTPTS10 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds above the tenth throughput threshold." + ::= { mwrPmTPEntry 16 } + +mwrPmAdvTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrPmAdvEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The advanced performance monitoring measurements table." + ::= { mwrPMStatus 4 } + +mwrPmAdvEntry OBJECT-TYPE + SYNTAX MwrPmAdvEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The advanced performance monitoring measurements table entries." + INDEX { mwrPmAdvStatusIndex, + mwrPmAdvInterval, + mwrPmAdvIntervalID } + ::= { mwrPmAdvTable 1 } + +MwrPmAdvEntry ::= SEQUENCE { + mwrPmAdvStatusIndex + Integer32, + mwrPmAdvInterval + PMIntervalType, + mwrPmAdvIntervalID + Integer32, + mwrPmAdvMeasSuspect + TruthValue, + mwrPmAdvMeasIntervalStatus + INTEGER, + mwrPmAdvMeasTimeLength + Integer32, + mwrPmAdvTxCapPeak + Integer32, + mwrPmAdvTxCapRatio + Integer32, + mwrPmAdvTxCapAvg + Integer32, + mwrPmAdvTxCapAvgRatio + Integer32, + mwrPmAdvTxCapHits + Integer32, + mwrPmAdvRxCapPeak + Integer32, + mwrPmAdvRxCapRatio + Integer32, + mwrPmAdvRxCapAvg + Integer32, + mwrPmAdvRxCapHits + Integer32 +} + +mwrPmAdvStatusIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The advanced performance monitoring measurements table index. Index 1 represents the radio port." + ::= { mwrPmAdvEntry 1 } + +mwrPmAdvInterval OBJECT-TYPE + SYNTAX PMIntervalType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The interval period of the row. Quarter means the 15 minutes interval and day means the 24 hours interval." + ::= { mwrPmAdvEntry 2 } + +mwrPmAdvIntervalID OBJECT-TYPE + SYNTAX Integer32 (0..16) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The interval identifier of the row, from 1 (last quarter) to 16 (oldest quarter) for the 15-minute + and from 1 (yesterday) to 4 (4 days ago) for the 24-hour. + Value 0 can be used to retrieve current measurements, according to the requested granularity." + ::= { mwrPmAdvEntry 3 } + +mwrPmAdvMeasSuspect OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Any problem that invalidates the measurement." + ::= { mwrPmAdvEntry 4 } + +mwrPmAdvMeasIntervalStatus OBJECT-TYPE + SYNTAX INTEGER { + invalid (1), + valid (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication if the interval is a valid measurement. When the system comes up, all the previous intervals are invalid." + ::= { mwrPmAdvEntry 5 } + +mwrPmAdvMeasTimeLength OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interval duration in seconds." + ::= { mwrPmAdvEntry 6 } + +mwrPmAdvTxCapPeak OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of bits per second peak transmitted capacity during the time interval." + ::= { mwrPmAdvEntry 7 } + +mwrPmAdvTxCapRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of peak transmitted capacity + referred to the total allowed capacity + during the time interval. + " + ::= { mwrPmAdvEntry 8 } + +mwrPmAdvTxCapAvg OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of bits per second average transmitted capacity + during the time interval. + " + ::= { mwrPmAdvEntry 9 } + +mwrPmAdvTxCapAvgRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of average transmitted capacity + during the time interval." + ::= { mwrPmAdvEntry 10 } + +mwrPmAdvTxCapHits OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds where the transmitted + capacity has overcome a configurable + threshold during the time interval. + " + ::= { mwrPmAdvEntry 11 } + +mwrPmAdvRxCapPeak OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of bits per second peak received capacity + during the time interval. + " + ::= { mwrPmAdvEntry 12 } + +mwrPmAdvRxCapRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of peak received capacity + referred to the total allowed capacity + during the time interval." + ::= { mwrPmAdvEntry 13 } + +mwrPmAdvRxCapAvg OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of bits per second average received capacity + during the time interval." + ::= { mwrPmAdvEntry 14 } + +mwrPmAdvRxCapHits OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds where the received + capacity has overcome a configurable + threshold during the time interval. + " + ::= { mwrPmAdvEntry 15 } + +-- ------------------------------ +-- mwrManagementSessions +-- ------------------------------ + +mwrUserSessionTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrUserSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of user sessions" + ::= { mwrUserStatus 1 } + +mwrUserSessionEntry OBJECT-TYPE + SYNTAX MwrUserSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "User session entry" + INDEX { mwrUserIndex } + ::= { mwrUserSessionTable 1 } + +MwrUserSessionEntry ::= SEQUENCE { + mwrUserIndex + INTEGER, + mwrUserName + DisplayString, + mwrUserConnectionType + DisplayString, + mwrUserConnectionState + INTEGER +} + +mwrUserIndex OBJECT-TYPE + SYNTAX INTEGER { + user1 (1), + user2 (2), + user3 (3), + user4 (4), + user5 (5), + user6 (6), + user7 (7), + user8 (8), + user9 (9), + user10 (10), + user11 (11), + user12 (12), + user13 (13), + user14 (14), + user15 (15), + user16 (16), + user17 (17), + user18 (18), + user19 (19), + user20 (20) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value for each user." + ::= { mwrUserSessionEntry 1 } + +mwrUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The username of a management session using Telnet or HTTP. The session state variable must be checked to determine if the management session is currently in progress." + ::= { mwrUserSessionEntry 2 } + +mwrUserConnectionType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Either telnet, ssh, http or https. Ethernet connection may be through any physical port(s) dedicated to management of the equipment." + ::= { mwrUserSessionEntry 3 } + +mwrUserConnectionState OBJECT-TYPE + SYNTAX INTEGER { + informationNotAvailable (1), + sessionTerminated (2), + sessionInProgress (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the session. The session is inProgress if the user is currently logged into the system. The session is terminated if the user has logged out of the system." + ::= { mwrUserSessionEntry 4 } + +mwrUserSession NOTIFICATION-TYPE + OBJECTS { mwrEventConfigSeverity, + mwrUserName, + mwrUserConnectionType, + equipmentAlarmActiveConditionId, + equipmentTrapInfo, + equipmentOutTrapsCounter } + STATUS current + DESCRIPTION + "This notification is raised when a change in the state of user access is recognized, a new user has logged in or an existing user has logged out." + ::= { mwrUserNotifications 1 } + +mwrUserLoginFailed NOTIFICATION-TYPE + OBJECTS { mwrEventConfigSeverity, + mwrUserName, + mwrUserConnectionType, + equipmentAlarmActiveConditionId, + equipmentTrapInfo, + equipmentOutTrapsCounter } + STATUS current + DESCRIPTION + "This notification is raised when a user has failed to login." + ::= { mwrUserNotifications 2 } + +mwrUserAccountChanged NOTIFICATION-TYPE + OBJECTS { mwrEventConfigSeverity, + mwrUserName, + equipmentAlarmActiveConditionId, + equipmentTrapInfo, + equipmentOutTrapsCounter } + STATUS current + DESCRIPTION + "This notification is raised when a change in user account information in the system is detected." + ::= { mwrUserNotifications 3 } + +mwrUserPasswordChanged NOTIFICATION-TYPE + OBJECTS { mwrEventConfigSeverity, + mwrUserName, + equipmentAlarmActiveConditionId, + equipmentTrapInfo, + equipmentOutTrapsCounter } + STATUS current + DESCRIPTION + "This notification is raised when a user password has changed." + ::= { mwrUserNotifications 4 } +END + diff --git a/mibs/dragonwave/MWR-RADIO-MC-MIB b/mibs/dragonwave/MWR-RADIO-MC-MIB new file mode 100644 index 0000000000..19dcf04076 --- /dev/null +++ b/mibs/dragonwave/MWR-RADIO-MC-MIB @@ -0,0 +1,663 @@ + +-- File Name : MwrRadio-MC-MIB.mib +-- Version : 1.0.0 +-- Date : October 6, 2014 +-- Author : DragonWave Inc. + +MWR-RADIO-MC-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, NOTIFICATION-TYPE, OBJECT-TYPE, + Counter32, Counter64, Integer32 + FROM SNMPv2-SMI + DisplayString + FROM SNMPv2-TC + mwr + FROM DWI-HARMONY-PRIVATE-MIB + equipmentTrapInfo, equipmentOutTrapsCounter, equipmentAlarmActiveConditionId, EnableType + FROM EQUIPMENT-COMMON-MIB + mwrEventConfigSeverity, RadioInstanceType + FROM MWR-ETHERNET-MIB; + +mwrRadioMcModIdentity MODULE-IDENTITY + LAST-UPDATED "201406101023Z" + ORGANIZATION + "Dragonwave Inc." + CONTACT-INFO + "http://www.dragonwaveinc.com + 600-411 Legget Drive + Ottawa, Ontario + Canada, K2K 3C9 + + Tel : 613-599-9991 + Fax: 613-599-4265 + Support: 613-271-7010" + DESCRIPTION + "This specifies the contact information and the revision tracking information for the MIB module version." + + REVISION "201406231109Z" + DESCRIPTION + "First release of the Dragonwave Harmony radio Enhanced-multicarrier MIB." + + REVISION "201409231722Z" + DESCRIPTION + "Updated some OIDs Descriptions." +::= { mwr 1003 } + +mwrRadio OBJECT IDENTIFIER ::= { mwr 12 } +mwrEmcRadioConfigurations OBJECT IDENTIFIER ::= { mwrRadio 201 } +mwrEmcRadioStatus OBJECT IDENTIFIER ::= { mwrRadio 202 } +mwrEmcRadioPerformance OBJECT IDENTIFIER ::= { mwrRadio 203 } +mwrEmcRadioNotifications OBJECT IDENTIFIER ::= { mwrRadio 204 } + +mwrEmcRadioConfigurationsTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrEmcRadioConfigurationsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table containing radio configurations." + ::= { mwrEmcRadioConfigurations 1 } + +mwrEmcRadioConfigurationsEntry OBJECT-TYPE + SYNTAX MwrEmcRadioConfigurationsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry containing radio channel configurations." + INDEX { mwrEmcRadioConfigIndex } + ::= { mwrEmcRadioConfigurationsTable 1 } + +MwrEmcRadioConfigurationsEntry ::= SEQUENCE { + mwrEmcRadioConfigIndex + RadioInstanceType, + mwrEmcRadioTxState + EnableType, + mwrEmcRadioTxPower + Integer32, + mwrEmcRadioTxDownTime + Integer32, + mwrEmcRadioRxFrequency + Integer32, + mwrEmcRadioTxFrequency + Integer32 +} + +mwrEmcRadioConfigIndex OBJECT-TYPE + SYNTAX RadioInstanceType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value for each radio channel if applicable." + ::= { mwrEmcRadioConfigurationsEntry 1 } + +mwrEmcRadioTxState OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Represents the transmit state of the radio channel." + ::= { mwrEmcRadioConfigurationsEntry 2 } + +mwrEmcRadioTxPower OBJECT-TYPE + SYNTAX Integer32 + UNITS "dB" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This defines the programmed transmit level of the radio channel. + The power you see is divided by 10. e.g. A display of 133 is actually 13.3 dB. + Notes: + - Programmed and Actual transmit power may differ - see mwrEmcRadioActualTxPower." + ::= { mwrEmcRadioConfigurationsEntry 3 } + +mwrEmcRadioTxDownTime OBJECT-TYPE + SYNTAX Integer32 + UNITS "sec" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The amount of time in seconds the radio transmitter is disabled when the mwrEmcRadioTxState is turned off. + - Make sure this is set before the mwrEmcRadioTxState is disabled. + - If the down time is set to 0, the radio will stay disabled until it is re-enabled again." + ::= { mwrEmcRadioConfigurationsEntry 4 } + +mwrEmcRadioRxFrequency OBJECT-TYPE + SYNTAX Integer32 + UNITS "kHz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Represents the receive Radio frequency in kHz." + ::= { mwrEmcRadioConfigurationsEntry 5 } + +mwrEmcRadioTxFrequency OBJECT-TYPE + SYNTAX Integer32 + UNITS "kHz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Represents the transmit Radio frequency in kHz." + ::= { mwrEmcRadioConfigurationsEntry 6 } + +mwrEmcRadioProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrEmcRadioProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table containing the radio profile configurations." + ::= { mwrEmcRadioConfigurations 2 } + +mwrEmcRadioProfileEntry OBJECT-TYPE + SYNTAX MwrEmcRadioProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry containing the radio profile configurations." + INDEX { mwrEmcRadioStandardMode, + mwrEmcRadioChannelBw, + mwrEmcRadioStaticTxProfile } + ::= { mwrEmcRadioProfileTable 1 } + +MwrEmcRadioProfileEntry ::= SEQUENCE { + mwrEmcRadioStandardMode + DisplayString, + mwrEmcRadioChannelBw + DisplayString, + mwrEmcRadioStaticTxProfile + DisplayString, + mwrEmcRadioProgrammedProfile + EnableType +} + +mwrEmcRadioStandardMode OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index representing the available standard mode of the radio channel." + ::= { mwrEmcRadioProfileEntry 1 } + +mwrEmcRadioChannelBw OBJECT-TYPE + SYNTAX DisplayString + UNITS "MHz" + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index representing the available channel bandwidth of the radio channel." + ::= { mwrEmcRadioProfileEntry 2 } + +mwrEmcRadioStaticTxProfile OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index representing the available static tx profile of the radio channel." + ::= { mwrEmcRadioProfileEntry 3 } + +mwrEmcRadioProgrammedProfile OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Represents the configured standard mode, channel BW and the TX profile of the radio channel." + ::= { mwrEmcRadioProfileEntry 4 } + +mwrEmcRadioThresholdAlarmTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrEmcRadioThresholdAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table containing the threshold alarm configurations of the radio channel." + ::= { mwrEmcRadioConfigurations 3 } + +mwrEmcRadioThresholdAlarmEntry OBJECT-TYPE + SYNTAX MwrEmcRadioThresholdAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry containing the threshold alarm configurations of the radio channel." + INDEX { mwrEmcRadioThresholdIndex } + ::= { mwrEmcRadioThresholdAlarmTable 1 } + +MwrEmcRadioThresholdAlarmEntry ::= SEQUENCE { + mwrEmcRadioThresholdIndex + RadioInstanceType, + mwrEmcRadioRslBelowThresholdParams + DisplayString, + mwrEmcRadioTxAboveThresholdParams + DisplayString +} + +mwrEmcRadioThresholdIndex OBJECT-TYPE + SYNTAX RadioInstanceType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value for each radio channel if applicable." + ::= { mwrEmcRadioThresholdAlarmEntry 1 } + +mwrEmcRadioRslBelowThresholdParams OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Represents the RSL threshold in dB and the number of seconds the RSL should be below the threshold. + An example of the format of the string is as follows: '-75 10'. The first parameter power level in dB, the second is the time in seconds. In this example the threshold -75 dB and the time is set to 10 seconds. The single quote marks are not used in the command." + ::= { mwrEmcRadioThresholdAlarmEntry 2 } + +mwrEmcRadioTxAboveThresholdParams OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Represents the radio transmit power threshold in dB and the number of seconds threshold must be exceeded. + An example of the format of the string is as follows: '-75 10'. The first parameter power level in dB, the second is the time in seconds. In this example the threshold -75 dB and the time is set to 10 seconds. The single quote marks are not used in the command." + ::= { mwrEmcRadioThresholdAlarmEntry 3 } + +mwrEmcRadioChCfgSynchEnable OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object enables or disables synchronization of the radio configuration on multiple carriers." + ::= { mwrEmcRadioConfigurations 4 } + +-- +-- RADIO INFORMATION +-- + +mwrEmcRadioStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrEmcRadioStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table containing the status of the radio channel." + ::= { mwrEmcRadioStatus 1 } + +mwrEmcRadioStatusEntry OBJECT-TYPE + SYNTAX MwrEmcRadioStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry containing the status of the radio channel." + INDEX { mwrEmcRadioStatusIndex } + ::= { mwrEmcRadioStatusTable 1 } + +MwrEmcRadioStatusEntry ::= SEQUENCE { + mwrEmcRadioStatusIndex + RadioInstanceType, + mwrEmcRadioOperStatus + INTEGER, + mwrEmcRadioTRSpacing + Integer32, + mwrEmcRadioActualTxStatus + EnableType, + mwrEmcRadioRxFreqMin + Integer32, + mwrEmcRadioRxFreqMax + Integer32, + mwrEmcRadioTxFreqMin + Integer32, + mwrEmcRadioTxFreqMax + Integer32, + mwrEmcRadioTxPowerMin + Integer32, + mwrEmcRadioTxPowerMax + Integer32, + mwrEmcRadioLinkStatus + INTEGER +} + +mwrEmcRadioStatusIndex OBJECT-TYPE + SYNTAX RadioInstanceType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each radio channel if applicable." + ::= { mwrEmcRadioStatusEntry 1 } + +mwrEmcRadioOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up (1), + down (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current operational state of the Radio. When radio is fully configured and ready to operate the status will be up." + ::= { mwrEmcRadioStatusEntry 2 } + +mwrEmcRadioTRSpacing OBJECT-TYPE + SYNTAX Integer32 + UNITS "kHz" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Represents the difference between the configured TX/RX center frequency of the radio channel." + ::= { mwrEmcRadioStatusEntry 3 } + +mwrEmcRadioActualTxStatus OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object defines the actual transmit state of the radio channel." + ::= { mwrEmcRadioStatusEntry 4 } + +mwrEmcRadioRxFreqMin OBJECT-TYPE + SYNTAX Integer32 + UNITS "kHz" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Represents the minimum radio RX frequency allowed." + ::= { mwrEmcRadioStatusEntry 5 } + +mwrEmcRadioRxFreqMax OBJECT-TYPE + SYNTAX Integer32 + UNITS "kHz" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Represents the maximum radio RX frequency allowed." + ::= { mwrEmcRadioStatusEntry 6 } + +mwrEmcRadioTxFreqMin OBJECT-TYPE + SYNTAX Integer32 + UNITS "kHz" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Represents the minimum radio TX frequency allowed." + ::= { mwrEmcRadioStatusEntry 7 } + +mwrEmcRadioTxFreqMax OBJECT-TYPE + SYNTAX Integer32 + UNITS "kHz" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Represents the maximum radio TX frequency allowed." + ::= { mwrEmcRadioStatusEntry 8 } + +mwrEmcRadioTxPowerMin OBJECT-TYPE + SYNTAX Integer32 + UNITS "dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Represents the minimum radio Transmit Power allowed." + ::= { mwrEmcRadioStatusEntry 9 } + +mwrEmcRadioTxPowerMax OBJECT-TYPE + SYNTAX Integer32 + UNITS "dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Represents the maximum radio Transmit Power allowed." + ::= { mwrEmcRadioStatusEntry 10 } + +mwrEmcRadioLinkStatus OBJECT-TYPE + SYNTAX INTEGER { + up (1), + down (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current operational status of the radio link." + ::= { mwrEmcRadioStatusEntry 11 } + +mwrEmcRadioPerfStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrEmcRadioPerfStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table containing the performance of the radio channel." + ::= { mwrEmcRadioPerformance 1 } + +mwrEmcRadioPerfStatsEntry OBJECT-TYPE + SYNTAX MwrEmcRadioPerfStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry containing the performance of the radio channel." + INDEX { mwrEmcRadioStatsIndex } + ::= { mwrEmcRadioPerfStatsTable 1 } + +MwrEmcRadioPerfStatsEntry ::= SEQUENCE { + mwrEmcRadioStatsIndex + RadioInstanceType, + mwrEmcRadioTxFrames + Counter64, + mwrEmcRadioRxGoodFrames + Counter64, + mwrEmcRadioRxErrsFrames + Counter64, + mwrEmcRadioRSL + Integer32, + mwrEmcRadioEqualizerStress + Integer32, + mwrEmcRadioSNR + Integer32, + mwrEmcRadioLinkAvailability + Counter32, + mwrEmcRadioActualTxPower + Integer32, + mwrEmcRadioActualTxProfile + DisplayString +} + +mwrEmcRadioStatsIndex OBJECT-TYPE + SYNTAX RadioInstanceType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value for each radio channel if applicable." + ::= { mwrEmcRadioPerfStatsEntry 1 } + +mwrEmcRadioTxFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current count of radio frames transmitted." + ::= { mwrEmcRadioPerfStatsEntry 2 } + +mwrEmcRadioRxGoodFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current count of good radio frames received." + ::= { mwrEmcRadioPerfStatsEntry 3 } + +mwrEmcRadioRxErrsFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current count of radio frames received in error." + ::= { mwrEmcRadioPerfStatsEntry 4 } + +mwrEmcRadioRSL OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An estimate of the radio RSL. Divide the value by 10 to get the actual RSL value. Once this number is divided by 10 the units are dB. For example -352 is actually -35.2dB" + ::= { mwrEmcRadioPerfStatsEntry 5 } + +mwrEmcRadioEqualizerStress OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the average magnitude of all the equalizer taps to provide a measure of how hard the equalizer is working." + ::= { mwrEmcRadioPerfStatsEntry 6 } + +mwrEmcRadioSNR OBJECT-TYPE + SYNTAX Integer32 + UNITS "dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The absolute value of the estimate of the radio SNR. Divide the value by 10 to get the actual SNR." + ::= { mwrEmcRadioPerfStatsEntry 7 } + +mwrEmcRadioLinkAvailability OBJECT-TYPE + SYNTAX Counter32 + UNITS "sec" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The amount of time the radio link is up." + ::= { mwrEmcRadioPerfStatsEntry 8 } + +mwrEmcRadioActualTxPower OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the running configuration for tx power." + ::= { mwrEmcRadioPerfStatsEntry 9 } + +mwrEmcRadioActualTxProfile OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A read-only string specifying the actual value for the TX profile." + ::= { mwrEmcRadioPerfStatsEntry 10 } + +mwrEmcRadioPerfStats32BitTable OBJECT-TYPE + SYNTAX SEQUENCE OF MwrEmcRadioPerfStats32BitEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table containing 32-bit counters of the radio channel. This table is provided to satisfy snmp v1 users where they can't access 64-bit counters." + ::= { mwrEmcRadioPerformance 2 } + +mwrEmcRadioPerfStats32BitEntry OBJECT-TYPE + SYNTAX MwrEmcRadioPerfStats32BitEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry containing 32-bit counters of the radio channel." + INDEX { mwrEmcRadioStats32BitIndex } + ::= { mwrEmcRadioPerfStats32BitTable 1 } + +MwrEmcRadioPerfStats32BitEntry ::= SEQUENCE { + mwrEmcRadioStats32BitIndex + RadioInstanceType, + mwrEmcRadioTxFrames32Bit + Counter32, + mwrEmcRadioRxGoodFrames32Bit + Counter32, + mwrEmcRadioRxErrsFrames32Bit + Counter32 +} + +mwrEmcRadioStats32BitIndex OBJECT-TYPE + SYNTAX RadioInstanceType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value for each radio channel if applicable." + ::= { mwrEmcRadioPerfStats32BitEntry 1 } + +mwrEmcRadioTxFrames32Bit OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A low capacity 32-bit counter representing the current count of radio frames transmitted." + ::= { mwrEmcRadioPerfStats32BitEntry 2 } + +mwrEmcRadioRxGoodFrames32Bit OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A low capacity 32-bit counter representing the current count of radio frames received." + ::= { mwrEmcRadioPerfStats32BitEntry 3 } + +mwrEmcRadioRxErrsFrames32Bit OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A low capacity 32-bit counter representing the current count of radio frames received in error." + ::= { mwrEmcRadioPerfStats32BitEntry 4 } + +-- +-- RADIO NOTIFICATIONS +-- + +mwrEmcRadioRxLossOfSync NOTIFICATION-TYPE + OBJECTS { mwrEventConfigSeverity, + mwrEmcRadioStatusIndex, + equipmentAlarmActiveConditionId, + equipmentTrapInfo, + equipmentOutTrapsCounter } + STATUS current + DESCRIPTION + "This notification is raised when radio link loses synchronization on its receiver. The mwrEmcRadioStatusIndex indicates each radio channel." + ::= { mwrEmcRadioNotifications 1 } + +mwrEmcRadioFailure NOTIFICATION-TYPE + OBJECTS { mwrEventConfigSeverity, + mwrEmcRadioStatusIndex, + equipmentAlarmActiveConditionId, + equipmentTrapInfo, + equipmentOutTrapsCounter } + STATUS current + DESCRIPTION + "This notification is raised when fault is detected in radio. The reason could be faulty components or invalid configuration. The mwrEmcRadioStatusIndex indicates each radio channel." + ::= { mwrEmcRadioNotifications 2 } + +mwrEmcRadioCalUnavailable NOTIFICATION-TYPE + OBJECTS { mwrEventConfigSeverity, + equipmentAlarmActiveConditionId, + equipmentTrapInfo, + equipmentOutTrapsCounter } + STATUS current + DESCRIPTION + "This notification is raised when the calibration information is not available in the system." + ::= { mwrEmcRadioNotifications 3 } + +mwrEmcRadioRslBelowThreshold NOTIFICATION-TYPE + OBJECTS { mwrEventConfigSeverity, + mwrEmcRadioStatusIndex, + equipmentAlarmActiveConditionId, + equipmentTrapInfo, + equipmentOutTrapsCounter } + STATUS current + DESCRIPTION + "This notification is raised when the receive signal level of the radio link is below the user configured limit. The mwrEmcRadioStatusIndex indicates each radio channel." + ::= { mwrEmcRadioNotifications 4 } + +mwrEmcRadioTxlAboveThreshold NOTIFICATION-TYPE + OBJECTS { mwrEventConfigSeverity, + mwrEmcRadioStatusIndex, + equipmentAlarmActiveConditionId, + equipmentTrapInfo, + equipmentOutTrapsCounter } + STATUS current + DESCRIPTION + "This notification is raised when the radio transmit power level exceeds the user set limit. The mwrEmcRadioStatusIndex indicates each radio channel." + ::= { mwrEmcRadioNotifications 5 } + +mwrEmcRadioConfigMismatch NOTIFICATION-TYPE + OBJECTS { mwrEventConfigSeverity, + mwrEmcRadioStatusIndex, + equipmentAlarmActiveConditionId, + equipmentTrapInfo, + equipmentOutTrapsCounter } + STATUS current + DESCRIPTION + "This notification is raised when the radio configuration between the peers is mismatched." + ::= { mwrEmcRadioNotifications 6 } +END + diff --git a/tests/data/harmony-enhanced.json b/tests/data/harmony-enhanced.json new file mode 100644 index 0000000000..07288bd652 --- /dev/null +++ b/tests/data/harmony-enhanced.json @@ -0,0 +1,3225 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.7262.4.5.1.3", + "sysDescr": "Multiprotocol Agent running on QNX Neutrino", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "harmony-enhanced", + "type": "wireless", + "serial": null, + "icon": "dragonwave.png", + "location": null + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.7262.4.5.1.3", + "sysDescr": "Multiprotocol Agent running on QNX Neutrino", + "sysContact": "", + "version": "1.0.4", + "hardware": null, + "features": null, + "os": "harmony-enhanced", + "type": "wireless", + "serial": "", + "icon": "dragonwave.png", + "location": "" + } + ] + } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 01", + "ifName": null, + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": null, + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 02", + "ifName": null, + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": null, + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 03", + "ifName": null, + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": null, + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 04", + "ifName": null, + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": null, + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 05", + "ifName": null, + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": null, + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 06", + "ifName": null, + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": null, + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 07", + "ifName": null, + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": null, + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 08", + "ifName": null, + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": null, + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 09", + "ifName": null, + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": null, + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 10", + "ifName": null, + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": null, + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 11", + "ifName": null, + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": null, + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 12", + "ifName": null, + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": null, + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "L3IPVLAN Interface", + "ifName": null, + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": null, + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 01", + "ifName": "Ethernet Interface Port 01", + "portName": null, + "ifIndex": 1, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9600, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Interface Port 01", + "ifPhysAddress": "0007580ae331", + "ifHardType": null, + "ifLastChange": 19904, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 02", + "ifName": "Ethernet Interface Port 02", + "portName": null, + "ifIndex": 2, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9600, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Interface Port 02", + "ifPhysAddress": "0007580ae332", + "ifHardType": null, + "ifLastChange": 395305, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 11003882, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 4167893, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1538627989, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1378363513, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 383808495, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 23873, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 8141, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 03", + "ifName": "Ethernet Interface Port 03", + "portName": null, + "ifIndex": 3, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9600, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Interface Port 03", + "ifPhysAddress": "0007580ae333", + "ifHardType": null, + "ifLastChange": 19934, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 04", + "ifName": "Ethernet Interface Port 04", + "portName": null, + "ifIndex": 4, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9600, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Interface Port 04", + "ifPhysAddress": "0007580ae334", + "ifHardType": null, + "ifLastChange": 19953, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 05", + "ifName": "Ethernet Interface Port 05", + "portName": null, + "ifIndex": 5, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9600, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Interface Port 05", + "ifPhysAddress": "0007580ae335", + "ifHardType": null, + "ifLastChange": 20279, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 492990, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 493796, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 56718471, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 56412988, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 680, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 685, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 06", + "ifName": "Ethernet Interface Port 06", + "portName": null, + "ifIndex": 6, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9600, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Interface Port 06", + "ifPhysAddress": "0007580ae336", + "ifHardType": null, + "ifLastChange": 20282, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 4157804, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 10987769, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1374705206, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1571039108, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 24552, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 383835512, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 07", + "ifName": "Ethernet Interface Port 07", + "portName": null, + "ifIndex": 7, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9600, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Interface Port 07", + "ifPhysAddress": "0007580ae337", + "ifHardType": null, + "ifLastChange": 20285, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 43520, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 43648, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 680, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 682, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 08", + "ifName": "Ethernet Interface Port 08", + "portName": null, + "ifIndex": 8, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9600, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Interface Port 08", + "ifPhysAddress": "0007580ae338", + "ifHardType": null, + "ifLastChange": 20288, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 43520, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 43648, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 680, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 682, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 09", + "ifName": "Ethernet Interface Port 09", + "portName": null, + "ifIndex": 9, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9600, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Interface Port 09", + "ifPhysAddress": "0007580ae339", + "ifHardType": null, + "ifLastChange": 18019, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 10", + "ifName": "Ethernet Interface Port 10", + "portName": null, + "ifIndex": 10, + "ifSpeed": 2500000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9600, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Interface Port 10", + "ifPhysAddress": "0007580ae33a", + "ifHardType": null, + "ifLastChange": 18035, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 11", + "ifName": "Ethernet Interface Port 11", + "portName": null, + "ifIndex": 11, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9600, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Interface Port 11", + "ifPhysAddress": "0007580ae33b", + "ifHardType": null, + "ifLastChange": 20292, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 503203, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 502499, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 59990284, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 59166304, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 3, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 16681, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Ethernet Interface Port 12", + "ifName": "Ethernet Interface Port 12", + "portName": null, + "ifIndex": 12, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Interface Port 12", + "ifPhysAddress": "0007580ae33c", + "ifHardType": null, + "ifLastChange": 10539, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "L3IPVLAN Interface", + "ifName": "L3IPVLAN Interface", + "portName": null, + "ifIndex": 17, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l3ipvlan", + "ifAlias": "L3IPVLAN Interface", + "ifPhysAddress": "0007580ae331", + "ifHardType": null, + "ifLastChange": 17997, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.7262.4.5.12.202.1.1.11.1", + "sensor_index": "mwrEmcRadioLinkStatus.1", + "sensor_type": "mwrEmcRadioLinkStatus", + "sensor_descr": "Wireless Link 1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "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_prev": null, + "user_func": null, + "state_name": "mwrEmcRadioLinkStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.7262.4.5.12.202.1.1.11.2", + "sensor_index": "mwrEmcRadioLinkStatus.2", + "sensor_type": "mwrEmcRadioLinkStatus", + "sensor_descr": "Wireless Link 2", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "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_prev": null, + "user_func": null, + "state_name": "mwrEmcRadioLinkStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.7262.4.5.2.2.3.0", + "sensor_index": "mwrSystemTemperature.0", + "sensor_type": "harmony-enhanced", + "sensor_descr": "Current System Temperature", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 30, + "sensor_limit": 50, + "sensor_limit_warn": null, + "sensor_limit_low": 20, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "mwrEmcRadioLinkStatus", + "state_descr": "null", + "state_draw_graph": 0, + "state_value": -1, + "state_generic_value": 3 + }, + { + "state_name": "mwrEmcRadioLinkStatus", + "state_descr": "up", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "mwrEmcRadioLinkStatus", + "state_descr": "down", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 2 + } + ] + }, + "poller": "matches discovery" + }, + "wireless": { + "discovery": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "1", + "sensor_type": "harmony_enhanced", + "sensor_descr": "SNR Radio 1", + "sensor_divisor": 10, + "sensor_multiplier": 0, + "sensor_aggregator": "sum", + "sensor_current": 23.4, + "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.7262.4.5.12.203.1.1.7.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "2", + "sensor_type": "harmony_enhanced", + "sensor_descr": "SNR Radio 2", + "sensor_divisor": 10, + "sensor_multiplier": 0, + "sensor_aggregator": "sum", + "sensor_current": 23.2, + "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.7262.4.5.12.203.1.1.7.2\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rssi", + "sensor_index": "1", + "sensor_type": "harmony_enhanced", + "sensor_descr": "RSL Radio 1", + "sensor_divisor": 10, + "sensor_multiplier": 0, + "sensor_aggregator": "sum", + "sensor_current": -67.6, + "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.7262.4.5.12.203.1.1.5.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rssi", + "sensor_index": "2", + "sensor_type": "harmony_enhanced", + "sensor_descr": "RSL Radio 2", + "sensor_divisor": 10, + "sensor_multiplier": 0, + "sensor_aggregator": "sum", + "sensor_current": -67.9, + "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.7262.4.5.12.203.1.1.5.2\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "sensor_index": "1", + "sensor_type": "harmony_enhanced", + "sensor_descr": "TX Power Radio 1", + "sensor_divisor": 10, + "sensor_multiplier": 0, + "sensor_aggregator": "sum", + "sensor_current": 24, + "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.7262.4.5.12.203.1.1.9.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "sensor_index": "2", + "sensor_type": "harmony_enhanced", + "sensor_descr": "TX Power Radio 2", + "sensor_divisor": 10, + "sensor_multiplier": 0, + "sensor_aggregator": "sum", + "sensor_current": 24, + "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.7262.4.5.12.203.1.1.9.2\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "errors", + "sensor_index": "1", + "sensor_type": "harmony_enhanced", + "sensor_descr": "RX Errors Radio 1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 8535558, + "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.7262.4.5.12.203.1.1.4.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "errors", + "sensor_index": "2", + "sensor_type": "harmony_enhanced", + "sensor_descr": "RX Errors Radio 2", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 8475750, + "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.7262.4.5.12.203.1.1.4.2\"]" + } + ] + }, + "poller": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "1", + "sensor_type": "harmony_enhanced", + "sensor_descr": "SNR Radio 1", + "sensor_divisor": 10, + "sensor_multiplier": 0, + "sensor_aggregator": "sum", + "sensor_current": 23.4, + "sensor_prev": 23.4, + "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.7262.4.5.12.203.1.1.7.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "2", + "sensor_type": "harmony_enhanced", + "sensor_descr": "SNR Radio 2", + "sensor_divisor": 10, + "sensor_multiplier": 0, + "sensor_aggregator": "sum", + "sensor_current": 23.2, + "sensor_prev": 23.2, + "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.7262.4.5.12.203.1.1.7.2\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rssi", + "sensor_index": "1", + "sensor_type": "harmony_enhanced", + "sensor_descr": "RSL Radio 1", + "sensor_divisor": 10, + "sensor_multiplier": 0, + "sensor_aggregator": "sum", + "sensor_current": -67.6, + "sensor_prev": -67.6, + "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.7262.4.5.12.203.1.1.5.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rssi", + "sensor_index": "2", + "sensor_type": "harmony_enhanced", + "sensor_descr": "RSL Radio 2", + "sensor_divisor": 10, + "sensor_multiplier": 0, + "sensor_aggregator": "sum", + "sensor_current": -67.9, + "sensor_prev": -67.9, + "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.7262.4.5.12.203.1.1.5.2\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "sensor_index": "1", + "sensor_type": "harmony_enhanced", + "sensor_descr": "TX Power Radio 1", + "sensor_divisor": 10, + "sensor_multiplier": 0, + "sensor_aggregator": "sum", + "sensor_current": 24, + "sensor_prev": 24, + "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.7262.4.5.12.203.1.1.9.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "sensor_index": "2", + "sensor_type": "harmony_enhanced", + "sensor_descr": "TX Power Radio 2", + "sensor_divisor": 10, + "sensor_multiplier": 0, + "sensor_aggregator": "sum", + "sensor_current": 24, + "sensor_prev": 24, + "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.7262.4.5.12.203.1.1.9.2\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "errors", + "sensor_index": "1", + "sensor_type": "harmony_enhanced", + "sensor_descr": "RX Errors Radio 1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 8535558, + "sensor_prev": 8535558, + "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.7262.4.5.12.203.1.1.4.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "errors", + "sensor_index": "2", + "sensor_type": "harmony_enhanced", + "sensor_descr": "RX Errors Radio 2", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 8475750, + "sensor_prev": 8475750, + "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.7262.4.5.12.203.1.1.4.2\"]" + } + ] + } + } +} diff --git a/tests/snmpsim/harmony-enhanced.snmprec b/tests/snmpsim/harmony-enhanced.snmprec new file mode 100644 index 0000000000..c5a046f57d --- /dev/null +++ b/tests/snmpsim/harmony-enhanced.snmprec @@ -0,0 +1,335 @@ +1.3.6.1.2.1.1.1.0|4|Multiprotocol Agent running on QNX Neutrino +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.7262.4.5.1.3 +1.3.6.1.2.1.1.3.0|67|8448855 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +1.3.6.1.2.1.2.2.1.1.1|2|1 +1.3.6.1.2.1.2.2.1.1.2|2|2 +1.3.6.1.2.1.2.2.1.1.3|2|3 +1.3.6.1.2.1.2.2.1.1.4|2|4 +1.3.6.1.2.1.2.2.1.1.5|2|5 +1.3.6.1.2.1.2.2.1.1.6|2|6 +1.3.6.1.2.1.2.2.1.1.7|2|7 +1.3.6.1.2.1.2.2.1.1.8|2|8 +1.3.6.1.2.1.2.2.1.1.9|2|9 +1.3.6.1.2.1.2.2.1.1.10|2|10 +1.3.6.1.2.1.2.2.1.1.11|2|11 +1.3.6.1.2.1.2.2.1.1.12|2|12 +1.3.6.1.2.1.2.2.1.1.17|2|17 +1.3.6.1.2.1.2.2.1.2.1|4|Ethernet Interface Port 01 +1.3.6.1.2.1.2.2.1.2.2|4|Ethernet Interface Port 02 +1.3.6.1.2.1.2.2.1.2.3|4|Ethernet Interface Port 03 +1.3.6.1.2.1.2.2.1.2.4|4|Ethernet Interface Port 04 +1.3.6.1.2.1.2.2.1.2.5|4|Ethernet Interface Port 05 +1.3.6.1.2.1.2.2.1.2.6|4|Ethernet Interface Port 06 +1.3.6.1.2.1.2.2.1.2.7|4|Ethernet Interface Port 07 +1.3.6.1.2.1.2.2.1.2.8|4|Ethernet Interface Port 08 +1.3.6.1.2.1.2.2.1.2.9|4|Ethernet Interface Port 09 +1.3.6.1.2.1.2.2.1.2.10|4|Ethernet Interface Port 10 +1.3.6.1.2.1.2.2.1.2.11|4|Ethernet Interface Port 11 +1.3.6.1.2.1.2.2.1.2.12|4|Ethernet Interface Port 12 +1.3.6.1.2.1.2.2.1.2.17|4|L3IPVLAN Interface +1.3.6.1.2.1.2.2.1.3.1|2|6 +1.3.6.1.2.1.2.2.1.3.2|2|6 +1.3.6.1.2.1.2.2.1.3.3|2|6 +1.3.6.1.2.1.2.2.1.3.4|2|6 +1.3.6.1.2.1.2.2.1.3.5|2|6 +1.3.6.1.2.1.2.2.1.3.6|2|6 +1.3.6.1.2.1.2.2.1.3.7|2|6 +1.3.6.1.2.1.2.2.1.3.8|2|6 +1.3.6.1.2.1.2.2.1.3.9|2|6 +1.3.6.1.2.1.2.2.1.3.10|2|6 +1.3.6.1.2.1.2.2.1.3.11|2|6 +1.3.6.1.2.1.2.2.1.3.12|2|6 +1.3.6.1.2.1.2.2.1.3.17|2|136 +1.3.6.1.2.1.2.2.1.4.1|2|9600 +1.3.6.1.2.1.2.2.1.4.2|2|9600 +1.3.6.1.2.1.2.2.1.4.3|2|9600 +1.3.6.1.2.1.2.2.1.4.4|2|9600 +1.3.6.1.2.1.2.2.1.4.5|2|9600 +1.3.6.1.2.1.2.2.1.4.6|2|9600 +1.3.6.1.2.1.2.2.1.4.7|2|9600 +1.3.6.1.2.1.2.2.1.4.8|2|9600 +1.3.6.1.2.1.2.2.1.4.9|2|9600 +1.3.6.1.2.1.2.2.1.4.10|2|9600 +1.3.6.1.2.1.2.2.1.4.11|2|9600 +1.3.6.1.2.1.2.2.1.4.12|2|1500 +1.3.6.1.2.1.2.2.1.4.17|2|1500 +1.3.6.1.2.1.2.2.1.5.1|66|1000000000 +1.3.6.1.2.1.2.2.1.5.2|66|1000000000 +1.3.6.1.2.1.2.2.1.5.3|66|1000000000 +1.3.6.1.2.1.2.2.1.5.4|66|1000000000 +1.3.6.1.2.1.2.2.1.5.5|66|1000000000 +1.3.6.1.2.1.2.2.1.5.6|66|1000000000 +1.3.6.1.2.1.2.2.1.5.7|66|1000000000 +1.3.6.1.2.1.2.2.1.5.8|66|1000000000 +1.3.6.1.2.1.2.2.1.5.9|66|1000000000 +1.3.6.1.2.1.2.2.1.5.10|66|2500000000 +1.3.6.1.2.1.2.2.1.5.11|66|1000000000 +1.3.6.1.2.1.2.2.1.5.12|66|1000000000 +1.3.6.1.2.1.2.2.1.5.17|66|1000000000 +1.3.6.1.2.1.2.2.1.6.1|4x|0007580AE331 +1.3.6.1.2.1.2.2.1.6.2|4x|0007580AE332 +1.3.6.1.2.1.2.2.1.6.3|4x|0007580AE333 +1.3.6.1.2.1.2.2.1.6.4|4x|0007580AE334 +1.3.6.1.2.1.2.2.1.6.5|4x|0007580AE335 +1.3.6.1.2.1.2.2.1.6.6|4x|0007580AE336 +1.3.6.1.2.1.2.2.1.6.7|4x|0007580AE337 +1.3.6.1.2.1.2.2.1.6.8|4x|0007580AE338 +1.3.6.1.2.1.2.2.1.6.9|4x|0007580AE339 +1.3.6.1.2.1.2.2.1.6.10|4x|0007580AE33A +1.3.6.1.2.1.2.2.1.6.11|4x|0007580AE33B +1.3.6.1.2.1.2.2.1.6.12|4x|0007580AE33C +1.3.6.1.2.1.2.2.1.6.17|4x|0007580AE331 +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.7.5|2|1 +1.3.6.1.2.1.2.2.1.7.6|2|1 +1.3.6.1.2.1.2.2.1.7.7|2|1 +1.3.6.1.2.1.2.2.1.7.8|2|1 +1.3.6.1.2.1.2.2.1.7.9|2|2 +1.3.6.1.2.1.2.2.1.7.10|2|2 +1.3.6.1.2.1.2.2.1.7.11|2|1 +1.3.6.1.2.1.2.2.1.7.12|2|2 +1.3.6.1.2.1.2.2.1.7.17|2|2 +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|2 +1.3.6.1.2.1.2.2.1.8.4|2|2 +1.3.6.1.2.1.2.2.1.8.5|2|1 +1.3.6.1.2.1.2.2.1.8.6|2|1 +1.3.6.1.2.1.2.2.1.8.7|2|1 +1.3.6.1.2.1.2.2.1.8.8|2|1 +1.3.6.1.2.1.2.2.1.8.9|2|2 +1.3.6.1.2.1.2.2.1.8.10|2|2 +1.3.6.1.2.1.2.2.1.8.11|2|1 +1.3.6.1.2.1.2.2.1.8.12|2|2 +1.3.6.1.2.1.2.2.1.8.17|2|2 +1.3.6.1.2.1.2.2.1.9.1|67|19904 +1.3.6.1.2.1.2.2.1.9.2|67|395305 +1.3.6.1.2.1.2.2.1.9.3|67|19934 +1.3.6.1.2.1.2.2.1.9.4|67|19953 +1.3.6.1.2.1.2.2.1.9.5|67|20279 +1.3.6.1.2.1.2.2.1.9.6|67|20282 +1.3.6.1.2.1.2.2.1.9.7|67|20285 +1.3.6.1.2.1.2.2.1.9.8|67|20288 +1.3.6.1.2.1.2.2.1.9.9|67|18019 +1.3.6.1.2.1.2.2.1.9.10|67|18035 +1.3.6.1.2.1.2.2.1.9.11|67|20292 +1.3.6.1.2.1.2.2.1.9.12|67|10539 +1.3.6.1.2.1.2.2.1.9.17|67|17997 +1.3.6.1.2.1.2.2.1.10.1|65|0 +1.3.6.1.2.1.2.2.1.10.2|65|1538627989 +1.3.6.1.2.1.2.2.1.10.3|65|0 +1.3.6.1.2.1.2.2.1.10.4|65|0 +1.3.6.1.2.1.2.2.1.10.5|65|56718471 +1.3.6.1.2.1.2.2.1.10.6|65|1374705206 +1.3.6.1.2.1.2.2.1.10.7|65|43520 +1.3.6.1.2.1.2.2.1.10.8|65|43520 +1.3.6.1.2.1.2.2.1.10.9|65|0 +1.3.6.1.2.1.2.2.1.10.10|65|0 +1.3.6.1.2.1.2.2.1.10.11|65|59990284 +1.3.6.1.2.1.2.2.1.10.12|65|0 +1.3.6.1.2.1.2.2.1.10.17|65|0 +1.3.6.1.2.1.2.2.1.11.1|65|0 +1.3.6.1.2.1.2.2.1.11.2|65|11003882 +1.3.6.1.2.1.2.2.1.11.3|65|0 +1.3.6.1.2.1.2.2.1.11.4|65|0 +1.3.6.1.2.1.2.2.1.11.5|65|492990 +1.3.6.1.2.1.2.2.1.11.6|65|4157804 +1.3.6.1.2.1.2.2.1.11.7|65|0 +1.3.6.1.2.1.2.2.1.11.8|65|0 +1.3.6.1.2.1.2.2.1.11.9|65|0 +1.3.6.1.2.1.2.2.1.11.10|65|0 +1.3.6.1.2.1.2.2.1.11.11|65|503203 +1.3.6.1.2.1.2.2.1.11.12|65|0 +1.3.6.1.2.1.2.2.1.11.17|65|0 +1.3.6.1.2.1.2.2.1.12.1|65|0 +1.3.6.1.2.1.2.2.1.12.2|65|383808495 +1.3.6.1.2.1.2.2.1.12.3|65|0 +1.3.6.1.2.1.2.2.1.12.4|65|0 +1.3.6.1.2.1.2.2.1.12.5|65|680 +1.3.6.1.2.1.2.2.1.12.6|65|24552 +1.3.6.1.2.1.2.2.1.12.7|65|680 +1.3.6.1.2.1.2.2.1.12.8|65|680 +1.3.6.1.2.1.2.2.1.12.9|65|0 +1.3.6.1.2.1.2.2.1.12.10|65|0 +1.3.6.1.2.1.2.2.1.12.11|65|3 +1.3.6.1.2.1.2.2.1.12.12|65|0 +1.3.6.1.2.1.2.2.1.12.17|65|0 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|65|8141 +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.13.5|65|0 +1.3.6.1.2.1.2.2.1.13.6|65|0 +1.3.6.1.2.1.2.2.1.13.7|65|0 +1.3.6.1.2.1.2.2.1.13.8|65|0 +1.3.6.1.2.1.2.2.1.13.9|65|0 +1.3.6.1.2.1.2.2.1.13.10|65|0 +1.3.6.1.2.1.2.2.1.13.11|65|0 +1.3.6.1.2.1.2.2.1.13.12|65|0 +1.3.6.1.2.1.2.2.1.13.17|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.14.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.14.7|65|0 +1.3.6.1.2.1.2.2.1.14.8|65|0 +1.3.6.1.2.1.2.2.1.14.9|65|0 +1.3.6.1.2.1.2.2.1.14.10|65|0 +1.3.6.1.2.1.2.2.1.14.11|65|0 +1.3.6.1.2.1.2.2.1.14.12|65|0 +1.3.6.1.2.1.2.2.1.14.17|65|0 +1.3.6.1.2.1.2.2.1.15.1|65|0 +1.3.6.1.2.1.2.2.1.15.2|65|0 +1.3.6.1.2.1.2.2.1.15.3|65|0 +1.3.6.1.2.1.2.2.1.15.4|65|0 +1.3.6.1.2.1.2.2.1.15.5|65|0 +1.3.6.1.2.1.2.2.1.15.6|65|0 +1.3.6.1.2.1.2.2.1.15.7|65|0 +1.3.6.1.2.1.2.2.1.15.8|65|0 +1.3.6.1.2.1.2.2.1.15.9|65|0 +1.3.6.1.2.1.2.2.1.15.10|65|0 +1.3.6.1.2.1.2.2.1.15.11|65|0 +1.3.6.1.2.1.2.2.1.15.12|65|0 +1.3.6.1.2.1.2.2.1.15.17|65|0 +1.3.6.1.2.1.2.2.1.16.1|65|0 +1.3.6.1.2.1.2.2.1.16.2|65|1378363513 +1.3.6.1.2.1.2.2.1.16.3|65|0 +1.3.6.1.2.1.2.2.1.16.4|65|0 +1.3.6.1.2.1.2.2.1.16.5|65|56412988 +1.3.6.1.2.1.2.2.1.16.6|65|1571039108 +1.3.6.1.2.1.2.2.1.16.7|65|43648 +1.3.6.1.2.1.2.2.1.16.8|65|43648 +1.3.6.1.2.1.2.2.1.16.9|65|0 +1.3.6.1.2.1.2.2.1.16.10|65|0 +1.3.6.1.2.1.2.2.1.16.11|65|59166304 +1.3.6.1.2.1.2.2.1.16.12|65|0 +1.3.6.1.2.1.2.2.1.16.17|65|0 +1.3.6.1.2.1.2.2.1.17.1|65|0 +1.3.6.1.2.1.2.2.1.17.2|65|4167893 +1.3.6.1.2.1.2.2.1.17.3|65|0 +1.3.6.1.2.1.2.2.1.17.4|65|0 +1.3.6.1.2.1.2.2.1.17.5|65|493796 +1.3.6.1.2.1.2.2.1.17.6|65|10987769 +1.3.6.1.2.1.2.2.1.17.7|65|0 +1.3.6.1.2.1.2.2.1.17.8|65|0 +1.3.6.1.2.1.2.2.1.17.9|65|0 +1.3.6.1.2.1.2.2.1.17.10|65|0 +1.3.6.1.2.1.2.2.1.17.11|65|502499 +1.3.6.1.2.1.2.2.1.17.12|65|0 +1.3.6.1.2.1.2.2.1.17.17|65|0 +1.3.6.1.2.1.2.2.1.18.1|65|0 +1.3.6.1.2.1.2.2.1.18.2|65|23873 +1.3.6.1.2.1.2.2.1.18.3|65|0 +1.3.6.1.2.1.2.2.1.18.4|65|0 +1.3.6.1.2.1.2.2.1.18.5|65|685 +1.3.6.1.2.1.2.2.1.18.6|65|383835512 +1.3.6.1.2.1.2.2.1.18.7|65|682 +1.3.6.1.2.1.2.2.1.18.8|65|682 +1.3.6.1.2.1.2.2.1.18.9|65|0 +1.3.6.1.2.1.2.2.1.18.10|65|0 +1.3.6.1.2.1.2.2.1.18.11|65|16681 +1.3.6.1.2.1.2.2.1.18.12|65|0 +1.3.6.1.2.1.2.2.1.18.17|65|0 +1.3.6.1.2.1.2.2.1.19.1|65|0 +1.3.6.1.2.1.2.2.1.19.2|65|0 +1.3.6.1.2.1.2.2.1.19.3|65|0 +1.3.6.1.2.1.2.2.1.19.4|65|0 +1.3.6.1.2.1.2.2.1.19.5|65|0 +1.3.6.1.2.1.2.2.1.19.6|65|0 +1.3.6.1.2.1.2.2.1.19.7|65|0 +1.3.6.1.2.1.2.2.1.19.8|65|0 +1.3.6.1.2.1.2.2.1.19.9|65|0 +1.3.6.1.2.1.2.2.1.19.10|65|0 +1.3.6.1.2.1.2.2.1.19.11|65|0 +1.3.6.1.2.1.2.2.1.19.12|65|0 +1.3.6.1.2.1.2.2.1.19.17|65|0 +1.3.6.1.2.1.2.2.1.20.1|65|0 +1.3.6.1.2.1.2.2.1.20.2|65|0 +1.3.6.1.2.1.2.2.1.20.3|65|0 +1.3.6.1.2.1.2.2.1.20.4|65|0 +1.3.6.1.2.1.2.2.1.20.5|65|0 +1.3.6.1.2.1.2.2.1.20.6|65|0 +1.3.6.1.2.1.2.2.1.20.7|65|0 +1.3.6.1.2.1.2.2.1.20.8|65|0 +1.3.6.1.2.1.2.2.1.20.9|65|0 +1.3.6.1.2.1.2.2.1.20.10|65|0 +1.3.6.1.2.1.2.2.1.20.11|65|0 +1.3.6.1.2.1.2.2.1.20.12|65|0 +1.3.6.1.2.1.2.2.1.20.17|65|0 +1.3.6.1.2.1.2.2.1.21.1|66|0 +1.3.6.1.2.1.2.2.1.21.2|66|1604893605 +1.3.6.1.2.1.2.2.1.21.3|66|0 +1.3.6.1.2.1.2.2.1.21.4|66|0 +1.3.6.1.2.1.2.2.1.21.5|66|56725396 +1.3.6.1.2.1.2.2.1.21.6|66|1374822168 +1.3.6.1.2.1.2.2.1.21.7|66|43584 +1.3.6.1.2.1.2.2.1.21.8|66|43584 +1.3.6.1.2.1.2.2.1.21.9|66|0 +1.3.6.1.2.1.2.2.1.21.10|66|0 +1.3.6.1.2.1.2.2.1.21.11|66|60004121 +1.3.6.1.2.1.2.2.1.21.12|66|0 +1.3.6.1.2.1.2.2.1.21.17|66|0 +1.3.6.1.2.1.2.2.1.22.1|6|1.3.6.1.2.1.10.23.1.1.1.1.1.1 +1.3.6.1.2.1.2.2.1.22.2|6|1.3.6.1.2.1.10.23.1.1.1.1.1.2 +1.3.6.1.2.1.2.2.1.22.3|6|1.3.6.1.2.1.10.23.1.1.1.1.1.3 +1.3.6.1.2.1.2.2.1.22.4|6|1.3.6.1.2.1.10.23.1.1.1.1.1.4 +1.3.6.1.2.1.2.2.1.22.5|6|1.3.6.1.2.1.10.23.1.1.1.1.1.5 +1.3.6.1.2.1.2.2.1.22.6|6|1.3.6.1.2.1.10.23.1.1.1.1.1.6 +1.3.6.1.2.1.2.2.1.22.7|6|1.3.6.1.2.1.10.23.1.1.1.1.1.7 +1.3.6.1.2.1.2.2.1.22.8|6|1.3.6.1.2.1.10.23.1.1.1.1.1.8 +1.3.6.1.2.1.2.2.1.22.9|6|1.3.6.1.2.1.10.23.1.1.1.1.1.9 +1.3.6.1.2.1.2.2.1.22.10|6|1.3.6.1.2.1.10.23.1.1.1.1.1.10 +1.3.6.1.2.1.2.2.1.22.11|6|1.3.6.1.2.1.10.23.1.1.1.1.1.11 +1.3.6.1.2.1.2.2.1.22.12|6|1.3.6.1.2.1.10.23.1.1.1.1.1.12 +1.3.6.1.2.1.2.2.1.22.17|6|1.3.6.1.2.1.10.23.1.1.1.1.1.17 +1.3.6.1.2.1.11.1.0|65|4656 +1.3.6.1.2.1.11.3.0|65|0 +1.3.6.1.2.1.11.4.0|65|5 +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.30.0|2|1 +1.3.6.1.2.1.11.31.0|65|0 +1.3.6.1.2.1.11.32.0|65|0 +1.3.6.1.4.1.7262.4.5.2.1.1.0|2|4 +1.3.6.1.4.1.7262.4.5.2.2.3.0|2|30 +1.3.6.1.4.1.7262.4.5.2.4.1.3.0|4| +1.3.6.1.4.1.7262.4.5.2.4.2.1.1.3.1|4|1.0.4 +1.3.6.1.4.1.7262.4.5.12.202.1.1.1.1|2|1 +1.3.6.1.4.1.7262.4.5.12.202.1.1.1.2|2|2 +1.3.6.1.4.1.7262.4.5.12.202.1.1.2.1|2|1 +1.3.6.1.4.1.7262.4.5.12.202.1.1.2.2|2|1 +1.3.6.1.4.1.7262.4.5.12.202.1.1.3.1|2|1200000 +1.3.6.1.4.1.7262.4.5.12.202.1.1.3.2|2|1200000 +1.3.6.1.4.1.7262.4.5.12.202.1.1.4.1|2|1 +1.3.6.1.4.1.7262.4.5.12.202.1.1.4.2|2|1 +1.3.6.1.4.1.7262.4.5.12.202.1.1.5.1|2|22425000 +1.3.6.1.4.1.7262.4.5.12.202.1.1.5.2|2|22425000 +1.3.6.1.4.1.7262.4.5.12.202.1.1.6.1|2|22827000 +1.3.6.1.4.1.7262.4.5.12.202.1.1.6.2|2|22827000 +1.3.6.1.4.1.7262.4.5.12.202.1.1.7.1|2|21221000 +1.3.6.1.4.1.7262.4.5.12.202.1.1.7.2|2|21221000 +1.3.6.1.4.1.7262.4.5.12.202.1.1.8.1|2|21595000 +1.3.6.1.4.1.7262.4.5.12.202.1.1.8.2|2|21595000 +1.3.6.1.4.1.7262.4.5.12.202.1.1.9.1|2|20 +1.3.6.1.4.1.7262.4.5.12.202.1.1.9.2|2|20 +1.3.6.1.4.1.7262.4.5.12.202.1.1.10.1|2|240 +1.3.6.1.4.1.7262.4.5.12.202.1.1.10.2|2|240 +1.3.6.1.4.1.7262.4.5.12.202.1.1.11.1|2|1 +1.3.6.1.4.1.7262.4.5.12.202.1.1.11.2|2|1 +1.3.6.1.4.1.7262.4.5.12.203.1.1.4.1|70|8535558 +1.3.6.1.4.1.7262.4.5.12.203.1.1.4.2|70|8475750 +1.3.6.1.4.1.7262.4.5.12.203.1.1.5.1|2|-676 +1.3.6.1.4.1.7262.4.5.12.203.1.1.5.2|2|-679 +1.3.6.1.4.1.7262.4.5.12.203.1.1.7.1|2|234 +1.3.6.1.4.1.7262.4.5.12.203.1.1.7.2|2|232 +1.3.6.1.4.1.7262.4.5.12.203.1.1.9.1|2|240 +1.3.6.1.4.1.7262.4.5.12.203.1.1.9.2|2|240 +1.3.6.1.6.3.10.2.1.3.0|2|84362