diff --git a/includes/definitions/discovery/nokia-isam.yaml b/includes/definitions/discovery/nokia-isam.yaml new file mode 100644 index 0000000000..f161bc9560 --- /dev/null +++ b/includes/definitions/discovery/nokia-isam.yaml @@ -0,0 +1,23 @@ +mib: ASAM-SYSTEM-MIB:ASAM-EQUIP-MIB +modules : + processors: + data: + - + oid: cpu + value: cpuLoadAverage + num_oid: '.1.3.6.1.4.1.637.61.1.9.29.1.1.4.{{ $index }}' + descr: CPU {{ $index }} + + sensors: + state: + data: + - + oid: eqptFanMode + num_oid: .1.3.6.1.4.1.637.61.1.23.1.9.0 + descr: Fan Mode + state_name: fanMode + states: + - { value: 0, generic: 0, graph: 0, descr: default } + - { value: 1, generic: 1, graph: 0, descr: eco } + - { value: 2, generic: 0, graph: 0, descr: protect } + - { value: 3, generic: 0, graph: 0, descr: classic } diff --git a/includes/definitions/nokia-isam.yaml b/includes/definitions/nokia-isam.yaml new file mode 100644 index 0000000000..96f120cc7e --- /dev/null +++ b/includes/definitions/nokia-isam.yaml @@ -0,0 +1,24 @@ +os: nokia-isam +text: 'NOKIA ISAM' +type: network +icon: nokia +group: nokia +bad_ifXEntry: + - NFXS-E +over: + - { graph: device_bits, text: 'Device Traffic' } + - { graph: device_processor, text: 'CPU Usage' } + - { graph: device_mempool, text: 'Memory Usage' } +discovery: + - + sysObjectID: + - .1.3.6.1.4.1.637.61 +mib_dir: + - nokia +bad_iftype: + - aluGponOnu + - bridge + - ieee8023adLag + - l2vlan + - slip + - softwareLoopback diff --git a/includes/discovery/mempools/nokia-isam.inc.php b/includes/discovery/mempools/nokia-isam.inc.php new file mode 100644 index 0000000000..73c5ee1b7f --- /dev/null +++ b/includes/discovery/mempools/nokia-isam.inc.php @@ -0,0 +1,45 @@ + 'acu:1/1/', + '4353' => 'nt-a:', + '4354' => 'nt-b:', + '4355' => 'lt:1/1/1/', + '4356' => 'lt:1/1/2/', + '4357' => 'lt:1/1/3/', + '4358' => 'lt:1/1/4/', + '4359' => 'lt:1/1/5/', + '4360' => 'lt:1/1/6/', + '4361' => 'lt:1/1/7/', + '4362' => 'lt:1/1/8/', + '4481' => '4481' // FIXME define this + ]; + + $array = snmpwalk_cache_multi_oid($device, 'mem', null, 'ASAM-SYSTEM-MIB'); + + if (is_array($array)) { + foreach ($array as $index => $entry) { + if (is_numeric($entry['memAbsoluteUsage']) && is_numeric($entry['totalMemSize'])) { + list($entPhysicalIndex) = explode('.', $index); + $entPhysicalName = $entPhysicalIndex; + + $descr = $slotTable[$index].' Memory ('.$index.')'; + + discover_mempool($valid_mempool, $device, $index, 'nokia-isam', $descr, '1', $entPhysicalIndex, null); + } + } + } +} diff --git a/includes/discovery/sensors/dbm/nokia-isam.inc.php b/includes/discovery/sensors/dbm/nokia-isam.inc.php new file mode 100644 index 0000000000..aa6e61551e --- /dev/null +++ b/includes/discovery/sensors/dbm/nokia-isam.inc.php @@ -0,0 +1,30 @@ + $slot) { + $slotName = $pre_cache['nokiaIsamSlot'][$slotId]['numBasedSlot']; + foreach ($slot as $portId => $port) { + $portName = $slotName.$port['numBasedPort']; + if (is_numeric($port['sfpDiagRxPower'])) { + $oid = '.1.3.6.1.4.1.637.61.1.56.5.1.7.'.$slotId.'.'.$portId; + $descr = $portName.' Rx Power'; + $limit_low = ($port['sfpDiagRSSIRxPowerAlmLow']/$divisor) ?: -22; + $warn_limit_low = ($port['sfpDiagRSSIRxPowerWarnLow']/$divisor) ?: -20; + $limit = ($port['sfpDiagRSSIRxPowerAlmHigh']/$divisor) ?: -3; + $warn_limit = ($port['sfpDiagRSSIRxPowerWarnHigh']/$divisor) ?: -5; + $value = $port['sfpDiagRxPower']/$divisor; + discover_sensor($valid['sensor'], 'dbm', $device, $oid, $portName.'-rx', 'nokia-isam', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $value, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured); + } + if (is_numeric($port['sfpDiagTxPower'])) { + $oid = '.1.3.6.1.4.1.637.61.1.56.5.1.6.'.$slotId.'.'.$portId; + $descr = $portName.' Tx Power'; + $limit_low = ($port['sfpDiagRSSITxPowerAlmLow']/$divisor) ?: -9; + $warn_limit_low = ($port['sfpDiagRSSITxPowerWarnLow']/$divisor) ?: -8; + $limit = ($port['sfpDiagRSSITxPowerAlmHigh']/$divisor) ?: -3; + $warn_limit = ($port['sfpDiagRSSITxPowerWarnHigh']/$divisor) ?: -4; + $value = $port['sfpDiagTxPower']/$divisor; + discover_sensor($valid['sensor'], 'dbm', $device, $oid, $portName.'-tx', 'nokia-isam', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $value, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured); + } + } +} diff --git a/includes/discovery/sensors/pre-cache/nokia-isam.inc.php b/includes/discovery/sensors/pre-cache/nokia-isam.inc.php new file mode 100644 index 0000000000..7ecbe4b943 --- /dev/null +++ b/includes/discovery/sensors/pre-cache/nokia-isam.inc.php @@ -0,0 +1,68 @@ + 'acu:1/1/', + '4353' => 'nt-a:', + '4354' => 'nt-b:', + '4355' => 'lt:1/1/1/', + '4356' => 'lt:1/1/2/', + '4357' => 'lt:1/1/3/', + '4358' => 'lt:1/1/4/', + '4359' => 'lt:1/1/5/', + '4360' => 'lt:1/1/6/', + '4361' => 'lt:1/1/7/', + '4362' => 'lt:1/1/8/', + '4481' => '4481' // FIXME define this +]; +$pre_cache['nokiaIsamSlot'] = snmpwalk_cache_multi_oid($device, 'eqptBoardContainerOffset', [], 'ASAM-EQUIP-MIB', 'nokia'); +$pre_cache['nokiaIsamSlot'] = snmpwalk_cache_multi_oid($device, 'eqptBoardIfSlotId', $pre_cache['nokiaIsamSlot'], 'ASAM-EQUIP-MIB', 'nokia'); +foreach ($pre_cache['nokiaIsamSlot'] as $slotId => $slot) { + $pre_cache['nokiaIsamSlot'][$slotId]['numBasedSlot'] = $slotTable[$slotId]; +} + +// Port mapping +// FIXME Hardcoded Port Numbering for FANT-F NT Card. +$portTable = [ + '257' => 'xfp:1', + '258' => 'xfp:2', + '259' => 'xfp:3', + '260' => 'xfp:4' +]; + +// dbm pre cache +$pre_cache['nokiaIsamSfpPort'] = snmpwalk_cache_twopart_oid($device, 'sfpDiagAvailable', [], 'SFP-MIB', 'nokia'); +foreach ($pre_cache['nokiaIsamSfpPort'] as $slotId => $slot) { + foreach ($slot as $portId => $port) { + if ($portTable[$portId]) { + $pre_cache['nokiaIsamSfpPort'][$slotId][$portId]['numBasedPort'] = $portTable[$portId]; + } else { + $pre_cache['nokiaIsamSfpPort'][$slotId][$portId]['numBasedPort'] = $portId; + } + $oId = '.'.$slotId.'.'.$portId; + $oIds = [ + 'sfpDiagRxPower'.$oId, + 'sfpDiagTxPower'.$oId, + 'sfpDiagRSSIRxPowerAlmLow'.$oId, + 'sfpDiagRSSIRxPowerAlmHigh'.$oId, + 'sfpDiagRSSIRxPowerWarnLow'.$oId, + 'sfpDiagRSSIRxPowerWarnHigh'.$oId, + 'sfpDiagRSSITxPowerAlmLow'.$oId, + 'sfpDiagRSSITxPowerAlmHigh'.$oId, + 'sfpDiagRSSITxPowerWarnLow'.$oId, + 'sfpDiagRSSITxPowerWarnHigh'.$oId + ]; + if ($port['sfpDiagAvailable'] == 'noError') { + $twopart_value = snmp_get_multi($device, $oIds, '-OQUs', 'SFP-MIB', 'nokia', []); + foreach ($twopart_value[$slotId.'.'.$portId] as $index => $value) { + $value = str_replace(' dBm', '', $value); + if (is_numeric($value)) { + $pre_cache['nokiaIsamSfpPort'][$slotId][$portId][$index] = $value; + } + } + unset($twopart_value); + } + } +} diff --git a/includes/discovery/sensors/state/nokia-isam.inc.php b/includes/discovery/sensors/state/nokia-isam.inc.php new file mode 100644 index 0000000000..b29ebbedd9 --- /dev/null +++ b/includes/discovery/sensors/state/nokia-isam.inc.php @@ -0,0 +1,60 @@ + $data) { + if (is_array($data)) { + $oid = '.1.3.6.1.4.1.637.61.1.23.3.1.7.' . $index; + $state_name = 'eqptBoardOperError'; + $state_index_id = create_state_index($state_name); + $current = $data['eqptBoardOperError']; + $descr = $pre_cache['nokiaIsamSlot'][$index]['numBasedSlot'] . ' ' . $data['eqptSlotActualType'] . ' (' . $data['eqptSlotPlannedType'] . ')'; + + //Create State Translation + if ($state_index_id !== null) { + $states = [ + [ 1, 0, 0, $state_index_id, 'no-error' ], + [ 2, 1, 0, $state_index_id, 'type-mismatch' ], + [ 3, 2, 0, $state_index_id, 'board-missing' ], + [ 4, 2, 0, $state_index_id, 'board-installation-missing' ], + [ 5, 1, 0, $state_index_id, 'no-planned-board' ], + [ 6, 1, 0, $state_index_id, 'waiting-for-sw' ], + [ 7, 2, 0, $state_index_id, 'init-boot-failed' ], + [ 8, 2, 0, $state_index_id, 'init-download-failed' ], + [ 9, 2, 0, $state_index_id, 'init-connection-failed' ], + [ 10, 2, 0, $state_index_id, 'init-configuration-failed' ], + [ 11, 1, 0, $state_index_id, 'board-reset-protection' ], + [ 12, 2, 0, $state_index_id, 'invalid-parameter' ], + [ 13, 1, 0, $state_index_id, 'temperature-alarm' ], + [ 14, 2, 0, $state_index_id, 'tempshutdown' ], + [ 15, 1, 0, $state_index_id, 'defense' ], + [ 16, 1, 0, $state_index_id, 'board-not-licensed' ], + [ 17, 2, 0, $state_index_id, 'sem-power-fail' ], + [ 18, 2, 0, $state_index_id, 'sem-ups-fail' ], + [ 19, 2, 0, $state_index_id, 'board-in-incompatible-slot' ], + [ 21, 1, 0, $state_index_id, 'download-ongoing' ], + [ 255, 2, 0, $state_index_id, 'unknown-error' ], + ]; + foreach ($states as $value) { + $insert = [ + 'state_value' => $value[0], + 'state_generic_value' => $value[1], + 'state_draw_graph' => $value[2], + 'state_index_id' => $value[3], + 'state_descr' => $value[4], + ]; + dbInsert($insert, 'state_translations'); + } + } + + //Discover Sensors + discover_sensor($valid['sensor'], 'state', $device, $oid, $index, $state_name, $descr, '1', '1', null, null, null, null, $current); + //Create Sensor To State Index + create_sensor_to_state_index($device, $state_name, $index); + } +} + +unset( + $index, + $data +); diff --git a/includes/discovery/sensors/temperature/nokia-isam.inc.php b/includes/discovery/sensors/temperature/nokia-isam.inc.php new file mode 100644 index 0000000000..9ac12eda38 --- /dev/null +++ b/includes/discovery/sensors/temperature/nokia-isam.inc.php @@ -0,0 +1,19 @@ + $slot) { + $slotName = $pre_cache['nokiaIsamSlot'][$slotId]['numBasedSlot']; + foreach ($slot as $sensorId => $sensor) { + if (is_numeric($sensor['eqptBoardThermalSensorActualTemperature'])) { + $oid = '.1.3.6.1.4.1.637.61.1.23.10.1.2.'.$slotId.'.'.$sensorId; + $descr = $slotName.' Sensor '.$sensorId; + $limit = $sensor['eqptBoardThermalSensorShutdownThresholdHigh']/$divisor; + $warn_limit = $sensor['eqptBoardThermalSensorTcaThresholdHigh']/$divisor; + $value = $sensor['eqptBoardThermalSensorActualTemperature']/$divisor; + discover_sensor($valid['sensor'], 'temperature', $device, $oid, $slotName.'.'.$sensorId.'-temp', 'nokia-isam', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $value, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured); + } + } +} diff --git a/includes/polling/mempools/nokia-isam.inc.php b/includes/polling/mempools/nokia-isam.inc.php new file mode 100644 index 0000000000..783a5d337a --- /dev/null +++ b/includes/polling/mempools/nokia-isam.inc.php @@ -0,0 +1,23 @@ +. +* +* @package LibreNMS +* @link http://librenms.org +* @copyright 2019 Vitali Kari +* @author Vitali Kari +*/ + +// Use proprietary asamIfExtCustomerId as ifAlias for Nokia ISAM Plattform. The default IF-MIB fields are here quite meaningless +$isam_port_stats = snmpwalk_cache_oid($device, 'asamIfExtCustomerId', [], 'ITF-MIB-EXT', 'nokia-isam'); + +foreach ($isam_port_stats as $index => $value) { + $port_stats[$index]['ifAlias'] = $isam_port_stats[$index]['asamIfExtCustomerId']; +} +unset($isam_ports_stats); diff --git a/mibs/nokia/ASAM-ALARM-MIB b/mibs/nokia/ASAM-ALARM-MIB new file mode 100644 index 0000000000..e8eb168efc --- /dev/null +++ b/mibs/nokia/ASAM-ALARM-MIB @@ -0,0 +1,3135 @@ +ASAM-ALARM-MIB DEFINITIONS ::= BEGIN + +-- =========================================================================== +-- This specification is published by Alcatel-Lucent under Non-Disclosure +-- Agreement(s) (NDA) with specific parties and has to be considered as +-- Confidential Information as defined in such NDA. +-- Alcatel-Lucent reserves the right to revise this document for any reason, +-- including but not limited to conformity with standards promulgated by +-- various agencies, utilisation of advances in the state of the technical +-- areas, or the reflection of changes in the design of any equipment, +-- techniques, or procedures described or referred to herein. +-- The product specifications and other technical or performance information +-- contained herein are subject to change without notice. +-- Updates of this document will be issued under the above NDA's. +-- Alcatel-Lucent makes no representation or warranty, expressed or implied, +-- with respect to the sufficiency, accuracy, or utility of any information +-- or opinion contained herein. Alcatel-Lucent expressly advises that any use +-- of for any purpose or reliance upon this technical reference is at the +-- risk of the user and that Alcatel-Lucent shall not be liable for any +-- damage or injury incurred by any person arising out of the sufficiency, +-- accuracy, or utility of any information or opinion contained herein. +-- This document is not to be construed as a suggestion to any manufacturer +-- to modify or change any of its products, nor does this document represent +-- any commitment by Alcatel-Lucent to sell or purchase any product. +-- Nothing contained herein shall be construed as conferring by implication, +-- estoppel, or otherwise any license or right under any patent, whether or +-- not the use of any information herein necessarily employs an invention of +-- any existing or later issued patent. +-- Alcatel-Lucent reserves the right not to offer any or all of these +-- products and to withdraw any or all of them at any future time. +-- Copyright (C) 2004 Alcatel-Lucent. All Rights Reserved. +-- =========================================================================== + +-- MODULE IDENTITY +-- LAST-UPDATED "201304241200Z" +-- ORGANIZATION "Alcatel-Lucent" +-- CONTACT-INFO "email:asam.mibsupport@alcatel-lucent.com" +-- DESCRIPTION +-- "The ASAM Alarm MIB allows to manage the Alarm Management application +-- in the ASAM. This is a centralized application for alarm reporting +-- and alarm logging." +-- +-- REVISION "201304241200Z" +-- DESCRIPTION +-- "Version: 3EC15363AAAA_V4.6.0.1.1 +-- Editor: Karel Meijfroidt +-- Changes: +-- * Remove Object 'asamAlarmProcMode' from 'asamAlarmEntry' +-- * Add new value 'ignore' to AsamAlarmSeverityType. This new value is +-- only to be used in the asamAlarmTable. +-- +-- REVISION "201303081200Z" +-- DESCRIPTION +-- "Version: 3EC15363AAAA_V4.6.0.1.0 +-- Editor: Yao Liqiang +-- Changes: +-- *Object 'asamAlarmProcMode' is added to 'asamAlarmEntry'. +-- +-- REVISION "200121021200Z" +-- DESCRIPTION +-- "Version: 3EC15363AAAA_V4.4.0.1.1 +-- Editor: Sridevi Dwaraganath +-- Changes: +-- * New scalar objects asamAlarmReportId, asamAlarmReportAlarmState, +-- asamAlarmReportSeverity, asamAlarmReportIndex1, asamAlarmReportIndex2, +-- asamAlarmReportTime, asamAlarmReportAddInfo are added aspart of +-- FR ALU01823984. +-- REVISION "201102170000Z" +-- DESCRIPTION +-- "Version: 3EC15363EAAA_V3.3.0.2.3 +-- Editor: Karel Meijfroidt +-- Changes: +-- * Updated description of the delta alarm log buf sizes to note +-- that although the MIB objects are read-write, the values can +-- not be updated. +-- +-- REVISION "200704031200Z" +-- DESCRIPTION +-- "Version: 3EC15363EAAA_V3.3.0.2.0 +-- Editor: Apeksha Kawri +-- Changes: +-- * object 'asamAlarmLogBasicAlarmId' is added to 'asamAlarmLogEntry'. +-- * object 'asamAlarmSeverityDeltaLogBasicAlarmId' is added to +-- 'asamAlarmSeverityDeltaLogEntry'. +-- +-- +-- REVISION "200611131200Z" +-- DESCRIPTION +-- "Version: 3EC15363EAAA_V3.3.0.1.0 +-- Editor: Katrien SCHARRE +-- Changes: +-- * Add new object in AsamAlarmEntry object definition. " +-- +-- REVISION "200601231200Z" +-- DESCRIPTION +-- "Version: 3FE21961EAAA_E2.4.0.6 +-- Editor: Bart Bogaert +-- Changes: +-- * Implemented BDFhw70643: strict syntax checks (smilint)" +-- +-- REVISION "200512191200Z" +-- DESCRIPTION +-- "Version: 3EC15363EAAA_E2.0.0.0.0 +-- Editor: Pradeep Hosaritthi +-- Changes: +-- * Added Alarm Filters MIB objects to support temporal and spatial +-- alarm filtering" +-- +-- REVISION "200401291200Z" +-- DESCRIPTION +-- "Version: 3EC15363EAAA_E1.0.0.0 +-- Editor: Rafael Van Driessche +-- Changes: +-- * type AsamAlarmType is no longer enumerated to avoid that the +-- MIB must change each time a new alarm type must be introduced." +-- +-- REVISION "200304281200Z" +-- DESCRIPTION +-- "Version: 3EC15363AAAA_E5.0.1.1 +-- Editor: Koen Van de Weyer +-- Changes: +-- * attribute 'alarmType' extended with infraStructure (36) (BDFaa50353)." +-- +-- REVISION "200302121200Z" +-- DESCRIPTION +-- "Version 3EC15363AAAA_E5.0.1.0 +-- Editor: Gert Steutelings +-- Changes: +-- * support of the uas(37) alarm type; this alarm type contains a generic +-- set of server alarms defined for servers based on the UAS concept." +-- +-- REVISION "200208141200Z" +-- DESCRIPTION +-- "Version: 3EC15363AAAA_E5.0.0.1 +-- Editor: Gert Steutelings +-- Changes: +-- * attribute 'asamAlarmChangeOccurredTrapEnable' made obsolete +-- (BDFaa44804)." +-- +-- REVISION "200112191200Z" +-- DESCRIPTION +-- "Version: 3EC15363AAAA_E5.0.0.0 +-- Editor: Gert Steutelings +-- First version produced for ASAM R5.0 based on ALARM_MIB of ASAM R4.3. +-- Changes: +-- * attributes 'asamAlarmOnThreshold', 'asamAlarmOffThreshold', +-- 'asamAlarmOnTimebase', and 'asamAlarmOffTimebase' have been made +-- obsolete; +-- * attributes 'asamCurrentAlarmPtr', 'asamAlarmLogPtr', +-- 'asamAlarmSnapshotPtr', and 'asamAlarmDeltaLogPtr' have +-- been made obsolete; +-- * introduction of new attributes 'asamCurrentAlarmAddInfo', +-- 'asamAlarmLogAddInfo', 'asamAlarmSnapshot AddInfo', and +-- 'asamAlarmDeltaLogAddInfo'." +-- +-- REVISION "201504201200Z" +-- DESCRIPTION +-- "Version: 3EC15363AAAA_E5.3.0.0 +-- Editor: Cheng Liangming +-- Changes: +-- * introduction of new table 'asamAlarmQueryTable' +-- ========================================================================= + + IMPORTS OBJECT-TYPE FROM RFC-1212 + Counter, Gauge, TimeTicks FROM RFC1155-SMI + DisplayString FROM SNMPv2-TC + asam FROM SYSTEM-MIB + NetworkTimeInSeconds FROM ASAM-TC-MIB; + + + AsamAlarmCategoryType ::= INTEGER { + communications(1), + qualityofService(2), + processingError(3), + equipment(4), + environmental(5) + } + + AsamAlarmSeverityType ::= INTEGER { + alllevel(0), -- all levels defined in asamAlarmQueryTable + indeterminate(1), -- not a definite known severity level + warning(2), -- just to inform as a warning + minor(3), -- not service affecting + major(4), -- service affecting + critical(5), -- service breaking + ignore(6) -- ignore alarm completely + } + + AsamAlarmServAffType ::= INTEGER { + allAffecting(0), -- all affecting defined in asamAlarmQueryTable + serviceAffecting(1), -- Service Affecting + notServiceAffecting(2) -- Not Service Affecting + } + + AsamAlarmModeType ::= INTEGER { + enabled(1), + disabled(2) + } + + AsamAlarmStateType ::= INTEGER { + active(1), -- alarm is activated + nonActive(2) -- alarm is not active + } + + AsamAlarmType ::= INTEGER (1..65535) + + + AsamAlarmLocation ::= INTEGER { + nearend(0), + farend(1), + middleend(2), + line(3), + nullend(4) + } + + AsamAlarmDirection ::= INTEGER { + received(0), + transmit(1), + null(2) + } + -- The allowed values for AsamAlarmType are documented in the Alarm + -- Definition document. Which version of this document is applicable + -- for a given release can be found in the documentation plan. + + AsamAlarmLogResetType ::= INTEGER { + resetCompleted(1), -- the log was reset + reset(2) -- value to set to reset the log + } + + AsamAlarmLogFullActionType ::= INTEGER { + wrap(1), -- wrap around when log is full + halt(2) -- halt logging when log is full + } + + AsamAlarmLogOverflowType ::= INTEGER { + notoverflowed(1), -- log is not overflowed + overflowed(2) -- log is overflowed + } + + RowConfigState ::= INTEGER { + staticAllInitialValues(1), -- static row with all initial values + staticOperatorModified(2), -- static row but operator modified + operatorCreated(3) } -- row created by the operator + + -- This textual convention is introduced to indicate whether a row is + -- system created or not and if system created whether all columns in + -- the row contain values which are equal to the initial values. + + asamAlarmMIB OBJECT IDENTIFIER ::= {asam 3} + + -- + -- asamAlarmTable + -- + + asamAlarmTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamAlarmEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table defines all the possible alarms at the agent. + For each alarm, there is an entry. Each entry consists of an index + for the table, alarm id, alarm category, alarm On/Off thresholds + and timebases and an alarm logging mode. The severity, reporting + and logging are manageable objects for the SNMP Manager. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= {asamAlarmMIB 1} + + asamAlarmEntry OBJECT-TYPE + SYNTAX AsamAlarmEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Entry for alarm table. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { asamAlarmId } + ::= {asamAlarmTable 1} + + AsamAlarmEntry ::= SEQUENCE { + asamAlarmId INTEGER (0..4294967295), + asamAlarmCategory AsamAlarmCategoryType, + asamAlarmSeverity AsamAlarmSeverityType, + asamAlarmServAffect AsamAlarmServAffType, + asamAlarmOnThreshold INTEGER (0..4294967295), + asamAlarmOffThreshold INTEGER (0..4294967295), + asamAlarmOnTimebase TimeTicks, + asamAlarmOffTimebase TimeTicks, + asamAlarmRepMode AsamAlarmModeType, + asamAlarmLogMode AsamAlarmModeType, + asamAlarmEntryConfigState RowConfigState + } + + asamAlarmId OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the unique id for an alarm. It is a combination of 2 + distinct parts of information : the alarm type and the alarm number. + The first half represents the type and the second (most right) part + the alarm number. This alarm number represents the bit position of + an alarm in a bitmap of an active alarm entry. Thus the value of + asamAlarmId can be found using a simple formula: (AlarmType x 2^16) + + AlarmNumber. E.g. an alarm with alarm type 5 and alarm number 3 + is represented as 0x00050003. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmEntry 1} + + asamAlarmCategory OBJECT-TYPE + SYNTAX AsamAlarmCategoryType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object defines the category of an alarm. Alarm categories + are defined in X.733 as Communications, QualityOfService, + Processing Error, Equipment and Environmental. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmEntry 2} + + asamAlarmSeverity OBJECT-TYPE + SYNTAX AsamAlarmSeverityType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is defined to assign a severity level to an alarm. + This object may be indeterminate, warning, minor, major, critical + and ignore. In case of severity ignore, the alarm is ignored by + the system and all internal resources occupied by these alarms are + being freed. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: 1-6 + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= {asamAlarmEntry 3} + + asamAlarmServAffect OBJECT-TYPE + SYNTAX AsamAlarmServAffType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object defines whether an alarm is service affecting or not. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= {asamAlarmEntry 4} + + asamAlarmOnThreshold OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This object defines the threshold value for an alarm to be ON." + ::= {asamAlarmEntry 5} + + asamAlarmOffThreshold OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This object defines the threshold value for an alarm to be OFF." + ::= {asamAlarmEntry 6} + + asamAlarmOnTimebase OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This object defines the number of miliseconds that the alarm + should be persistant ON before it is reported ON." + ::= {asamAlarmEntry 7} + + asamAlarmOffTimebase OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This object defines the number of miliseconds that the alarm + should be persistant OFF before it is reported OFF." + ::= {asamAlarmEntry 8} + + asamAlarmRepMode OBJECT-TYPE + SYNTAX AsamAlarmModeType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is defined to manage the reporting of the alarm. + If it is disabled, the alarm is not reported to the SNMP Manager. + If it is enabled, reporting to the manager is possible (provided + it has a high enough severity). + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= {asamAlarmEntry 9} + + asamAlarmLogMode OBJECT-TYPE + SYNTAX AsamAlarmModeType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is to manage the logging of the alarm. If this object + is disabled, the alarm is not logged. If it is enabled, an alarm is + logged in the AlarmLoggingTable if it has a high enough severity. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= {asamAlarmEntry 10} + + asamAlarmEntryConfigState OBJECT-TYPE + SYNTAX RowConfigState + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object represents the status of configured values of the entry. + It indicates whether a system created row contains all system init + values (staticAllInitialValues(1)) or + whether the values are already modified by an + operator (staticOperatorModified(2)). + + This object can be used to decide to suppress the row when its value + equals staticAllInitialValues(1). + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: NA + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmEntry 11} + + asamAlarmChangeOccurredTrapEnable OBJECT-TYPE + SYNTAX AsamAlarmModeType + ACCESS read-write + STATUS obsolete + DESCRIPTION + "This object defines whether an internal trap should be sent to the + Trap MIB when a alarm changed that has a severity equal or higher + than the configured trap severity." + ::= {asamAlarmMIB 2} + + -- + -- CurrentAlarmTable and related objects. + -- + + asamNumberofAlarmChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the number of changes that have occurred at + the CurrentAlarmtable since startup. It is a wrap around counter + between 0 and MAX. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 3} + + asamNumberofAlarmEntries OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the number of entries in the Current Alarm Table. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 4} + + asamCurrentAlarmSeverityStatus OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object indicating all active severities in the current alarm + table (equal or higher than the configured severity level). They are + represented as a bitmap with the following bitpositions: + 1 NoDefect + 2 Indeterminate + 4 Warning + 8 Minor + 16 Major + 32 Critical + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 5} + + -- + -- Object 'asamCurrentAlarmSeverityLevel' removed. + -- + + asamCurrentAlarmTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamCurrentAlarmEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the currently active alarms, ordered by severity + (highest first). Each entry contains information on the alarm type, + alarm status, two indexes and the last time that the entry was + changed. Only alarms with a reporting mode set to ON and a severity + equal or higher than the configured current table severity are + entered in this table. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= {asamAlarmMIB 7} + + asamCurrentAlarmEntry OBJECT-TYPE + SYNTAX AsamCurrentAlarmEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Entry for CurrentAlarmTable. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { asamCurrentAlarmIndex } + ::= {asamCurrentAlarmTable 1} + + AsamCurrentAlarmEntry ::= SEQUENCE { + asamCurrentAlarmIndex INTEGER (0..4294967295), + asamCurrentAlarmType AsamAlarmType, + asamCurrentAlarmStatus INTEGER (0..4294967295), + asamCurrentAlarmIndex1 INTEGER (0..4294967295), + asamCurrentAlarmIndex2 INTEGER (0..4294967295), + asamCurrentAlarmPtr OBJECT IDENTIFIER, + asamCurrentAlarmTime NetworkTimeInSeconds, + asamCurrentAlarmAddInfo DisplayString + } + + asamCurrentAlarmIndex OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for a Current Alarm Entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamCurrentAlarmEntry 1} + + asamCurrentAlarmType OBJECT-TYPE + SYNTAX AsamAlarmType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object defines the type of the alarms that are active + in this entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamCurrentAlarmEntry 2} + + asamCurrentAlarmStatus OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object defines the current status of all alarms within one + alarm type and one index1-index2 combination at that time. The + alarms are represented in a bitmap with the following bitpositions: + 1 NoDefect + 2 AlarmNumber 1 + 4 AlarmNumber 2 + 8 AlarmNumber 3 + 16 AlarmNumber 4 + .. .............. + + For a definition of the bitmap, see the Alarm Definition document. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamCurrentAlarmEntry 3} + + asamCurrentAlarmIndex1 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index2. Together they + identify where the alarm occurred. For more information regarding + the index definition, refer to the Alarm Definition document. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamCurrentAlarmEntry 4} + + asamCurrentAlarmIndex2 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index1. See description of + Index1 for further info. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamCurrentAlarmEntry 5} + + asamCurrentAlarmPtr OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This object is currently not used. In future releases this + object will be used to point to additional information." + ::= {asamCurrentAlarmEntry 6} + + asamCurrentAlarmTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the time in seconds when the entry was updated, + respectively added. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: seconds" + ::= {asamCurrentAlarmEntry 7} + + asamCurrentAlarmAddInfo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used to keep some additional information about + the considered table entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamCurrentAlarmEntry 8} + + -- + -- asamAlarmLogTable and related objects. + -- + + asamAlarmLogLastEntry OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the index of the last entry that was added to the + log table. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 8} + + asamAlarmLogReset OBJECT-TYPE + SYNTAX INTEGER { + resetCompleted(1), + reset(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is a button-like object to reset the alarm logging + table. When it is set to the Reset value, the log table is cleared, + and logging starts from index 1. When the reset action is completed, + this object is set to ResetCompleted. Setting this object to + resetCompleted, does not invoke any action. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 9} + + asamAlarmLogResetTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Time value in seconds when the alarm log was last reset. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: seconds" + ::= {asamAlarmMIB 10} + + asamAlarmLogSeverityLevel OBJECT-TYPE + SYNTAX AsamAlarmSeverityType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object defines the lowest severity level an alarm must have in + order to be logged. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: 1-5 + PERSIST: YES DEFVALUE: indeterminate UNITS: -" + ::= {asamAlarmMIB 11} + + asamAlarmLogBufferSize OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the size of the internal log buffer. This is + useful information when an overflow of the log buffer occurs. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 12} + + asamAlarmLogFullAction OBJECT-TYPE + SYNTAX INTEGER { + wrap(1), + halt(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object defines the action to be taken when the alarm log buffer + is completely full. If set to Wrap, then older log records are + overwritten by recent ones. If it is set to Halt, then logging is + stopped until the log buffer is reset. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: wrap UNITS: -" + ::= {asamAlarmMIB 13} + + asamAlarmLogOverflowed OBJECT-TYPE + SYNTAX INTEGER { + notoverflowed(1), + overflowed(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object indicates whether the log table is overflowed or not. + When the log buffer is reset, this object is set to Notoverflowed. + This object is not useful when FullAction is set to Wrap around. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 14} + + asamAlarmLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamAlarmLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table is used to log all alarm changes of alarms with a log + status set to active and a severity level equal or higher than the + configured logging severity. The entries are ordered by time. The + latest alarm change is logged as the last entry of this table. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= {asamAlarmMIB 15} + + asamAlarmLogEntry OBJECT-TYPE + SYNTAX AsamAlarmLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Entry for Alarm Log Table. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { asamAlarmLogIndex } + ::= {asamAlarmLogTable 1} + + AsamAlarmLogEntry ::= SEQUENCE { + asamAlarmLogIndex INTEGER (0..4294967295), + asamAlarmLogAlarmType AsamAlarmType, + asamAlarmLogAlarmStatus INTEGER (0..4294967295), + asamAlarmLogStatusChange INTEGER (0..4294967295), + asamAlarmLogIndex1 INTEGER (0..4294967295), + asamAlarmLogIndex2 INTEGER (0..4294967295), + asamAlarmLogPtr OBJECT IDENTIFIER, + asamAlarmLogTime NetworkTimeInSeconds, + asamAlarmLogAddInfo DisplayString, + asamAlarmLogBasicAlarmId INTEGER (0..4294967295) + } + + asamAlarmLogIndex OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for the entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmLogEntry 1} + + asamAlarmLogAlarmType OBJECT-TYPE + SYNTAX AsamAlarmType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object defines the type of the alarms in this entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmLogEntry 2} + + asamAlarmLogAlarmStatus OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object defines the status of all alarms within one alarm type + and one index1-index2 combination for this logged entry. The alarms + are represented in a bitmap with the following bitpositions : + 1 NoDefect + 2 AlarmNumber 1 + 4 AlarmNumber 2 + 8 AlarmNumber 3 + 16 AlarmNumber 4 + .. .............. + + For a definition of the bitmap see the Alarm Definition document. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmLogEntry 3} + + asamAlarmLogStatusChange OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object defines the difference in the status bitmap with its + previous logged value. The bitpositions are conforming to the ones + in the asamAlarmLogAlarmStatus object. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmLogEntry 4} + + asamAlarmLogIndex1 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index2. Together they + identify where the alarm occurred. For more information regarding + the index definition refer to the Alarm Definition document. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmLogEntry 5} + + asamAlarmLogIndex2 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index1. See description of + Index1 for further info. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmLogEntry 6} + + asamAlarmLogPtr OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This object is currently not used. In future releases this object + will be used to point to additional information." + ::= {asamAlarmLogEntry 7} + + asamAlarmLogTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the time in seconds when the alarm was logged. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: seconds" + ::= {asamAlarmLogEntry 8} + + asamAlarmLogAddInfo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used to keep some additional information about the + considered table entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmLogEntry 9} + + asamAlarmLogBasicAlarmId OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The meaning of this object depends on the value of asamAlarmLogAlarmType. + The following situations are possible: + + 1. The value of the asamAlarmLogAlarmType object corresponds to + 'temporalFilter' or 'spatialFilter'. The table entry is related + to the state change of exact one derived alarm. The asamAlarm- + LogBasicAlarmId object identifies the basic alarm related to + the considered derived alarm. + + 2. The value of the asamAlarmLogAlarmType object does not + correspond to 'temporalFilter' or 'spatialFilter'. The table + entry is related to the state change of one or more basic + alarms. The asamAlarmLogBasicAlarmId object identifies one of + these basic alarms. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + + ::= {asamAlarmLogEntry 10} + + -- + -- asamAlarmSnapshotTable and related objects + -- + + asamAlarmSnapshotTableStatus OBJECT-TYPE + SYNTAX INTEGER { + notInUse(1), + inUse(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Before reading the snapshot table, one must try to set this object + to inUse first. When it is already in this state, the set will fail; + when in the notInUse state, the set will succeed. The inUse state is + only kept for a limited time, which is defined by the + asamAlarmSnapshotTimeout object. When the timeout expires, this + object is automatically reset to the notInUse state and the snapshot + table is emptied. + + Scenario for taking a snapshot : + ================================ + * Try to set the asamAlarmSnapshotTableStatus to inUse. Proceed + only if successfull; + + * optionally set the owner string to enable other managers to + identify the current snapshot table user; + + * set the snapshot table severity level; + + * read the number of entries in the snapshot table; + + * optionally read the severity status bitmap to identify the + active severity levels in the snapshot table; + + * read out the snapshot table using GET or GETNEXT SNMP commands; + + * free the snapshot table for other managers by setting the + status to notInUse. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: NO DEFVALUE: notInUse UNITS: -" + ::= {asamAlarmMIB 16} + + asamAlarmSnapshotOwner OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This string can contain an identification of the owner who took the + snapshot. When a manager wants to use the snapshot table, he can set + this string with a meaningful value. When the snapshot table is not + in use, the owner string cannot be set. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 17} + + asamAlarmSnapshotTimeout OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the timeout in msec on the snapshot table. + The timer is started from the moment the snapshot table status is + set to inUse. It will be set to a default value and cannot be + changed by the manager. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 120000 UNITS: milliseconds" + ::= {asamAlarmMIB 18} + + asamAlarmSnapshotSeverityLevel OBJECT-TYPE + SYNTAX AsamAlarmSeverityType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object indicates the lowest severity level of alarms that + should be visible in the snapshot table. When the snapshot table + status is in the notInUse state, the severity cannot be read or set. + When the snapshot table status is in the InUse state, the severity + level can only be set once to prevent confusion as to the lowest + severity in the snapshot table. After successfully setting the + severity level, the snapshot table and its related objects will + contain valid data as long as the snapshot table is in the inUse + state. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: 1-5 + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 19} + + asamNumberOfAlarmSnapshotEntries OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "When the snapshot table status is in the inUse state, this object + reflects the number of entries in the snapshot table. If the snapshot + table status is set to notInUse, this object can not be read. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 20} + + asamAlarmSnapshotSeverityStatus OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "If the snapshot table status is set to notInUse, this object + can not be read. If the snapshot table status is inUse, this object + indicates all the active severity levels of the alarms in the + snapshot table (higher than the configured snapshot severity level). + They are represented as a bitmap with the following bitpositions : + 1 NoDefect, + 2 Indeterminate, + 4 Warning, + 8 Minor, + 16 Major, + 32 Critical. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 21} + + asamAlarmSnapshotTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamAlarmSnapshotEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table is empty when the snapshot table status is set to + notInUse. When a snapshot is taken (see the description of the + snapshot table status object for a complete scenario), this table + will contain all active alarms, at the time the snapshot was taken, + ordered by severity. The lowest viewable severity is set with the + snapshot severity object. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= {asamAlarmMIB 22} + + asamAlarmSnapshotEntry OBJECT-TYPE + SYNTAX AsamAlarmSnapshotEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Entry for asamAlarmSnapshotTable. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { asamAlarmSnapshotIndex } + ::= {asamAlarmSnapshotTable 1} + + AsamAlarmSnapshotEntry ::= SEQUENCE { + asamAlarmSnapshotIndex INTEGER (0..4294967295), + asamAlarmSnapshotType AsamAlarmType, + asamAlarmSnapshotStatus INTEGER (0..4294967295), + asamAlarmSnapshotIndex1 INTEGER (0..4294967295), + asamAlarmSnapshotIndex2 INTEGER (0..4294967295), + asamAlarmSnapshotPtr OBJECT IDENTIFIER, + asamAlarmSnapshotTime NetworkTimeInSeconds, + asamAlarmSnapshotAddInfo DisplayString + } + + asamAlarmSnapshotIndex OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for an Alarm Snapshot Entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmSnapshotEntry 1} + + asamAlarmSnapshotType OBJECT-TYPE + SYNTAX AsamAlarmType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object defines the type of the alarms in this entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmSnapshotEntry 2} + + asamAlarmSnapshotStatus OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object defines the status of alarms in an alarm type at the + time the snapshot was taken. The alarms are represented in a bitmap + with the following bitpositions : + 1 NoDefect + 2 AlarmNumber 1 + 4 AlarmNumber 2 + 8 AlarmNumber 3 + 16 AlarmNumber 4 + .. .............. + + For a definition of the bitmap see the Alarm Definition document. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmSnapshotEntry 3} + + asamAlarmSnapshotIndex1 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index2. Together they + identify where the alarm occurred. For more information regarding + the index definition refer to the Alarm Definition document. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmSnapshotEntry 4} + + asamAlarmSnapshotIndex2 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index1. See description of + Index1 for further info. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmSnapshotEntry 5} + + asamAlarmSnapshotPtr OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This object is currently not used. In future releases this + object will be used to point to additional information." + ::= {asamAlarmSnapshotEntry 6} + + asamAlarmSnapshotTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the time information in seconds when the entry was + updated, respectively added. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: seconds" + ::= {asamAlarmSnapshotEntry 7} + + asamAlarmSnapshotAddInfo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used to keep some additional information about + the considered table entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmSnapshotEntry 8} + + -- + -- asamAlarmDeltaLogTables and related objects + -- + + asamNumberOfTotalChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter represents the total number of changes of all alarms + since startup. It is independent of the alarm severity level. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 23} + + asamNumberOfIndeterminateChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter represents the total number of changes of all alarms + with a severity level Indeterminate since startup. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 24} + + asamNumberOfWarningChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter represents the total number of changes of all alarms + with a severity level Warning since startup. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 25} + + asamNumberOfMinorChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter represents the total number of changes of all alarms + with a severity level Minor since startup. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 26} + + asamNumberOfMajorChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter represents the total number of changes of all alarms + with a severity level Major since startup. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 27} + + asamNumberOfCriticalChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter represents the total number of changes of all alarms + with a severity level Critical since startup. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 28} + + -- + -- One deprecated object removed. + -- + + asamAlarmTrapNumberOfAlarmChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS deprecated + DESCRIPTION + "This counter represents the number of alarm changes (of alarms with + a severity equal or higher than the configured trap severity) since + startup. It is a wraparound counter between 0 and MAX." + ::= {asamAlarmMIB 30} + + -- + -- Eight deprecated objects removed. + -- + + asamAlarmTotalDeltaLogBufferSize OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates the maximum of distributed severity-specific + delta log entries. This means that : + asamAlarmIndeterminateDeltaLogBufferSize + + asamAlarmWarningDeltaLogBufferSize + + asamAlarmMinorDeltaLogBufferSize + + asamAlarmMajorDeltaLogBufferSize + + asamAlarmCriticalDeltaLogBufferSize + must be equal or smaller than the value of this object. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 39} + + -- + -- asamAlarmIndeterminateDeltaLogTable and related objects + -- + + asamAlarmIndeterminateDeltaLogLastEntry OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the index of the last entry that was added to the + Indeterminate delta log table. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 40} + + asamAlarmIndeterminateDeltaLogReset OBJECT-TYPE + SYNTAX AsamAlarmLogResetType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is a button-like object to reset the Indeterminate + delta logging table. When it is set to the reset value, the table + is cleared, and logging starts from index 1. When the reset action + is completed, this object is set to resetCompleted. Setting this + object to resetCompleted, does not invoke any action. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 41} + + asamAlarmIndeterminateDeltaLogResetTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Network time in seconds indicating when the Indeterminate Delta + Log Table was last reset. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: seconds" + ::= {asamAlarmMIB 42} + + asamAlarmIndeterminateDeltaLogBufferSize OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object gives the size of the internal Indeterminate Delta + Log buffer. It can be set to a new (positive, non-zero) value, + but when the sum of all severity-specific Delta Log Table + buffersizes would exceed the asamAlarmTotalDeltaLogBufferSize + setting with this new value, a smaller value will be set. This + value will be chosen so that the sum of buffersizes is equal to + the asamAlarmTotalDeltaLogBufferSize. When the size is set to a + value smaller than the current number of used entries in the delta + log table, a value equal to that number of entries will be set. + Setting this object is not supported yet. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 43} + + asamAlarmIndeterminateDeltaLogFullAction OBJECT-TYPE + SYNTAX AsamAlarmLogFullActionType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object defines the action to be taken when the Indeterminate + delta log buffer is completely full. If set to Wrap, older log + records will be overwritten by recent ones. If it is set to Halt, + logging is stopped until the buffer is reset. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: wrap UNITS: -" + ::= {asamAlarmMIB 44} + + asamAlarmIndeterminateDeltaLogOverflowed OBJECT-TYPE + SYNTAX AsamAlarmLogOverflowType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object indicates whether the Indeterminate delta log table is + overflowed or not. When the delta log buffer is reset, this object + is set to notoverflowed. This object is not meaningful when + asamAlarmIndeterminateDeltaLogFullAction is set to Wrap around. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 45} + + asamAlarmIndeterminateDeltaLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamAlarmIndeterminateDeltaLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table is to log all reported alarms with a severity equal to + Indeterminate. The Logged records are ordered by time. + The latest Indeterminate reported alarm change is logged as the last + entry of this table. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= {asamAlarmMIB 46} + + asamAlarmIndeterminateDeltaLogEntry OBJECT-TYPE + SYNTAX AsamAlarmIndeterminateDeltaLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Entry for the Indeterminate Delta Log Table. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { asamAlarmIndeterminateDeltaLogIndex } + ::= {asamAlarmIndeterminateDeltaLogTable 1} + + AsamAlarmIndeterminateDeltaLogEntry ::= SEQUENCE { + asamAlarmIndeterminateDeltaLogIndex INTEGER (0..4294967295), + asamAlarmIndeterminateDeltaLogAlarmId INTEGER (0..4294967295), + asamAlarmIndeterminateDeltaLogAlarmState AsamAlarmStateType, + asamAlarmIndeterminateDeltaLogIndex1 INTEGER (0..4294967295), + asamAlarmIndeterminateDeltaLogIndex2 INTEGER (0..4294967295), + asamAlarmIndeterminateDeltaLogPtr OBJECT IDENTIFIER, + asamAlarmIndeterminateDeltaLogTime NetworkTimeInSeconds, + asamAlarmIndeterminateDeltaLogAddInfo DisplayString, + asamAlarmIndeterminateDeltaLogBasicAlarmId INTEGER (0..4294967295) + } + + asamAlarmIndeterminateDeltaLogIndex OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for an Indeterminate Delta Log Table Entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmIndeterminateDeltaLogEntry 1} + + asamAlarmIndeterminateDeltaLogAlarmId OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the unique id for an alarm. It is a combination of two + distinct parts of information: the alarm type and the alarm number. + The first half represents the type and the second (rightmost) part + the alarm number. This alarm number represents the bit position of + an alarm in a bitmap of an active alarm entry. + The value of asamAlarmId can be found using a simple formula: + (AlarmType x 2^16) + AlarmNumber. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmIndeterminateDeltaLogEntry 2} + + asamAlarmIndeterminateDeltaLogAlarmState OBJECT-TYPE + SYNTAX AsamAlarmStateType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This reflects the alarm state. When an alarm becomes active, the + state will be active. If it dissappears, it will be nonActive. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmIndeterminateDeltaLogEntry 3} + + asamAlarmIndeterminateDeltaLogIndex1 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index2. Together they + identify where the alarm occurred. For more information regarding + the index definition refer to the Alarm Definition document. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmIndeterminateDeltaLogEntry 4} + + asamAlarmIndeterminateDeltaLogIndex2 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index1. See the description + of Index1 for further info. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmIndeterminateDeltaLogEntry 5} + + asamAlarmIndeterminateDeltaLogPtr OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This object is currently not used." + ::= {asamAlarmIndeterminateDeltaLogEntry 6} + + asamAlarmIndeterminateDeltaLogTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the network time in seconds when the alarm + was logged. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: seconds" + ::= {asamAlarmIndeterminateDeltaLogEntry 7} + + asamAlarmIndeterminateDeltaLogAddInfo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used to keep some additional information about + the considered table entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmIndeterminateDeltaLogEntry 8} + + asamAlarmIndeterminateDeltaLogBasicAlarmId OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The meaning and use of this object depends on the value of the asamAlarmIndeterminateDeltaLogAlarmId. + The following situations are possible: + + 1. asamAlarmIndeterminateDeltaLogAlarmId points to a basic + alarm. The value of asamAlarmIndeterminateDeltaLogBasicAlamId + is identical to the value of the asamAlarmInderminateDelta + LogAlarmId (no added value). + + 2. asamAlarmIndeterminateDeltaLogAlarmId points to a derived + alarm of a temporal/spatial alarm filter. The value of + asamAlarmIndeterminateDeltaLogBasicAlarmId identifies the basic + alarm that is related to the considered derived alarm. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + + + ::= {asamAlarmIndeterminateDeltaLogEntry 9} + + + -- + -- asamAlarmWarningDeltaLogTable and related objects + -- + + asamAlarmWarningDeltaLogLastEntry OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the index of the last entry that was added to the + Warning delta log table. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 47} + + asamAlarmWarningDeltaLogReset OBJECT-TYPE + SYNTAX AsamAlarmLogResetType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is a button-like object to reset the Warning + delta logging table. When it is set to the reset value, the table + is cleared, and logging starts from index 1. When the reset action + is completed, this object is set to resetCompleted. Setting this + object to resetCompleted, does not invoke any action. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 48} + + asamAlarmWarningDeltaLogResetTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Network time in seconds indicating when the Warning Delta Log + Table was last reset. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: seconds" + ::= {asamAlarmMIB 49} + + asamAlarmWarningDeltaLogBufferSize OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object gives the size of the internal Warning Delta + Log buffer. It can be set to a new (positive, non-zero) value, + but when the sum of all severity-specific Delta Log Table + buffersizes would exceed the asamAlarmTotalDeltaLogBufferSize + setting with this new value, a smaller value will be set. This + value will be chosen so that the sum of buffersizes is equal to + the asamAlarmTotalDeltaLogBufferSize. When the size is set to a + value smaller than the current number of used entries in the delta + log table, a value equal to that number of entries will be set. + Setting this object is not supported yet. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 50} + + asamAlarmWarningDeltaLogFullAction OBJECT-TYPE + SYNTAX AsamAlarmLogFullActionType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object defines the action to be taken when the Warning + delta log buffer is completely full. If set to Wrap, older log + records will be overwritten by recent ones. If it is set to Halt, + logging is stopped until the buffer is reset. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: wrap UNITS: -" + ::= {asamAlarmMIB 51} + + asamAlarmWarningDeltaLogOverflowed OBJECT-TYPE + SYNTAX AsamAlarmLogOverflowType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object indicates whether the Warning delta log table is + overflowed or not. When the delta log buffer is reset, this object + is set to notoverflowed. This object is not meaningful when + asamAlarmWarningDeltaLogFullAction is set to Wrap around. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 52} + + asamAlarmWarningDeltaLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamAlarmWarningDeltaLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table is to log all reported alarms with a severity equal to + Warning. The Logged records are ordered by time. + The latest Warning reported alarm change is logged as the last + entry of this table. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= {asamAlarmMIB 53} + + asamAlarmWarningDeltaLogEntry OBJECT-TYPE + SYNTAX AsamAlarmWarningDeltaLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Entry for the Warning Delta Log Table. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { asamAlarmWarningDeltaLogIndex } + ::= {asamAlarmWarningDeltaLogTable 1} + + AsamAlarmWarningDeltaLogEntry ::= SEQUENCE { + asamAlarmWarningDeltaLogIndex INTEGER (0..4294967295), + asamAlarmWarningDeltaLogAlarmId INTEGER (0..4294967295), + asamAlarmWarningDeltaLogAlarmState AsamAlarmStateType, + asamAlarmWarningDeltaLogIndex1 INTEGER (0..4294967295), + asamAlarmWarningDeltaLogIndex2 INTEGER (0..4294967295), + asamAlarmWarningDeltaLogPtr OBJECT IDENTIFIER, + asamAlarmWarningDeltaLogTime NetworkTimeInSeconds, + asamAlarmWarningDeltaLogAddInfo DisplayString, + asamAlarmWarningDeltaLogBasicAlarmId INTEGER (0..4294967295) + } + + asamAlarmWarningDeltaLogIndex OBJECT-TYPE + SYNTAX INTEGER (0.. 4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for a Warning Delta Log Table Entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmWarningDeltaLogEntry 1} + + asamAlarmWarningDeltaLogAlarmId OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the unique id for an alarm. It is a combination of two + distinct parts of information: the alarm type and the alarm number. + The first half represents the type and the second (rightmost) part + the alarm number. This alarm number represents the bit position of + an alarm in a bitmap of an active alarm entry. + The value of asamAlarmId can be found using a simple formula: + (AlarmType x 2^16) + AlarmNumber. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmWarningDeltaLogEntry 2} + + asamAlarmWarningDeltaLogAlarmState OBJECT-TYPE + SYNTAX AsamAlarmStateType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This reflects the alarm state. When an alarm becomes active, + the state will be active. If it dissappears, it will be nonActive. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmWarningDeltaLogEntry 3} + + asamAlarmWarningDeltaLogIndex1 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index2. Together they + identify where the alarm occurred. For more information regarding + the index definition refer to the Alarm Definition document. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmWarningDeltaLogEntry 4} + + asamAlarmWarningDeltaLogIndex2 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index1. See the description + of Index1 for further info. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmWarningDeltaLogEntry 5} + + asamAlarmWarningDeltaLogPtr OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This object is currently not used." + ::= {asamAlarmWarningDeltaLogEntry 6} + + asamAlarmWarningDeltaLogTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the network time in seconds when the alarm + was logged. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: seconds" + ::= {asamAlarmWarningDeltaLogEntry 7} + + asamAlarmWarningDeltaLogAddInfo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used to keep some additional information about + the considered table entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmWarningDeltaLogEntry 8} + + asamAlarmWarningDeltaLogBasicAlarmId OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The meaning and use of this object depends on the value of the asamAlarmWarningDeltaLogAlarmId. + The following situations are possible: + + 1. asamAlarmWarningDeltaLogAlarmId points to a basic + alarm. The value of asamAlarmWarningDeltaLogBasicAlarmId + is identical to the value of the asamAlarmWarningDeltaLog- + AlarmId (no added value). + + 2. asamAlarmWarningDeltaLogAlarmId points to a derived + alarm of temporal/spatial alarm filter. The value of asamAlarm- + WarningDeltaLogBasicAlarmId identifies the basic alarm that + is related to the considered derived alarm. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + + + ::= {asamAlarmWarningDeltaLogEntry 9} + + + + -- + -- asamAlarmMinorDeltaLogTable and related objects + -- + + asamAlarmMinorDeltaLogLastEntry OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the index of the last entry that was added + to the Minor delta log table. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 54} + + asamAlarmMinorDeltaLogReset OBJECT-TYPE + SYNTAX AsamAlarmLogResetType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is a button-like object to reset the Minor + delta logging table. When it is set to the reset value, the table + is cleared, and logging starts from index 1. When the reset action + is completed, this object is set to resetCompleted. Setting this + object to resetCompleted, does not invoke any action. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 55} + + asamAlarmMinorDeltaLogResetTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Network time in seconds indicating when the Minor Delta Log + Table was last reset. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: seconds" + ::= {asamAlarmMIB 56} + + asamAlarmMinorDeltaLogBufferSize OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object gives the size of the internal Minor Delta + Log buffer. It can be set to a new (positive, non-zero) value, + but when the sum of all severity-specific Delta Log Table + buffersizes would exceed the asamAlarmTotalDeltaLogBufferSize + setting with this new value, a smaller value will be set. This + value will be chosen so that the sum of buffersizes is equal to + the asamAlarmTotalDeltaLogBufferSize. When the size is set to a + value smaller than the current number of used entries in the delta + log table, a value equal to that number of entries will be set. + Setting this object is not supported yet. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 57} + + asamAlarmMinorDeltaLogFullAction OBJECT-TYPE + SYNTAX AsamAlarmLogFullActionType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object defines the action to be taken when the Minor + delta log buffer is completely full. If set to Wrap, older log + records will be overwritten by recent ones. If it is set to Halt, + logging is stopped until the buffer is reset. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: wrap UNITS: -" + ::= {asamAlarmMIB 58} + + asamAlarmMinorDeltaLogOverflowed OBJECT-TYPE + SYNTAX AsamAlarmLogOverflowType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object indicates whether the Minor delta log table is + overflowed or not. When the delta log buffer is reset, this object + is set to notoverflowed. This object is not meaningful when + asamAlarmMinorDeltaLogFullAction is set to Wrap around. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 59} + + asamAlarmMinorDeltaLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamAlarmMinorDeltaLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table is to log all reported alarms with a severity equal to + Minor. The Logged records are ordered by time. + The latest Minor reported alarm change is logged as the last + entry of this table. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= {asamAlarmMIB 60} + + asamAlarmMinorDeltaLogEntry OBJECT-TYPE + SYNTAX AsamAlarmMinorDeltaLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Entry for the Minor Delta Log Table. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { asamAlarmMinorDeltaLogIndex } + ::= {asamAlarmMinorDeltaLogTable 1} + + AsamAlarmMinorDeltaLogEntry ::= SEQUENCE { + asamAlarmMinorDeltaLogIndex INTEGER (0..4294967295), + asamAlarmMinorDeltaLogAlarmId INTEGER (0..4294967295), + asamAlarmMinorDeltaLogAlarmState AsamAlarmStateType, + asamAlarmMinorDeltaLogIndex1 INTEGER (0..4294967295), + asamAlarmMinorDeltaLogIndex2 INTEGER (0..4294967295), + asamAlarmMinorDeltaLogPtr OBJECT IDENTIFIER, + asamAlarmMinorDeltaLogTime NetworkTimeInSeconds, + asamAlarmMinorDeltaLogAddInfo DisplayString, + asamAlarmMinorDeltaLogBasicAlarmId INTEGER (0..4294967295) + } + + asamAlarmMinorDeltaLogIndex OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for a Minor Delta Log Table Entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMinorDeltaLogEntry 1} + + asamAlarmMinorDeltaLogAlarmId OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the unique id for an alarm. It is a combination of two + distinct parts of information: the alarm type and the alarm number. + The first half represents the type and the second (rightmost) part + the alarm number. This alarm number represents the bit position of + an alarm in a bitmap of an active alarm entry. + The value of asamAlarmId can be found using a simple formula: + (AlarmType x 2^16) + AlarmNumber. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMinorDeltaLogEntry 2} + + asamAlarmMinorDeltaLogAlarmState OBJECT-TYPE + SYNTAX AsamAlarmStateType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This reflects the alarm state. When an alarm becomes active, + the state will be active. If it dissappears, it will be nonActive. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMinorDeltaLogEntry 3} + + asamAlarmMinorDeltaLogIndex1 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index2. Together they + identify where the alarm occurred. For more information regarding + the index definition refer to the Alarm Definition document. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMinorDeltaLogEntry 4} + + asamAlarmMinorDeltaLogIndex2 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index1. See the description + of Index1 for further info. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMinorDeltaLogEntry 5} + + asamAlarmMinorDeltaLogPtr OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This object is currently not used." + ::= {asamAlarmMinorDeltaLogEntry 6} + + asamAlarmMinorDeltaLogTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the network time in seconds when the alarm + was logged. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: seconds" + ::= {asamAlarmMinorDeltaLogEntry 7} + + asamAlarmMinorDeltaLogAddInfo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used to keep some additional information about + the considered table entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMinorDeltaLogEntry 8} + + + asamAlarmMinorDeltaLogBasicAlarmId OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The meaning and use of this object depends on the value of the asamAlarmMinorDeltaLogAlarmId. + The following situations are possible: + + 1. asamAlarmMinorDeltaLogAlarmId points to a basic alarm. The + value of asamAlarmMinorDeltaLogBasicAlarmId is identical to + the value of the asamAlarmMinorDeltaLogAlarmId (no added + value). + + 2. asamAlarmMinorDeltaLogAlarmId points to a derived alarm of + a temporal/spatial alarm filter. The value of asamAlarmMinor- + DeltaLogBasicAlarmId identifies the basic alarm that is related + to the considered derived alarm. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + + + ::= {asamAlarmMinorDeltaLogEntry 9} + + + -- + -- asamAlarmMajorDeltaLogTable and related objects + -- + + asamAlarmMajorDeltaLogLastEntry OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the index of the last entry that was added + to the Major delta log table. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 61} + + asamAlarmMajorDeltaLogReset OBJECT-TYPE + SYNTAX AsamAlarmLogResetType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is a button-like object to reset the Major + delta logging table. When it is set to the reset value, the table + is cleared, and logging starts from index 1. When the reset action + is completed, this object is set to resetCompleted. Setting this + object to resetCompleted, does not invoke any action. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 62} + + asamAlarmMajorDeltaLogResetTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Network time in seconds indicating when the Major Delta Log + Table was last reset. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: seconds" + ::= {asamAlarmMIB 63} + + asamAlarmMajorDeltaLogBufferSize OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object gives the size of the internal Major Delta + Log buffer. It can be set to a new (positive, non-zero) value, + but when the sum of all severity-specific Delta Log Table + buffersizes would exceed the asamAlarmTotalDeltaLogBufferSize + setting with this new value, a smaller value will be set. This + value will be chosen so that the sum of buffersizes is equal to + the asamAlarmTotalDeltaLogBufferSize. When the size is set to a + value smaller than the current number of used entries in the delta + log table, a value equal to that number of entries will be set. + Setting this object is not supported yet. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 64} + + asamAlarmMajorDeltaLogFullAction OBJECT-TYPE + SYNTAX AsamAlarmLogFullActionType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object defines the action to be taken when the Major + delta log buffer is completely full. If set to Wrap, older log + records will be overwritten by recent ones. If it is set to Halt, + logging is stopped until the buffer is reset. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: wrap UNITS: -" + ::= {asamAlarmMIB 65} + + asamAlarmMajorDeltaLogOverflowed OBJECT-TYPE + SYNTAX AsamAlarmLogOverflowType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object indicates whether the Major delta log table is + overflowed or not. When the delta log buffer is reset, this object + is set to notoverflowed. This object is not meaningful when + asamAlarmMajorDeltaLogFullAction is set to Wrap around. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 66} + + asamAlarmMajorDeltaLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamAlarmMajorDeltaLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table is to log all reported alarms with a severity equal to + Major. The Logged records are ordered by time. + The latest Major reported alarm change is logged as the last + entry of this table. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= {asamAlarmMIB 67} + + asamAlarmMajorDeltaLogEntry OBJECT-TYPE + SYNTAX AsamAlarmMajorDeltaLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Entry for the Major Delta Log Table. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { asamAlarmMajorDeltaLogIndex } + ::= {asamAlarmMajorDeltaLogTable 1} + + AsamAlarmMajorDeltaLogEntry ::= SEQUENCE { + asamAlarmMajorDeltaLogIndex INTEGER (0..4294967295), + asamAlarmMajorDeltaLogAlarmId INTEGER (0..4294967295), + asamAlarmMajorDeltaLogAlarmState AsamAlarmStateType, + asamAlarmMajorDeltaLogIndex1 INTEGER (0..4294967295), + asamAlarmMajorDeltaLogIndex2 INTEGER (0..4294967295), + asamAlarmMajorDeltaLogPtr OBJECT IDENTIFIER, + asamAlarmMajorDeltaLogTime NetworkTimeInSeconds, + asamAlarmMajorDeltaLogAddInfo DisplayString, + asamAlarmMajorDeltaLogBasicAlarmId INTEGER (0..4294967295) + } + + asamAlarmMajorDeltaLogIndex OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for a Major Delta Log Table Entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMajorDeltaLogEntry 1} + + asamAlarmMajorDeltaLogAlarmId OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the unique id for an alarm. It is a combination of two + distinct parts of information: the alarm type and the alarm number. + The first half represents the type and the second (rightmost) part + the alarm number. This alarm number represents the bit position of + an alarm in a bitmap of an active alarm entry. + The value of asamAlarmId can be found using a simple formula: + (AlarmType x 2^16) + AlarmNumber. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMajorDeltaLogEntry 2} + + asamAlarmMajorDeltaLogAlarmState OBJECT-TYPE + SYNTAX AsamAlarmStateType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This reflects the alarm state. When an alarm becomes active, + the state will be active. If it dissappears, it will be nonActive. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMajorDeltaLogEntry 3} + + asamAlarmMajorDeltaLogIndex1 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index2. Together they + identify where the alarm occurred. For more information regarding + the index definition refer to the Alarm Definition document. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMajorDeltaLogEntry 4} + + asamAlarmMajorDeltaLogIndex2 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index1. See the description + of Index1 for further info. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMajorDeltaLogEntry 5} + + asamAlarmMajorDeltaLogPtr OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This object is currently not used." + ::= {asamAlarmMajorDeltaLogEntry 6} + + asamAlarmMajorDeltaLogTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the network time in seconds when the alarm + was logged. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: seconds" + ::= {asamAlarmMajorDeltaLogEntry 7} + + asamAlarmMajorDeltaLogAddInfo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used to keep some additional information about + the considered table entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMajorDeltaLogEntry 8} + + asamAlarmMajorDeltaLogBasicAlarmId OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The meaning and use of this object depends on the value of the asamAlarmMajorDeltaLogAlarmId. + The following situations are possible: + + 1. asamAlarmMajorDeltaLogAlarmId points to a basic alarm. + The value of asamAlarmMajorDeltaLogBasicAlarmId is identical + to the value of the asamAlarmMajorDeltaLogAlarmId (no added + value). + + 2. asamAlarmMajorDeltaLogAlarmId points to a derived alarm of + a temporal/spatial alarm filter. The value of asamAlarmMajor- + DeltaLogBasicAlarmId identifies the basic alarm that is related + to the considered derived alarm. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + + +::= {asamAlarmMajorDeltaLogEntry 9} + + + + -- + -- asamAlarmCriticalDeltaLogTable and related objects + -- + + asamAlarmCriticalDeltaLogLastEntry OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the index of the last entry that was added + to the Critical delta log table. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 68} + + asamAlarmCriticalDeltaLogReset OBJECT-TYPE + SYNTAX AsamAlarmLogResetType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is a button-like object to reset the Critical + delta logging table. When it is set to the reset value, the table + is cleared, and logging starts from index 1. When the reset action + is completed, this object is set to resetCompleted. Setting this + object to resetCompleted, does not invoke any action. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 69} + + asamAlarmCriticalDeltaLogResetTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Network time in seconds indicating when the Critical Delta Log + Table was last reset. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: seconds" + ::= {asamAlarmMIB 70} + + asamAlarmCriticalDeltaLogBufferSize OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object gives the size of the internal Critical Delta + Log buffer. It can be set to a new (positive, non-zero) value, + but when the sum of all severity-specific Delta Log Table + buffersizes would exceed the asamAlarmTotalDeltaLogBufferSize + setting with this new value, a smaller value will be set. This + value will be chosen so that the sum of buffersizes is equal to + the asamAlarmTotalDeltaLogBufferSize. When the size is set to a + value smaller than the current number of used entries in the delta + log table, a value equal to that number of entries will be set. + Setting this object is not supported yet. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 71} + + asamAlarmCriticalDeltaLogFullAction OBJECT-TYPE + SYNTAX AsamAlarmLogFullActionType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object defines the action to be taken when the Critical + delta log buffer is completely full. If set to Wrap, older log + records will be overwritten by recent ones. If it is set to Halt, + logging is stopped until the buffer is reset. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: wrap UNITS: -" + ::= {asamAlarmMIB 72} + + asamAlarmCriticalDeltaLogOverflowed OBJECT-TYPE + SYNTAX AsamAlarmLogOverflowType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object indicates whether the Critical delta log table is + overflowed or not. When the delta log buffer is reset, this object + is set to notoverflowed. This object is not meaningful when + asamAlarmCriticalDeltaLogFullAction is set to Wrap around. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmMIB 73} + + asamAlarmCriticalDeltaLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamAlarmCriticalDeltaLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table is to log all reported alarms with a severity equal to + Critical. The Logged records are ordered by time. + The latest Critical reported alarm change is logged as the last + entry of this table. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= {asamAlarmMIB 74} + + asamAlarmCriticalDeltaLogEntry OBJECT-TYPE + SYNTAX AsamAlarmCriticalDeltaLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Entry for the Critical Delta Log Table. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { asamAlarmCriticalDeltaLogIndex } + ::= {asamAlarmCriticalDeltaLogTable 1} + + AsamAlarmCriticalDeltaLogEntry ::= SEQUENCE { + asamAlarmCriticalDeltaLogIndex INTEGER (0..4294967295), + asamAlarmCriticalDeltaLogAlarmId INTEGER (0..4294967295), + asamAlarmCriticalDeltaLogAlarmState AsamAlarmStateType, + asamAlarmCriticalDeltaLogIndex1 INTEGER (0..4294967295), + asamAlarmCriticalDeltaLogIndex2 INTEGER (0..4294967295), + asamAlarmCriticalDeltaLogPtr OBJECT IDENTIFIER, + asamAlarmCriticalDeltaLogTime NetworkTimeInSeconds, + asamAlarmCriticalDeltaLogAddInfo DisplayString, + asamAlarmCriticalDeltaLogBasicAlarmId INTEGER (0..4294967295) + } + + asamAlarmCriticalDeltaLogIndex OBJECT-TYPE + SYNTAX INTEGER (0.. 4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for a Critical Delta Log Table Entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmCriticalDeltaLogEntry 1} + + asamAlarmCriticalDeltaLogAlarmId OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the unique id for an alarm. It is a combination of two + distinct parts of information: the alarm type and the alarm number. + The first half represents the type and the second (rightmost) part + the alarm number. This alarm number represents the bit position of + an alarm in a bitmap of an active alarm entry. + The value of asamAlarmId can be found using a simple formula: + (AlarmType x 2^16) + AlarmNumber. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmCriticalDeltaLogEntry 2} + + asamAlarmCriticalDeltaLogAlarmState OBJECT-TYPE + SYNTAX AsamAlarmStateType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This reflects the alarm state. When an alarm becomes active, + the state will be active. If it dissappears, it will be nonActive. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmCriticalDeltaLogEntry 3} + + asamAlarmCriticalDeltaLogIndex1 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index2. Together they + identify where the alarm occurred. For more information regarding + the index definition refer to the Alarm Definition document. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmCriticalDeltaLogEntry 4} + + asamAlarmCriticalDeltaLogIndex2 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index1. See the description + of Index1 for further info. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmCriticalDeltaLogEntry 5} + + asamAlarmCriticalDeltaLogPtr OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This object is currently not used." + ::= {asamAlarmCriticalDeltaLogEntry 6} + + asamAlarmCriticalDeltaLogTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the network time in seconds when the alarm + was logged. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: seconds" + ::= {asamAlarmCriticalDeltaLogEntry 7} + + asamAlarmCriticalDeltaLogAddInfo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used to keep some additional information about + the considered table entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmCriticalDeltaLogEntry 8} + + + asamAlarmCriticalDeltaLogBasicAlarmId OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The meaning and use of this object depends on the value of the asamAlarmCriticalDeltaLogAlarmId. + The following situations are possible: + + 1. asamAlarmCriticalDeltaLogAlarmId points to a basic alarm. + The value of asamAlarmCriticalDeltaLogBasicAlarmId is identical + to the value of the asamAlarmCriticalDeltaLogAlarmId (no added + value). + + 2. asamAlarmCriticalDeltaLogAlarmId points to a derived alarm of + a temporal/spatial alarm filter. The value of asamAlarm- + CriticalDeltaLogBasicAlarmId identifies the basic alarm that is + related to the considered derived alarm. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + + + ::= {asamAlarmCriticalDeltaLogEntry 9} + + + + -- + -- Object to set mininal severity for reporting of + -- non-interface-related alarms. + -- + + asamAlarmNonItfReportingSeverity OBJECT-TYPE + SYNTAX AsamAlarmSeverityType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This objects specifies for all non interface related alarms + the minimal severity for the alarm to be reported. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1-5 + PERSIST: NO DEFVALUE: major UNITS: -" + ::= {asamAlarmMIB 75} + + asamAlarmFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamAlarmFilterEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "Static table, representing the alarm filters inside the ASAM. + +ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above " + ::= {asamAlarmMIB 76} +asamAlarmFilterEntry OBJECT-TYPE + SYNTAX AsamAlarmFilterEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "Entry of the asamAlarmFilterTable. + Each row in the table contains management infornation applicable + to a specific alarm filter inside the ASAM. +ALCATEL NOTE: + SUPPORT: YES " + INDEX { asamAlarmFilterType, asamAlarmFilterNumber } + ::= {asamAlarmFilterTable 1} + +AsamAlarmFilterEntry ::= SEQUENCE { + asamAlarmFilterType INTEGER, + asamAlarmFilterNumber INTEGER (1..31), + + asamAlarmFilterBasicAlarmId INTEGER (0..4294967295), + asamAlarmFilterStatus INTEGER, + asamAlarmFilterThreshold INTEGER (2.. 65535), + asamAlarmFilterWindow INTEGER (1.. 65535) + } + +asamAlarmFilterType OBJECT-TYPE + SYNTAX INTEGER { + temporal(1), + spatial(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION "Index in the asamAlarmFilterTable. This object is used to define + the type of the considered alarm filter. + +ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamAlarmFilterEntry 1} + +asamAlarmFilterNumber OBJECT-TYPE + SYNTAX INTEGER (1..31) + ACCESS read-only + STATUS mandatory + DESCRIPTION "Index in the asamAlarmFilterTable. This index, together with + asamAlarmFilterType, uniquely identifies the considered alarm + filter within the asamAlarmFilterTable. + +ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamAlarmFilterEntry 2} + + +asamAlarmFilterBasicAlarmId OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-write + STATUS mandatory + DESCRIPTION "The value of this object corresponds to the unique identifica- + tion of the basic alarm related to the considered alarm filter. + Each alarm filter in the ASAM is related to exact one basic alarm. + The interpretation of this ID is identical to the interpretation + of asamAlarmId in the entries of the asamAlarmTable. + An overview of the different basic alarms supported by the ASAM in + R4.5 can be found in the Alarm Definition document. + +ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamAlarmFilterEntry 3} + +asamAlarmFilterStatus OBJECT-TYPE + SYNTAX INTEGER { + notInUse(1), + inUse(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION "This object is used by the operator to activate/deactivate a + configured alarm filter. + +ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamAlarmFilterEntry 4} + +asamAlarmFilterThreshold OBJECT-TYPE + SYNTAX INTEGER (2..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION "This object is used by the operator to specify the threshold + value of the considered alarm filter. This value must be greater + than 1 in order to make sense. + + The meaning of this object depends on the alarm filter type. + + temporal: the number of off_to_on transitions of the considered + basic alarm that have to be detected on a specific + object during an on-going filtering filter, before the + related derived alarm is raised. + spatial: the number of objects within the ASAM for which the + considered basic alarm must be raised before the related + derived alarm is raised. +ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamAlarmFilterEntry 5} + +asamAlarmFilterWindow OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION "This object is used by the operator to specify the duration + (number of seconds) of the filtering window. This object only + makes sense when the considered alarm filter is a temporal filter + (not relevant in case of a spatial alarm filter). +ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamAlarmFilterEntry 6} +asamAlarmReport OBJECT IDENTIFIER ::= {asamAlarmMIB 77} + + asamAlarmReportId OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the unique id for the alarm that was last raised or cleared. + It is a combination of 2 distinct parts of information : the alarm + type and the alarm number. + The first half represents the type and the second (most right) part + the alarm number. This alarm number represents the bit position of + an alarm in a bitmap of an active alarm entry. Thus the value of + asamAlarmId can be found using a simple formula: (AlarmType x 2^16) + + AlarmNumber. E.g. an alarm with alarm type 5 and alarm number 3 + is represented as 0x00050003. + A value of zero means no alarm was raised or cleared yet. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmReport 1} + + asamAlarmReportAlarmState OBJECT-TYPE + SYNTAX AsamAlarmStateType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This reflects the alarm state of the last raised or cleared alarm. + When an alarm becomes active, the state will be active. + If it dissappears, it will be nonActive. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmReport 2} + + asamAlarmReportSeverity OBJECT-TYPE + SYNTAX AsamAlarmSeverityType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This reflects the severity level of the last raised or cleared alarm. + This severity may be indeterminate, warning, minor, major and critical. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1-5 + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmReport 3} + + asamAlarmReportIndex1 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index2. Together they + identify where the last raised or cleared alarm occurred. + For more information regarding the index definition, + refer to the Alarm Definition document. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmReport 4} + + asamAlarmReportIndex2 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index1. Together they + identify where the last raised or cleared alarm occurred. + For more information regarding the index definition, + refer to the Alarm Definition document. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmReport 5} + + asamAlarmReportTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the time in seconds when the last alarm has + changed state (either raised or cleared). + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: seconds" + ::= {asamAlarmReport 6} + + asamAlarmReportAddInfo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used to keep some additional information about + the last raised or cleared alarm. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmReport 7} + + asamAlarmQueryTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamAlarmQueryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table is used to retrieve all the reported alarms by filters. + For each alarm, there is an entry. Each entry includes the detailed informations for this alarm. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= {asamAlarmMIB 78} + + asamAlarmQueryEntry OBJECT-TYPE + SYNTAX AsamAlarmQueryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Entry for the alarm query table. Each row in the table contains the detailed + information and status for each alarm. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { asamAlarmQueryAlarmId, + asamAlarmQuerySeverity, + asamAlarmQueryServAff, + asamAlarmQueryAid } + ::= {asamAlarmQueryTable 1} + + AsamAlarmQueryEntry ::= SEQUENCE { + asamAlarmQueryAlarmId INTEGER (0..4294967295), + asamAlarmQueryAid INTEGER (0..4294967295), + asamAlarmQuerySeverity AsamAlarmSeverityType, + asamAlarmQueryServAff AsamAlarmServAffType, + asamAlarmQueryType AsamAlarmType, + asamAlarmQueryLocation AsamAlarmLocation, + asamAlarmQueryDirection AsamAlarmDirection, + asamAlarmQueryTime NetworkTimeInSeconds, + asamAlarmQueryAidInfo DisplayString, + asamAlarmQueryInfo DisplayString, + asamAlarmQueryIndex1 INTEGER (0..4294967295), + asamAlarmQueryIndex2 INTEGER (0..4294967295) + } + + asamAlarmQueryAlarmId OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the alarm identification. It's a 32bit integer and the scheme is described as following: + ==================================== + | bit31 ~ bit16 | | bit15 ~ bit0 | + | alarm type | + | alarm number | + ==================================== + If alarm number is put as 0, all the alarms belong to this alarm type will be retrieved. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmQueryEntry 1} + + asamAlarmQueryAid OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This reflects the alarm index. If the operator wants to show the specific alarm, + it stands for the alarm index1 defined in alarm table. + If the operator wants to show all the alarms, it is 0. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmQueryEntry 2} + + asamAlarmQuerySeverity OBJECT-TYPE + SYNTAX AsamAlarmSeverityType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This reflects the severity level of the last raised or cleared alarm. + This severity may be indeterminate, warning, minor, major critical and all. + 0-all level, 1-indeterminate, 2-warning, + 3-minor, 4-major, 5-critical + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0-5 + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmQueryEntry 3} + + asamAlarmQueryServAff OBJECT-TYPE + SYNTAX AsamAlarmServAffType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This reflects the sevice affecting or not in query alarm filter. + 0-all affecting, 1-service-affecting, 2-not service affecting + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0-2 + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmQueryEntry 4} + + asamAlarmQueryType OBJECT-TYPE + SYNTAX AsamAlarmType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This defined the alarm type. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmQueryEntry 5} + + asamAlarmQueryLocation OBJECT-TYPE + SYNTAX AsamAlarmLocation + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in alarm location. It is only suitable for various DSL alarms + 1-near-end, 2-far-end, 3-middle-end, 4-line, 5-null + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmQueryEntry 6} + + asamAlarmQueryDirection OBJECT-TYPE + SYNTAX AsamAlarmDirection + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in alarm direction. It is only suitable for various DSL alarms. + 1-received, 2-transmit, 3-null + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmQueryEntry 7} + + asamAlarmQueryTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the time in seconds when the last alarm has + changed state (either raised or cleared). + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: seconds" + ::= {asamAlarmQueryEntry 8} + + asamAlarmQueryAidInfo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used to show AID parameter in string + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmQueryEntry 9} + + asamAlarmQueryInfo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used to keep some additional information about + the queried alarm. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmQueryEntry 10} + + asamAlarmQueryIndex1 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index2. Together they + identify where the alarm occurred. For more information regarding + the index definition, refer to the Alarm Definition document. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmQueryEntry 11} + + asamAlarmQueryIndex2 OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is used in conjunction with Index1. See description of + Index1 for further info. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {asamAlarmQueryEntry 12} + +END + diff --git a/mibs/nokia/ASAM-EQUIP-MIB b/mibs/nokia/ASAM-EQUIP-MIB new file mode 100644 index 0000000000..7171025d9e --- /dev/null +++ b/mibs/nokia/ASAM-EQUIP-MIB @@ -0,0 +1,5080 @@ +ASAM-EQUIP-MIB DEFINITIONS ::= BEGIN + +-- ========================================================================== +-- This specification is published by Alcatel-Lucent under Non-Disclosure +-- Agreement(s) (NDA) with specific parties and has to be considered as +-- Confidential Information as defined in such NDA. +-- Alcatel-Lucent reserves the right to revise this document for any reason, +-- including but not limited to conformity with standards promulgated by +-- various agencies, utilisation of advances in the state of the technical +-- areas, or the reflection of changes in the design of any equipment, +-- techniques, or procedures described or referred to herein. +-- The product specifications and other technical or performance information +-- contained herein are subject to change without notice. +-- Updates of this document will be issued under the above NDA's. +-- Alcatel-Lucent makes no representation or warranty, expressed or implied, +-- with respect to the sufficiency, accuracy, or utility of any information +-- or opinion contained herein. Alcatel-Lucent expressly advises that any +-- use of for any purpose or reliance upon this technical reference is at +-- the risk of the user and that Alcatel-Lucent shall not be liable for any +-- damage or injury incurred by any person arising out of the sufficiency, +-- accuracy, or utility of any information or opinion contained herein. +-- This document is not to be construed as a suggestion to any manufacturer +-- to modify or change any of its products, nor does this document represent +-- any commitment by Alcatel-Lucent to sell or purchase any product. +-- Nothing contained herein shall be construed as conferring by implication, +-- estoppel, or otherwise any license or right under any patent, whether or +-- not the use of any information herein necessarily employs an invention of +-- any existing or later issued patent. +-- Alcatel-Lucent reserves the right not to offer any or all of these +-- products and to withdraw any or all of them at any future time. +-- Copyright (C) 2001-2009, Alcatel-Lucent. All Rights Reserved. +-- =========================================================================== +-- +-- MODULE-IDENTITY +-- LAST-UPDATED "201512130000Z" +-- ORGANIZATION "Alcatel-Lucent" +-- CONTACT-INFO "email: asam.mibsupport@alcatel-lucent.com" +-- +-- REVISION "201702100000Z" +-- DESCRIPTION +-- "Editor: Bart De Vos +-- Reason for change: add support for an RFT-C power module on SX-48U (SRNT-K) +-- +-- REVISION "201611070000Z" +-- DESCRIPTION +-- "Editor: Yangxiong Xia +-- Reason for change: add new shelf mode ngpon-port-reduced(9) to eqptHolderMode object for isam 7362 SF 16-GW and DF 16-GW Low capacity +-- +-- REVISION "201610210000Z" +-- DESCRIPTION +-- "Editor: Lut Mertens +-- Reason for change: Replace EqptHolderIndex by EqptPowerSupplyIndex in eqptPowerSupplyId object +-- +-- REVISION "201610170000Z" +-- DESCRIPTION +-- Version: 3EC36485EDAA_V5.6.0.0.0 +-- Editor: Mani Batta +-- Reason for change: RCR: ALU01872170 (Reset LT restart counter) +-- Change: Introduced two MIBs- eqptBoardRestartCountPerLt and eqptBoardClearRestartCountPerLt in ASAM-EQUIP-MIB.mib. +-- +-- REVISION "201608290000Z" +-- DESCRIPTION +-- "Editor: Weihai LU +-- Reason for change: add new shelf mode ngpon_supported(7) and gpon_supported(8) to eqptHolderMode object +-- +-- +-- REVISION "201602080000Z" +-- DESCRIPTION +-- "Editor: Eirini Tzimi +-- Reason for change: add new shelf mode ntbntioextlt-unsupported(4) to eqptHolderMode object +-- +-- +-- REVISION "201512220000Z" +-- DESCRIPTION +-- "Editor: Qiong K WU +-- Reason for change: ALU02004304 (Next generation NT-FANT-G) +-- Change: add new eqptPortMappingPhyPortType: cfp(14) +-- +-- REVISION "201512130000Z" +-- DESCRIPTION +-- "Editor: Laurent Carlier +-- Reason for change: add eqptPowerSupplyTable table +-- +-- +-- REVISION "201404150000Z" +-- DESCRIPTION +-- "Editor: Bala Amudha Pal Samy +-- Changes : +-- Added a new mode ntb-unsupported(3) to eqptHolderMode object (ALU01919868) +-- +-- REVISION "201310230000Z" +-- DESCRIPTION +-- "Editor: Qiong K WU +-- Reason for change: ALU01870122 ISR50 DPoE data path redundancy (Phase I) +-- Change: Add new reason for eqptProtElementStandbyStatuschangeReason +-- Add new reason for eqptProtGroupLastSwitchoverReason +-- +-- REVISION "201309180000Z" +-- DESCRIPTION +-- "Editor: Tom Van Peteghem +-- Reason for change: ALU01873072 NELT-B VLAN/QoS resource pooling +-- Change: Add eqptBoardPlannedResourceTable +-- + +-- REVISION "201304250000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.6.0.0.3 +-- Editor: Karel Meijfroidt +-- Reason for change: ALU01815260, Alarm Mechanism Improvement +-- Change: change the RANGE in the description of the eqptCustAlarmProfileSeverity. +-- +-- REVISION "201304090000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.6.0.0.2 +-- Editor: Marita Saveyn +-- Reason for change: ALU01873776, eqptPortMapping attributes returns NoSuch Instance for ISAM4501, FANT-F board +-- Change: EqptPortMappingTable: changes to eqptPortMappingLogPortType (add 4) and eqptPortMappingPhyPortSlot (desc) +-- eqptPortMappingPhyPortType (add 13) and eqptPortMappingPhyPortNbr (desc) +-- +-- REVISION "201303260000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.6.0.0.1 +-- Editor: Vanapatla Ramana +-- Reason for change: ALU01868639, MIB readiness for 2.5G Expansion links on NRNT-A +-- Change: eqptSlotPlannedCapabilityProfile: change to description. +-- +-- REVISION "201303200000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.6.0.0.0 +-- Editor: Long Zhigang +-- Changes: Add three new attributes in eqptHolderTable (RCR ALU01814646) +-- - eqptHolderSerialNumber +-- - eqptHolderVariant +-- - eqptHolderICScode +-- +-- REVISION "201201008000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.5.0.0.0 +-- Editor: Dirk De la Marche +-- Changes: Change to description of CTRL functionality (NRCD-C introduction) +-- +-- REVISION "201208220000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.5.0.0.0 +-- Editor: Vijayakumar Kanniah +-- Changes: eqptHolderMode: change to description (RCR ALU01807846) +-- +-- +-- REVISION "201208100000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.4.0.3.0 +-- Editor: Marita Saveyn +-- Changes: eqptProtGroupTable: change to description (ALU01810586) +-- +-- +-- REVISION "201202090000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.4.0.0.0 +-- Editor: Danny Sioncke +-- Changes: Added eqptPortProtectionTable (RCR ALU00123609) +-- Added eqptPortProtectionLookupTable (RCR ALU00123609) +-- +-- +-- REVISION "201104290000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.3.0.0.1 +-- Editor: Vijayakumar Kanniah +-- Changes: Added eqptBoardOperError download-ongoing for supporting NRCD-B Automatic download (IR ALU01198543) +-- +-- +-- REVISION "201103040000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.3.0.0.0 +-- Editor: Lieve Dierick +-- Changes : +-- ALU01096382 : new MIB object to store the intelligent FAN mode (IR ALU01096386) +-- +-- REVISION "201008090000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.2.0.1.4 +-- Editor: Tom Van Peteghem +-- Changes : +-- ALU00492406 : MIB description of the eqptBoardInventorySerialNumber +-- must be extended with year/week info +-- +-- REVISION "201005110000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.2.0.0.1 +-- Editor: Jean Samoise +-- Changes : +-- AALU00117331 : +-- Add scalar global change counter for remote lt portmapping changes. +--- +-- REVISION "201003290000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.2.0.0.0 +-- Editor: Jean Samoise +-- Changes : +-- AALU00117331 : +-- Generate trap at configuration change of the PortMapping data. +-- +-- +-- REVISION "201003040000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.2.0.0.0 +-- Editor: Jean SamoiseIR context drop NRNT-A +-- Changes : +-- ALU00159858 : +-- Add eth,vp, mcast to eqptPortMappingPhyPortType +--- REVISION "200910010000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.0.0.0.0 +-- Editor: Rik Verstraete +-- Changes : +-- ANTmt71411 ISAM/FTTU Merge Equipment Domain +-- Add eqptBoardIfSlotId to eqptBoardTable +-- +-- REVISION "200908250000Z " +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V4.1.0.0.2 +-- Editor : Peter Van Mele +-- Reason for change: ANTmt72355, licensing of load balancing/redundancy +-- Change: default value of the NT redundancy protection group is disabled. +-- +-- REVISION "2009071300000Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V4.1.0.0.1 +-- Editor: Dirk De la Marche +-- Changes : +-- eqptProtElementStandbyStatuschangeReason : new additions +-- due to NANT-D redundancy (See ANTms38234) +-- new values: (18), (19) and (20) +-- +-- REVISION "20090630" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V4.1.0.0.0 +-- Editor : Sven Dhuyvetter +-- Reason for change: ANTms80204, 'Up/Downlink faceplate nr mapping for O +-- Change: Add new PortMapping table definition. +-- +-- REVISION "2009012210007Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V4.0.0.0.1 +-- Editor: Viviane Verswijvel +-- Changes : +-- eqptProtElementStandbyStatuschangeReason : new desccriptions +-- to be compatible with XVPS (See FR ANTmt34321) +-- +-- REVISION "200803040000Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V3.7.0.0.3 +-- Editor: Furqan Haq +-- Changes : +-- Added a new mode ntio-unsupported(6) to eqptHolderMode object +-- Added a new mnemonics NOT_ALLOWED to eqptSlotPlannedType +-- Added new error type to eqptBoardOperError for reporting +-- BoardInsertedInIncompatibleSlot +-- +-- REVISION "200803104000Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V3.7.0.0.0 +-- Editor: Viviane Verswijvel +-- Changes: +-- Add 2 new reasons for switch over +-- Add reason for standby change state reason +-- => Hitless Redundancy R3.7 +-- +-- REVISION "200711080000Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V3.6.0.0.2 +-- Editor: Danny Sioncke +-- Changes: +-- In eqptBoardTable, eqptBoardDualHostIPAddress and +-- eqptBoardDualHostLsmLocation are added. +-- REVISION "200707260000Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V3.6.0.0.0 +-- Editor: Lu Hao +-- Changes: +-- Add a new table, eqptBoardThermalSensorTable to eqptEquipmentMIB +-- +-- REVISION "200707240000Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V3.5.0.0.3 +-- Editor: Bo Liu +-- Changes: +-- restartFromDefaultPresOAM and restartFromDefaultTotal are no longer +-- supported in eqptAsamRestart. +-- +-- REVISION "200706010000Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V3.5.0.0.2 +-- Editor: Bo Liu +-- Changes: +-- Add the new equipment practice LEWW in the description of +-- eqptHolderPlannedType. +-- +-- REVISION "200705230000Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V3.5.0.0.1 +-- Editor: Wang Jianglin +-- Changes: +-- Add the xVPS identifier to equipment table. +-- +-- REVISION "200705210900Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V3.5.0.0.0 +-- Editor: Liu Jie +-- Changes: +-- - Add the test head type for four-wire or two-wire test +-- +-- +-- MODULE-IDENTITY +-- LAST-UPDATED "200704241735Z" +-- ORGANIZATION "Alcatel" +-- CONTACT-INFO "email: asam.mibsupport@alcatel-lucent.be" +-- +-- DESCRIPTION +-- "The ASAM Equipment Management MIB is a vendor-specific MIB that is +-- used to manage the equipment (racks, shelves, and pluggable equipment) +-- of the ASAM subsystem in the ESAM. +-- +-- REVISION "200706151600Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V3.4.0.0.2 +-- Editor: Sven Dhuyvetter +-- Changes: +-- - restartFromDefaultPresOAM and restartFromDefaultTotal no longer +-- supported in eqptAsamRestart. +-- +-- REVISION "200703291600Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V3.4.0.0.1 +-- Editor: Danny Sioncke +-- Changes: +-- - CTRL added in descriptions where applicable. +-- +-- REVISION "200702021600Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V3.4.0.0.0 +-- Editor: He Yang +-- Changes: +-- - Add three parameter in eqptboardtable: eqptBoardLastRestartCause, +-- eqptBoardLastRestartTime, eqptBoardRestartNumberOfChanges. +-- - Add eqptRestartNumberOfChanges +-- +-- REVISION "200704241735Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V3.3.0.2.2 +-- Editor: John Chuah +-- Changes: +-- - reverted EqptTestChainEntry and eqptTestChainShelfToTapUp to +-- match the definition that was already shipped since R3.1" +-- +-- REVISION "200704191800Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V3.3.0.2.1 +-- Editor: Furqan Haq +-- Changes: +-- - reverted the index order of eqptProfileApplicabilityEntry to +-- match the definition that was already shipped since R2.5" +-- +-- REVISION "200701041600Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V3.3.0.2.0 +-- Editor: Sven Dhuyvetter +-- Changes: +-- - update DEFVALUE in ALCATEL NOTE. +-- +-- REVISION "200612182245Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_V3.3.0.1.0 +-- Editor: John Chuah +-- Changes: +-- - increased upper range of eqptMaxRacksPerAsam from 6 to 7 and +-- eqptMaxShelvesPerRack from 3 to 4. +-- - increased rack and shelf ranges for LEEU, LEUS and LNEU in +-- eqptHolderPlannedType. +-- +-- REVISION "200609161200Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_E3.3.0.0 +-- Editor: Zhu Sunbin +-- Changes: +-- - eqptProtGroupTable tablesize from 1 row to rows number depending on +-- shelf type in Alcatel Notes. +-- - eqptProtElementTable tablesize from 2 rows to rows number depending on +-- shelf type in Alcatel Notes. +-- - eqptProtElementGroupId DEFVALUE from 1 to NA +-- - eqptProtGroupId DEFVALUE from 1 to NA +-- - added notInService(2) in Alcatel Notes for eqptProtGroupRowStatus +-- +-- REVISION "200606161200Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_E3.1.0.0.3 +-- Editor: Lucien Marcotte +-- Changes: +-- - For HYNT, changed eqptMaxSlotsPerShelf from 21 to 22 in Alcatel Notes. +-- +-- REVISION "200606011200Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_E3.1.0.0.2 +-- Editor: Bo Liu +-- Changes: ITSC +-- - Added eqptTestChainTable. +-- +-- REVISION "200605231200Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_E3.0.0.4 +-- Editor: Danny Sioncke +-- Changes: - eqptCustAlarmProfile non-REM introduced items put to +-- "SUPPORT: NO". +-- +-- REVISION "200604211200Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_E3.0.0.3 +-- Editor: Danny Sioncke +-- Changes: - eqptCustAlarmProfile id changed from nr. 7 to nr. 8, +-- solving conflict with eqptTestChainTable (ITSC). +-- - references to asamCustAlarm-xxx corrected to +-- eqptCustAlarm-xxx +-- +-- REVISION "200512131200Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_E3.0.0.2 +-- Editor: Sven Dhuyvetter +-- Changes: update for 8 PVC (BDFhw31519) +-- - add eqptSlotPlannedCapabilityProfile to eqptBoardTable +-- - add eqptProfileApplicabilityTable +-- - add eqptProfileTable +-- - add eqptProfileDescriptionTable +-- Editor: Danny Sioncke +-- Changes: update for REM (BDFhw36030) +-- - add eqptCustAlarmProfileTable +-- - add eqptCustAlarmProfileMappingTable +-- +-- REVISION "200511301200Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_E3.0.0.1 +-- Editor: zhu jianhua +-- Changes: update for NEP (BDFhw62300), add eqptHolderMode +-- +-- REVISION "200509161200Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_E2.4.0.0 +-- Editor: vairamuthu karuppiah +-- Changes: "Added eqptBoardOperError sem-power-fail,sem-ups-fail" +-- +-- REVISION "200506031200Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_E2.3.0.1 +-- Editor: Bart Geldof/Christophe De Ras +-- Changes: ODM Framework +-- - Added ODM Eqt Boardtype treated as unmanaged board. +-- +-- REVISION "200504281200Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_E2.3.0.0 +-- Editor: Lucien Marcotte +-- Changes: HYNT FGR1.0 (new product release) +-- - Added the new Eqt Board current and planned type EXT_MANAGED. +-- +-- REVISION "200412061200Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_E2.2.0.0 +-- Editor: FAN Min +-- Changes: support the eqptProt Table for ISAM R2.2 NT Redundancy Feature +-- * eqptProtGroupLastSwitchoverReason : add "LanxFailure(13)"" +-- +-- REVISION "200411251200Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_E1.0.0.0 +-- Editor: Steven Luykx +-- Changes: changes in comment, version is not stepped up" +-- +-- REVISION "200401291200Z" +-- DESCRIPTION +-- "Version: 3EC36485EAAA_E1.0.0.0 +-- Editor: Rafael Van Driessche +-- Changes: first version for ESAM R1.0 and ESAM R1.1" +-- +-- REVISION "200304241200Z" +-- DESCRIPTION +-- "Version: 3EC36485AAAA_E5.0.0.3 +-- Editor: Eric De Backer +-- Changes: +-- * eqptBoardInventoryLastFailedTest: change object type to OCTET string +-- (BDFaa50395)" +-- +-- REVISION "200303261200Z" +-- DESCRIPTION +-- "Version: 3EC36485AAAA_E5.0.1.0 +-- Editor: Koen Van de Weyer +-- Changes: +-- * eqptBoardOperError: add "board-not-licensed" (BDFaa51682)" +-- +-- REVISION "200309241200Z" +-- DESCRIPTION +-- "Version: 3EC36485AAAA_E5.0.0.2 +-- Editor: Frank Devolder +-- Changes: +-- * Decrease size of eqptHolderDescription from 255 to 127 bytes +-- (BDFaa46015). +-- * Remove eqptHwChangeOccurredTrap & eqptProtChangeOccurredTrap +-- (BDFaa44804). +-- * add initialValue(255) to definition of eqptBoardRestart +-- (BDFaa45317). +-- +-- REVISION "200201151200Z" +-- DESCRIPTION +-- "Version: 3EC36485AAAA_E5.0.0.1 +-- Editor: Frank Devolder +-- Changes: +-- * eqptHolderAvailStatus: add state "offLine" and remove state +-- "unknown". +-- * eqptBoardSwOverruleStatus: only supported for LSMs. +-- * line-up enum values of: +-- eqptBoardOperError & eqptHolderOperError; +-- eqptBoardAvailStatus & eqptHolderAvailStatus; +-- eqptBoardRestart & eqptAsamRestart. +-- * Add object eqptBoardInventoryLastFailedTest. +-- * eqptBoardRestart: for ACU boards, only a restart without selftest is +-- supported." +-- +-- REVISION "200106081200Z" +-- DESCRIPTION +-- "Version: 3EC36485AAAA_E5.0.0.0 +-- Editor: Frank Devolder +-- Changes: creation of new Equipment MIB for ASAM R5.0." +-- +-- ============================================================================= + + IMPORTS IpAddress, TimeTicks, + Counter FROM RFC1155-SMI + DisplayString, RowStatus, + TruthValue FROM SNMPv2-TC + asam FROM SYSTEM-MIB + OBJECT-TYPE FROM RFC-1212 + InterfaceIndex FROM ITF-MIB + AsamAlarmSeverityType FROM ASAM-ALARM-MIB + AsamNextProfileIndex, + AsamProfileRefCount, + AsamProfilePointer, + AsamProfileIndex, + AsamProfileName, + NetworkTimeInSeconds FROM ASAM-TC-MIB; + + + -- asam OBJECT IDENTIFIER ::= { iso(1) identified-organization(3) dod(6) + -- internet(1) private(4) enterprises(1) + -- alcatel(637) asd(61) asam(1) } + + asamEquipmentMIB OBJECT IDENTIFIER ::= { asam 23 } + + -- MAX-INDEX ::= 2147483647 (= 7FFFFFFF HEX) + + -- Start type definitions == + + EqptHolderIndex ::= INTEGER (1..255) + + EqptPowerSupplyIndex ::= INTEGER (1..255) + + EqptPowerRftcIndex ::= INTEGER (1..255) + + EqptPowerRftcLineStatus ::= INTEGER { + ok(0), + notconnected(1), + highimpedant(2), + earthfault(3)} + + EqptHolderIndexOrZero ::= INTEGER (0..255) + + EqptSlotIndex ::= INTEGER (1..65535) + + EqptCustAlarmProfileOutputType ::= INTEGER { + triggered(1), -- alarm output is triggered + notTriggered(2)} -- alarm output is not triggered + + EqptCustAlarmProfilePolarityType ::= INTEGER { + inversed(1), -- inversed alarm polarity + normal(2)} -- normal alarm polarity + + EqptPortMappingIndex ::= INTEGER + + -- End type definitions == + + eqptAsam OBJECT IDENTIFIER ::= { asamEquipmentMIB 1 } + + + -- Note on appliques: + -- + -- The Equipment MIB is only used to manage appliques that are contained + -- in LT shelves or combo shelves. Appliques that are contained in separate + -- splitter shelves cannot be managed. Therefore, whenever this MIB + -- mentions an "applique", it is implicitly understood that this applique + -- is contained in the applique area of a combo shelf, or that it is the + -- NT-I/O applique in case of an LT shelf. + + -- ================================================================== + -- | START ASAM FIELDS | + -- ================================================================== + + eqptAsamId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Unique identifier of the system. + In practice, this attribute contains the serial number of the most + recently equipped SMAS board within the main shelf. + + Notice however that there are also shelves in which the SMAS is replaced + by a GFC board (e.g ARAM-B) or even shelves without SMAS/GFC in which + the serial number of the ACU is taken. + + This attribute is used internally by the system in case both NTs + start-up simultaneously to determine whether either the database on + NT-A or the database on NT-B should be used as the systems database. + It's not the intention to make this attribute visible to an operator. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: '' UNITS: -" + ::= { eqptAsam 1 } + + eqptAsamRestart OBJECT-TYPE + SYNTAX INTEGER { + restartWithSelfTest (1), + -- restart with selftest + restartWithoutSelfTest (2), + -- restart without selftest + -- restartFromDefaultPresOAM (3), + -- restart with removal of persistent data, but preserving the + -- management channel configuration data + -- restartFromDefaultTotal (4), + -- restart with removal of all persistent data, including the + -- management channel configuration data + restartHot (5), + -- system hot restart + initialValue (255) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This attribute is used to restart the system. The persistent data is preserved. + Contains previous restart reason, if not available it contains value 255. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: initialValue (255) UNITS: -" + ::= { eqptAsam 2 } + + eqptMaxRacksPerAsam OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is initialized by the system and specifies the maximum + number of racks supported by the system. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..7 + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptAsam 3 } + + eqptMaxShelvesPerRack OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is initialized by the system and specifies the maximum + number of shelves which can be equipped within one rack. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..4 + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptAsam 4 } + + eqptMaxSlotsPerShelf OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is initialized by the system and specifies the maximum + number of regular slots supported by one shelf. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..22 + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptAsam 5 } + + eqptHwNumberOfChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wrap around counter which indicates the number of configuration or + status changes in the Equipment MIB objects. This counter is + incremented each time any of the summary table objects change. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: -" + ::= { eqptAsam 6 } + + eqptProtNumberOfChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wrap around counter which indicates the overall number of status + changes in the equipment protection MIB objects. This counter is + incremented each time any of the eqptProtGroupNumberOfChanges + counters is incremented. + + ALCATEL NOTE: + SUPPORT:YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: -" + ::= { eqptAsam 7 } + +eqptRestartNumberOfChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wrap around counter which indicates the overall number of status + changes in the eqptBoardRestartNumberOfChanges objects in + eqptBoardTable. This counter is incremented each time any of the + eqptBoardRestartNumberOfChanges counters is incremented. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: -" + ::= { eqptAsam 8 } + +eqptFanMode OBJECT-TYPE + SYNTAX INTEGER + { + default (0), + eco (1), + protect (2), + classic (3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " + Parameter indicates the actually applied FAN tray mode: + + 'default': the fan packs run in average mode, predefined thermal margins are + used for defining/adapting the fan speeds + + 'eco': the fan packs run in 'green' mode, t.i. the most economical mode, minimal + thermal margins wrt default settings + + 'protect': the fan packs run in a heavy mode, t.i. wider thermal margins wrt + default settings + + 'classic': fixed speed settings apply wrt the fan - no SW control + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 0 UNITS: -" + ::= { eqptAsam 9 } + + -- ================================================================== + -- | STOP ASAM FIELDS | + -- ================================================================== + + -- ================================================================== + -- | START HOLDER TABLE | + -- ================================================================== + + eqptHolderTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptHolderEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Equipment holder table, representing the system, the racks and + the shelves. + + This table contains one row for the system, one row per rack, + and one row per shelf. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= { asamEquipmentMIB 2 } + + eqptHolderEntry OBJECT-TYPE + SYNTAX EqptHolderEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry of the equipment holder table. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { eqptHolderId } + ::= { eqptHolderTable 1 } + + EqptHolderEntry ::= SEQUENCE { + eqptHolderId EqptHolderIndex, + eqptHolderClass INTEGER, + eqptHolderPlannedType DisplayString, + eqptHolderActualType DisplayString, + eqptHolderAdminStatus INTEGER, + eqptHolderOperStatus INTEGER, + eqptHolderOperError INTEGER, + eqptHolderAvailStatus INTEGER, + eqptHolderDescription DisplayString, + eqptHolderContainerId INTEGER, + eqptHolderContainerOffset INTEGER, + eqptHolderMode INTEGER, + eqptHolderSerialNumber DisplayString, + eqptHolderVariant DisplayString, + eqptHolderICScode DisplayString + } + + eqptHolderId OBJECT-TYPE + SYNTAX EqptHolderIndex + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Index in equipment holder Table. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptHolderEntry 1 } + + eqptHolderClass OBJECT-TYPE + SYNTAX INTEGER { + mainIqHcl (1), -- main shelf supporting both IQ-based and + -- HCL-based traffic + extIq (2), -- extension shelf supporting only IQ-based traffic + extHcl (3), -- extension shelf supporting only HCL-based traffic + mainEthernet (4), -- main shelf supporting Ethernet-based traffic + extEthernet (5) -- extension shelf supporting Ethernet-based traffic + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Classification of shelves. This object has no meaning for the + system and the rack equipment holders. + + Note: for ISAM, only the values mainEthernet (4) and extEthernet (5) + are allowed. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: 1..5 + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { eqptHolderEntry 2 } + + eqptHolderPlannedType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A string representing the planned type of equipment holder. + If the equipment holder is planned, the string consists of a + mnemonic, identifying the holder type. + This object is only writable for the entries that represent a shelf. + Other entries get a value corresponding to the detected equipment + practice type. + + Following values are valid: + + System-types: + ============= + LAUS Large ASAM US market (6 racks, 3 shelves per rack) + LAEU Large ASAM EU market (6 racks, 3 shelves per rack) + LEEU Large ESAM EU market (7 racks, 4 shelves per rack) + LEUS Large ESAM US market (7 racks, 4 shelves per rack) + LNEU Large New EquipmentPractise EU market(7 racks, 4 shelves + per rack) + LEWW Large ESAM World Wide (7 racks, 4 shelves per rack) + LNWW Large ESAM World Wide (7 racks, 4 shelves per rack) + + Rack-types: + =========== + ALTR-A ADSL Line Termination Rack version A (US) + ALTR-E ADSL Line Termination Rack version E (ETSI 2200mm) + + Shelf-types: + ============ + A shelf of a specific type. Refer to the ETSI + Configurations and US Configurations documents + for the list of shelf types that are supported + in a given system release. + + NOT_PLANNED The shelf is not planned. + + NOT_ALLOWED Shelf planning is not allowed in this position. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: See above + PERSIST: YES DEFVALUE: 'NOT_PLANNED' UNITS: -" + ::= { eqptHolderEntry 3 } + + eqptHolderActualType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A string representing the actual equipment holder type. + + Following values are possible: + + Indicates the detected equipment holder-type. + Uses same mnemonics as described in object + eqptHolderPlannedType. + + EMPTY Equipment holder is not detected + + UNKNOWN The type of the detected holder is unknown. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptHolderEntry 4 } + + eqptHolderAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + unlock(1), + lock(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Used by the administrator to lock or unlock an equipment holder. + This attribute is only supported for shelves. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: 1 UNITS: -" + ::= { eqptHolderEntry 5 } + + eqptHolderOperStatus OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute identifies whether or not the equipment holder is + capable of performing its normal functions. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..2 + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptHolderEntry 6 } + + eqptHolderOperError OBJECT-TYPE + SYNTAX INTEGER { + no-error(1), -- no-error or admin state = Down + type-mismatch(2), + holder-missing(3), + holder-installation-missing(4), + defense(15) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute describes for what reason the equipment holder is + not operational. These values correspond with the alarms that are + generated in case of a failure. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..4, 15 + PERSIST: NO DEFVALUE: 1 UNITS: -" + ::= { eqptHolderEntry 7 } + + eqptHolderAvailStatus OBJECT-TYPE + SYNTAX INTEGER { + available(1), -- equipment holder is available + failed (3), -- equipment holder is detected but faulty + notInstalled (5), -- equipment holder is not installed + offLine (6) -- equipment holder has been disabled + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute indicates whether the equipment holder is + available or not. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1, 3, 5, 6 + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptHolderEntry 8 } + + eqptHolderDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..127)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Text-field, which can for instance be used to describe the + location of the equipment holder. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: '' UNITS: -" + ::= { eqptHolderEntry 9 } + + eqptHolderContainerId OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute describes in which equipment holder the equipment + holder is contained. + This object is only meaningful for racks and shelves, since the + system itself has no containing equipment holder. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptHolderEntry 10 } + + eqptHolderContainerOffset OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute describes the position of the equipment holder + in the containing equipment holder. + This object is only meaningful for racks and shelves, since the + system itself has no containing equipment holder. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptHolderEntry 11 } + + eqptHolderMode OBJECT-TYPE + SYNTAX INTEGER{ + ntbntio-supported(1), + ntbntio-unsupported(2), + ntb-unsupported(3), + ntbntioextlt-unsupported(4), + ntio-unsupported(6), + ngpon-supported(7), + gpon-supported(8), + ngpon-port-reduced(9) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION "This attribute identifies the holder mode and is used by + both the NEP shelf and the ARAM-E shelf: + ntbntio-supported: this mode works in the same manner as iSAM XD. The + LSM can only be used on LSM slot. NT in NTB is supported. NTIO is + also supported. + ntbntio-unsupported: In this mode, NTIO & NTB slot can be used as + LT slot. So, two more LSM can be supported in this mode. Therefore, + NTIO/NTB board is not supported. + ntb-unsupported: In this mode, NTB slot can be used as LT slot. + So one more LT can be supported in this mode. Therefore, NTB board will + not be supported. This mode is applicable for NFXS-B shelf only. + ntio-unsupported: In this mode, there is no NTIO; the slot can be + used for an LSM. + DEFAULTVALUE: The default Value of the eqptHolderMode depends + on the shelf type. In the case of ARAM-E, default will be ntio-unsupported. + All other shelves will default to ntbntio-supported mode. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: Yes DEFVALUE: See above UNITS: -" + ::= { eqptHolderEntry 12 } + + + eqptHolderSerialNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute represents the serial number of the shelf. + + NOT available If FIM < 25 in RI, this attribute could not be retrieved. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptHolderEntry 13 } + + + eqptHolderVariant OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute represents the ALU code of the shelf. + + NOT available If FIM < 25 in RI, this attribute could not be retrieved. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptHolderEntry 14 } + + eqptHolderICScode OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute represents the Item Change Status iteration + code of the shelf. + + NOT available If FIM < 25 in RI, this attribute could not be retrieved. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptHolderEntry 15 } + + -- ================================================================== + -- | STOP HOLDER TABLE | + -- ================================================================== + -- ================================================================== + -- | START BOARD TABLE | + -- ================================================================== + + eqptBoardTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptBoardEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table representing the slots of all planned shelves. Each slot + can hold a board of one of the following types: NT, EXT, LSM, + ACU, CTRL, applique. + + This table has a row for each slot in each planned shelf. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= { asamEquipmentMIB 3 } + + eqptBoardEntry OBJECT-TYPE + SYNTAX EqptBoardEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the eqptBoardTable. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { eqptSlotId } + ::= { eqptBoardTable 1 } + + EqptBoardEntry ::= SEQUENCE { + eqptSlotId EqptSlotIndex, + eqptSlotPlannedType DisplayString, + eqptSlotActualType DisplayString, + eqptSlotPowerStatus INTEGER, + eqptBoardAdminStatus INTEGER, + eqptBoardOperStatus INTEGER, + eqptBoardOperError INTEGER, + eqptBoardAvailStatus INTEGER, + eqptBoardRestart INTEGER, + eqptBoardSwOverruleStatus INTEGER, + eqptBoardContainerId INTEGER, + eqptBoardContainerOffset INTEGER, + eqptBoardInventoryAlcatelCompanyId DisplayString, + eqptBoardInventoryTypeName DisplayString, + eqptBoardInventoryPBACode DisplayString, + eqptBoardInventoryFPBACode DisplayString, + eqptBoardInventoryICScode DisplayString, + eqptBoardInventoryCLEICode DisplayString, + eqptBoardInventorySerialNumber DisplayString, + eqptBoardInventoryLastFailedTest OCTET STRING (SIZE(4)), + eqptSlotPlannedCapabilityProfile AsamProfilePointer, + eqptBoardCustAlarmProfile AsamProfilePointer, + eqptBoardLastRestartCause INTEGER, + eqptBoardLastRestartTime NetworkTimeInSeconds, + eqptBoardRestartNumberOfChanges Counter, + eqptBoardRelatedMgntEntityIPAddress IpAddress, + eqptBoardRelatedMgntEntityPairedNumber INTEGER, + eqptBoardDualHostIPAddress IpAddress, + eqptBoardDualHostLsmLocation EqptHolderIndexOrZero, + eqptBoardIfSlotId INTEGER, + eqptBoardRestartCountPerLt Counter, + eqptBoardClearRestartCountPerLt TruthValue + } + + eqptSlotId OBJECT-TYPE + SYNTAX EqptSlotIndex + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A unique value to identify a slot position. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { eqptBoardEntry 1 } + + eqptSlotPlannedType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A string representing the board (NT, EXT, LSM, ACU, CTRL, Applique) that + is planned in the slot. If the board is planned, the string consists + of a mnemonic that identifies the board-type. + + Following mnemonics are valid: + + A board of a specific type. Refer to the ETSI and + US Configurations documents for the list of boards + that are supported in a given release. + ODM board types are planned with the board mnemonic, + they are treated as unmanaged boards. + + EXT_MANAGED The presence of the LT module can be detected but + it is not managed by this NT in the HYNT module. + The LT type must be planned on the other NT. + + UNMANAGED Unmanaged board: this means that the presence of + the board can be detected and that the board can + be reset and powered-down but that it is not + possible to establish communication with the board + in software. + + NOT_PLANNED No board is planned in the slot. + + NOT_ALLOWED Slot planning is not allowed in this position. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: 'NOT_PLANNED' UNITS: -" + ::= { eqptBoardEntry 2 } + + eqptSlotActualType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A string representing the board (NT, EXT, LSM, ACU, CTRL, Applique) that + is actually present in the slot. + + Following values are possible: + + Indicates the detected board-type. Uses same + mnemonics as described in object + eqptSlotPlannedType. + + EMPTY No board plugged within this slot. + + EXT_MANAGED The presence of the LT module can be detected but + it is not managed by this NT in the HYNT module. + The LT type must be planned on the other NT. + + UNMANAGED The type of the detected board is unknown + and the planned board type is UNMANAGED or ODMboardtype. + + UNKNOWN The type of the detected board is unknown + and the planned board type is not UNMANAGED + and the planned board type is not EXT_MANAGED. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptBoardEntry 3 } + + eqptSlotPowerStatus OBJECT-TYPE + SYNTAX INTEGER { + powerUp(1), + powerDown(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This attribute is used by the operator to power-up or power-down + an LSM slot. This attribute is not supported for other type of slots. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: 1..2 + PERSIST: YES DEFVALUE: 1 UNITS: -" + ::= { eqptBoardEntry 4 } + + eqptBoardAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + unlock(1), + lock(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This attribute is used by the operator to lock or unlock the board. + + This attribute is only supported for the following type of boards: + NT (but notice that the system will refuse a request to lock the NT + of a simplex system), EXT and LSM (if managed). This attribute has + no meaning for an unmanaged or externally managed (EXT_MANAGED) LSM, + for an ACU, CTRL or for an applique. An exception is the NRCD-C, CTRL + board of the FD-REM, that has LT capabilities next to the regular + CTRL capabilities. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: 1..2 + PERSIST: YES DEFVALUE: 1 UNITS: -" + ::= { eqptBoardEntry 5 } + + eqptBoardOperStatus OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute informs the operator whether the plug-in unit is able + to perform its normal operation. + + This attribute is supported for all type of boards: NT, EXT, LSM, + ACU, CTRL, applique. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..2 + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptBoardEntry 6 } + + eqptBoardOperError OBJECT-TYPE + SYNTAX INTEGER { + no-error(1), -- no-error or admin state = Down + type-mismatch(2), + board-missing(3), + board-installation-missing(4), + no-planned-board(5), + waiting-for-sw(6), + init-boot-failed(7), + init-download-failed(8), + init-connection-failed(9), + init-configuration-failed(10), + board-reset-protection(11), + invalid-parameter(12), + temperature-alarm(13), + tempshutdown(14), + defense(15), + board-not-licensed(16), + sem-power-fail(17), + sem-ups-fail(18), + board-in-incompatible-slot(19), + download-ongoing(21), + unknown-error(255) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute describes for what reason the board is not operational. + These values correspond with the alarms which are generated in case of + a failure. + + This attribute is supported for all type of boards: NT, EXT, LSM, + ACU, CTRL, applique. + Default value is no-error, replaced by result from startup sequence. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..15, 255 + PERSIST: NO DEFVALUE: 1 UNITS: -" + ::= { eqptBoardEntry 7 } + + eqptBoardAvailStatus OBJECT-TYPE + SYNTAX INTEGER { + available(1), -- board is available, after successfull selftest + inTest(2), -- during selftest or init, after reset or power up + failed(3), -- error, error in selftest or timeout + powerOff(4), -- board is powered off + notInstalled(5), -- board is not plugged in + offLine(6), -- board has been disabled + dependency(7) -- board cannot operate because some other resource + -- on which it depends is unavailable + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute provides further information regarding the state + of the board. It is set to available after a successfull selftest + of the board (if applicable). + + This attribute is supported for all type of boards: NT, EXT, LSM, + ACU, CTRL, applique. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..7 + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptBoardEntry 8 } + + eqptBoardRestart OBJECT-TYPE + SYNTAX INTEGER { + with-selftest(1), + without-selftest(2), + hot-restart(5), + initialValue (255) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Writing a valid value to this object will restart the board in the + specified mode. + + This attribute is only supported for the following type of boards: + NT, EXT, managed LSM, ACU, CTRL. For ACU and CTRL boards, only a + restart without selftest is supported. An exception is the NRCD-C, + FD-REM CTRL board, that has LT capabilities (restart with/without + selftest) next to the regular CTRL capabilities. + Contains previous restart reason, if not available it has value 255. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: 1, 2, 5, 255 + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { eqptBoardEntry 9 } + + eqptBoardSwOverruleStatus OBJECT-TYPE + SYNTAX INTEGER { + no-overrule(1), + overrule(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Used to overrule the default software version for this board. + This attribute is only supported for managed LSMs. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: 1..2 + PERSIST: NO DEFVALUE: 1 UNITS: -" + ::= { eqptBoardEntry 10 } + + eqptBoardContainerId OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute describes in which equipment holder the slot + is contained. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptBoardEntry 11 } + + eqptBoardContainerOffset OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute describes the position of the slot in the + containing equipment holder. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptBoardEntry 12 } + + -- The following attributes are used to represent the board inventory data. + -- Board inventory data is retrieved for the following board-types: NT, EXT, + -- managed LSM, ACU, CTRL, applique. + -- Board inventory data is not retrieved for unmanaged ,externally managed + -- (EXT_MANAGED) LSMs and ODM boardtypes. + + eqptBoardInventoryAlcatelCompanyId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute represents the company of the board. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptBoardEntry 13 } + + eqptBoardInventoryTypeName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute represents the name of the board. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptBoardEntry 14 } + + eqptBoardInventoryPBACode OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute represents the Alcatel Printed Board Assembly + code of of the board. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptBoardEntry 15 } + + eqptBoardInventoryFPBACode OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute represents the Alcatel Printed Board Assembly + code of the board, which also identifies the boot software. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptBoardEntry 16 } + + eqptBoardInventoryICScode OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute represents the Item Change Status iteration + code of the board. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptBoardEntry 17 } + + eqptBoardInventoryCLEICode OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute represents the (USA) Common Language Equipment + Identification code of the board. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptBoardEntry 18 } + + eqptBoardInventorySerialNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute represents the serial number of the board. + + Breakdown of a sample serial number is : + + sample NANT-D serial number is AA1003ZA028 + + AA 10 03 ZA028 + --- ==== ========== + | | |=====' Production Plant Code + | | + | |==============' Week + | + |====================' Year + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptBoardEntry 19 } + + eqptBoardInventoryLastFailedTest OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(4)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identifies the last failing test by means of 4 numbers, from MSB + to LSB: + - Table number (1 byte) + - Segment number (1 byte) + - Case number (1 byte) + - Check number (1 byte) + As long as there has been no failing selftest, the value of this + object will be 0. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptBoardEntry 20 } + + eqptSlotPlannedCapabilityProfile OBJECT-TYPE + SYNTAX AsamProfilePointer + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A pointer to the capability profile that will be used for this + slot. Capability profiles are only applicable for LT cards + that are not EXT_MANAGED and not UNMANAGED,NRNT-A and NTIO cards. + Planning the profile should always be done at the same moment the + LT/NTIO is planned. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: 0 UNITS: -" + ::= { eqptBoardEntry 22 } + + eqptBoardCustAlarmProfile OBJECT-TYPE + SYNTAX AsamProfilePointer + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A pointer to the customizable alarms profile which will be + associated to NT for all shelves except FD-REM where the + customizable alarms profile will be associated to master LT. + In redundant NT shelves the profile will be associated to + both NTA and NTB while associating customizable alarms profile + to NTA or NTB. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: 0 UNITS: -" + ::= { eqptBoardEntry 23 } + + eqptBoardLastRestartCause OBJECT-TYPE + SYNTAX INTEGER { + poweron(1), + unknown(2), + watchdog(3), + coldreset(4), + warmreset(5), + hotreset(6), + hotreload(7), + cleandata(8), + emergencybuild(9), + poweronreset(10), + commitfailure(11), + timezonemodified(12) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute gives the last restart cause for board. + Currently only LSM board can support. Considering future safe, + only use default value for other board entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: unknown UNITS: -" + ::= { eqptBoardEntry 24 } + + eqptBoardLastRestartTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute gives the last restart time. + Currently only LSM board can support. Considering future safe, + only use default value for other board entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: -" + ::= { eqptBoardEntry 25 } + + eqptBoardRestartNumberOfChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wrap around counter which indicates the number of restart times. + This counter is incremented each time eqptBoardLastRestartTime + changes. Considering future safe, only use default value for + other board entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: -" + ::= { eqptBoardEntry 26 } + + eqptBoardRelatedMgntEntityIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Network address. It is a public OAM IP address related to xVPS. For + single OAM IP is introduced, multi-xVPS boards existing on a same shelf + may use one single OAM IP. This IP is configured on NT which manages + these xVPS boards. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: + PERSIST: NO DEFVALUE: 0 UNITS: -" + ::= { eqptBoardEntry 27 } + + + eqptBoardRelatedMgntEntityPairedNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " For single OAM IP is introduced, one public OAM IP can not identify an + xVPS, so community string is introduced. Each active xVPS will have + different community string in one shelf. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: + PERSIST: NO DEFVALUE: 0 UNITS: -" + ::= { eqptBoardEntry 28 } + + eqptBoardDualHostIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Network address. Only applicable for FD REM connected to dual host. + It is the public OAM IP address of the host connecting the Lsm in this + externally managed slot. It is instantiated with default value and + can only be set when the planned type is EXT_MANAGED. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: + PERSIST: YES DEFVALUE: 0 UNITS: -" + ::= { eqptBoardEntry 29 } + + + eqptBoardDualHostLsmLocation OBJECT-TYPE + SYNTAX EqptHolderIndexOrZero + ACCESS read-write + STATUS mandatory + DESCRIPTION + " Only applicable for FD REM connected to dual host. + It is the Rack/Shelf identifying the location of this + externally managed slot, within the scope of the host connecting + the Lsm. The slot component is implicitly present in the key. + It is instantiated with default value and can only be set when + the planned type is EXT_MANAGED. The type corresponds to the + type EqptHolderIndex, except for the fact that this field can + be 0, which is the default value. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: 0 UNITS: -" + ::= { eqptBoardEntry 30 } + + eqptBoardIfSlotId OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " This object gives the slot's linear number, which could be + used by an external manager to help in mapping a given + IfIndex to a physical slot location. It is a numerical value + that consists of 6 bits. For a slot that does not carry any + interfaces (e.g. applique or NTIO slot), the value is always + '0xFF'. + Note that this linear slot number is persistent across system + restarts, i.e. the same linear slot number will be used for + the same slot even after a restart of the ISAM system. + However, it is not guaranteed that the same linear slot + number will used after a migration to a new release. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: 0xFF UNITS: -" + ::= { eqptBoardEntry 32 } + + eqptBoardRestartCountPerLt OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wrap around counter which indicates the number of restart times per LT. + This counter is incremented each time eqptBoardLastRestartTime + changes.This counter will reset to zero when LT replaced or unplanned. + + Note:This counter is Per LT basis. LTs are distinguished based on serialNumber. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: NA" + ::= { eqptBoardEntry 33 } + + eqptBoardClearRestartCountPerLt OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is a button-like object to reset the eqptBoardRestartCountPerLt counter. + When it is set to true(1) value then the corresponding eqptBoardRestartCountPerLt counter is cleared. + + A value set to false(2) or other is ignored.. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: FALSE UNITS: NA" + ::= { eqptBoardEntry 34 } + + + -- ================================================================== + -- | STOP BOARD TABLE | + -- ================================================================== + + -- ================================================================== + -- | START SHELF SUMMARY TABLE | + -- ================================================================== + + eqptShelfSummaryTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptShelfSummaryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Shelf summary table, summarizing slot or board related status + changes within each shelf. + + This table has one row per planned shelf. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above." + ::= { asamEquipmentMIB 4 } + + eqptShelfSummaryEntry OBJECT-TYPE + SYNTAX EqptShelfSummaryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry of the shelf summary table. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { eqptHolderId } + ::= { eqptShelfSummaryTable 1 } + + EqptShelfSummaryEntry ::= SEQUENCE { + eqptShelfHwNumberOfChanges Counter, + eqptShelfSlotSummaryOccupation OCTET STRING, + eqptShelfBoardSummaryAdmin OCTET STRING, + eqptShelfBoardSummaryAvail OCTET STRING, + eqptShelfBoardSummaryOper OCTET STRING, + eqptShelfBoardSummaryTypeMismatch OCTET STRING, + eqptShelfBoardSummaryAlarm OCTET STRING + } + + eqptShelfHwNumberOfChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wrap around counter which indicates the number of configuration or + status changes for slots/boards within this shelf. This counter + is incremented each time any of the summary table objects of this + shelf changes. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptShelfSummaryEntry 1 } + + eqptShelfSlotSummaryOccupation OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Bitmap of the occupation of slots (0 = empty, 1 = full) + Applicable for NT, EXT, LSM, ACU, CTRL, applique. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptShelfSummaryEntry 2 } + + eqptShelfBoardSummaryAdmin OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Bitmap of the administrative state of the boards + (0 = locked, 1 = unlocked). Applicable for NT, EXT, LSM. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptShelfSummaryEntry 3 } + + eqptShelfBoardSummaryAvail OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Bitmap of the availability state of the boards (0 = not available, + 1 = available). Applicable for NT, EXT, LSM, ACU, CTRL, applique. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptShelfSummaryEntry 4 } + + eqptShelfBoardSummaryOper OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Bitmap of the operational state of the boards (0 = locked, + 1 = unlocked). Applicable for NT, EXT, LSM, ACU, CTRL, applique. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptShelfSummaryEntry 5 } + + eqptShelfBoardSummaryTypeMismatch OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Bitmap of the mismatch between the actual board-type and the planned + board-type (0 = mismatch, 1 = no mismatch). + Applicable for NT, EXT, LSM, ACU, CTRL, applique. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptShelfSummaryEntry 6 } + + eqptShelfBoardSummaryAlarm OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Bitmap of the boards which generated an alarm (0 = alarm, + 1 = no alarm). Applicable for NT, EXT, LSM, ACU, CTRL, applique. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptShelfSummaryEntry 7 } + + -- ================================================================== + -- | STOP SHELF SUMMARY TABLE | + -- ================================================================== + + eqptProt OBJECT IDENTIFIER ::= { asamEquipmentMIB 5 } + + eqptProtNextProtGroupId OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object contains an appropriate value to be used for + eqptProtGroupId when creating entries in the eqptProtGroupTable. + The value 0 indicates that no unassigned entries are available. + After each retrieval, the agent will modify the value to the + next unassigned index. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= {eqptProt 1} + + -- ================================================================== + -- | START PROTECTIONGROUP TABLE | + -- ================================================================== + + eqptProtGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptProtGroupEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table representing groups of protected or protecting elements. + Only one row for NT protection group which will always be created and + cannot be deleted. + From ISAM R4.1.02 the default created NT protection group will be locked. + (before it was unlocked). + From R3.3 onwards, each LT protection group (comprised of 2 adjacent + slots LT n and LT n+1, where n is a odd number), also has a row. + The protection groups are created by default even though + the protection groups are not used. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above " + ::= { eqptProt 2 } + + eqptProtGroupEntry OBJECT-TYPE + SYNTAX EqptProtGroupEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry of the eqptProtGroupTable. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { eqptProtGroupId } + ::= { eqptProtGroupTable 1 } + + EqptProtGroupEntry ::= SEQUENCE { + eqptProtGroupId INTEGER, + eqptProtGroupType INTEGER, + eqptProtGroupNumberOfChanges Counter, + eqptProtGroupSwitchoverCount Counter, + eqptProtGroupLastSwitchoverReason INTEGER, + eqptProtGroupEpsQuenchfactor TimeTicks, + eqptProtGroupAlarmBitmap INTEGER, + eqptProtGroupAdminStatus INTEGER, + eqptProtGroupAdminProtElement INTEGER, + eqptProtGroupOperProtElement INTEGER, + eqptProtGroupRowStatus RowStatus + } + + eqptProtGroupId OBJECT-TYPE + SYNTAX INTEGER + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A unique value to identify a protection group. + The value 1 is reserved for the NT protection group, + which is always present and cannot be deleted. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { eqptProtGroupEntry 1} + + eqptProtGroupType OBJECT-TYPE + SYNTAX INTEGER { + one-plus-one(1), + one-for-N(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This attributes distinguishes between 1+1 and 1:N protection groups. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..2 + PERSIST: YES DEFVALUE: one-plus-one(1) UNITS: -" + ::= { eqptProtGroupEntry 2 } + + eqptProtGroupNumberOfChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wrap around counter which indicates the number of status changes + in this protection group as well as the status changes for the + protecting elements within this group: + eqptProtGroupSwitchoverCount; + eqptProtGroupLastSwitchoverReason; + eqptProtGroupAlarmBitmap; + eqptProtElementStandbyStatus. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptProtGroupEntry 3 } + + eqptProtGroupSwitchoverCount OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wrap around counter for the number of switchovers being performed. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 0 UNITS: -" + ::= { eqptProtGroupEntry 4 } + + eqptProtGroupLastSwitchoverReason OBJECT-TYPE + SYNTAX INTEGER { + noSwitchOver(1), -- no switch over has been performed yet + forcedActive(2), -- chain is forced active + boardNotPresent(3), -- board is removed or not reachable + extenderChainFailure(4), -- extender chain failure + linkFailure(5), -- link failure + watchDogTimeOut(6), -- redundancy watchdog + fileSystemCorrupt(7), -- curruption of file system + configurationMismatch(8), -- mismatch in boardType or Swversion + boardUnplanned(9), -- board has been unplanned + boardLocked(10), -- board has been locked + shelfDefense(11), -- shelf-error detected by defense + revertiveSwitchOver(12), -- switchover because protected board is + -- operational again (in case of 1:N) + lanxFailure(13), -- lanx not alive + lanxHwFailure(14), -- active Lanx has detected a + -- hardware failure + lanxSdkFailure(15), -- active Lanx has detected a + -- SDK-failure + dpoeAppFailure(16), -- active DPoE has detected application failure + dpoeUnreachable(17) -- DPoE is not reachable + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object contains the reason of the last switch over. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..17 + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { eqptProtGroupEntry 5 } + + eqptProtGroupEpsQuenchfactor OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object contains a timervalue in 1/100 sec. The EpsQuench timer + is used to prevent continuous switch-overs in case of unstable EPS. + Value equal to zero means the quenching mechanism is disabled. + Configuration of the EPS quenchfactor has mainly be foreseen for + test purposes. Operators should preferably not be able to + reconfigure the default value. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: 1440000 UNITS: 0.01 seconds" + DEFVAL { 1440000} -- 4 hours + ::= { eqptProtGroupEntry 6 } + + eqptProtGroupAlarmBitmap OBJECT-TYPE + SYNTAX INTEGER (1..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Status bitmap: + bit 0 set means No defect at all + bit 1 : if bit set, Standby degradation alarm is set + (excludes bit 0 setting) + bit 2 .. 31 : reserved for future extensions. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0x00000001 UNITS: -" + ::= { eqptProtGroupEntry 7 } + + eqptProtGroupAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + unlock(1), + lock(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Used by the administrator to disable or enable protection within + that protection group. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: 1..2 + PERSIST: YES DEFVALUE: unlock(1) UNITS: -" + ::= { eqptProtGroupEntry 8 } + + eqptProtGroupAdminProtElement OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Only supported for 1:N protection groups. In case of a forced + switchover to the spare element, this attribute is used to specify + the element to be protected. The value 0 means that no element is + specified. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { eqptProtGroupEntry 9 } + + eqptProtGroupOperProtElement OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Only supported for 1:N protection groups. Indicates which element + is currently protected by the spare element. The value 0 means that + currently the spare element is not protecting any element. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptProtGroupEntry 10 } + + eqptProtGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Entries in the eqptProtGroupTable can only be created at once, by + specifying eqptProtGroupRowStatus=createAndGo(4). + For NT protection group, if all values are valid then the + entry is made active(1). For LT protection group, if the group + is in service then the entry is made active(1). If the group + is not in service then the entry is made notInService(2). + If the object is set to destroy(6), the entry is deleted. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO for ISAM R3.3 RANGE: See above + PERSIST: NO DEFVALUE: active(1) UNITS: -" + ::= { eqptProtGroupEntry 11 } + + -- ================================================================== + -- | STOP PROTECTIONGROUP TABLE | + -- ================================================================== + -- ================================================================== + -- | START PROTECTIONELEMENT TABLE | + -- ================================================================== + + eqptProtElementTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptProtElementEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table representing the protected or protecting elements. + An element can be either a board or an extension chain. Both are + identified by the corresponding slot identifier (extension chain + is identified by slot of corresponding NT board). + This table has only two rows from ISAM R2.2 to R3.2. + From R3.3 onwards, this table has a row for each slots in the + main shelf. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above " + ::= { eqptProt 3 } + + eqptProtElementEntry OBJECT-TYPE + SYNTAX EqptProtElementEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry of the eqptProtElementTable. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { eqptSlotId } + ::= { eqptProtElementTable 1 } + + EqptProtElementEntry ::= SEQUENCE { + eqptProtElementGroupId INTEGER, + eqptProtElementType INTEGER, + eqptProtElementStandbyStatus INTEGER, + eqptProtElementRedcyCtrlStatus INTEGER, + eqptProtElementRowStatus RowStatus, + eqptProtElementStandbyStatuschangeReason INTEGER + } + + eqptProtElementGroupId OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This attributes identifies the protection group to which this + element belongs. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO for ISAM R3.3 RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { eqptProtElementEntry 1} + + eqptProtElementType OBJECT-TYPE + SYNTAX INTEGER { + normal(1), + spare(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This attribute is used to distinguish between normal elements of + a protection group and the spare element of a 1:N protection group. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..2 + PERSIST: YES DEFVALUE: normal(1) UNITS: -" + ::= { eqptProtElementEntry 2} + + eqptProtElementStandbyStatus OBJECT-TYPE + SYNTAX INTEGER { + providing-service(1), --active and providing service + hot-standby(2), --standby and ready to become active + cold-standby(3), --standby but not synchronized + idle(4) --not able to protect peer board + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute reflects the standby status of the protection + group element. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..4 + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptProtElementEntry 3} + + eqptProtElementRedcyCtrlStatus OBJECT-TYPE + SYNTAX INTEGER { + normal(1), + forced-active(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This attribute is used to force a switchover between elements of + a protection group or to keep one of the elements active. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: 1..2 + PERSIST: YES DEFVALUE: normal(1) UNITS: -" + ::= { eqptProtElementEntry 4} + + eqptProtElementRowStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Entries in the eqptProtElementTable can only be created at once, + by specifying eqptProtEelementRowStatus=createAndGo(4). If all + values are valid then the entry is made active(1). If the object + is set to destroy(6), the entry is deleted. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: active(1) UNITS: -" + ::= { eqptProtElementEntry 5} + + eqptProtElementStandbyStatuschangeReason OBJECT-TYPE + SYNTAX INTEGER { + none(0), -- standby state is hot standby + -- or not applicable (default value) + protectionGroupLocked(1), -- redundancy is not enabled + forcedActive(2), -- active board is put to forced active + peerLinkUnAvailable(3), -- standby NT link is not available + peerLocked(4), -- standby board is locked + peerNotPlanned(5), -- standby board is not planned + peerNotPluggedIn(6), -- standby board is not plugged in + databaseNotInSync(7), -- data base is not synchronized + lanxDynamicDataNotSynced(8), -- lanx has not synchronized its data + lanxSdkFailure(9), -- standby Lanx has detected a + -- non recoverable SDK-failure + lanxRecovSdkFailure(10), -- standby Lanx has deteced a + -- recoverable SDK-failure + lanxHwFailure(11), -- standby Lanx has deteced a hardware failure + lanxDynDataSyncFailure(12), -- standby lanx could not + -- synchronize its dynamic data + lanxStaticSyncFailure(13), -- standby lanx could not + -- synchronize its static data + lanxPeerCommFailure(14), -- standby Lanx has lost communication + -- with the active lanx + lanxFailure(15), -- standby lanx not alive + linkGroupNotAvailable(16), -- link group not available + ltNotEnabled(17), -- for LT redundancy : LT not enabled + lanxHiGigFailure(18), -- lanx (act or stb has detected a HiGiG + -- failure + lanxReconcileFailure(19), -- lanx has detected a failure in the + -- reconcile phase (a.k.a. bulk sync phase) + lanxDiscoveryFailure(20), -- act lanx is not able to detect the mate + -- although the HiGig is up and running. + dpoeAppFailure(21), -- standby DPoE has detected application + -- failure + dpoeCommFailure(22), -- standby DPoE has lost communication with + -- active DPoE + dpoeSyncFailure(23), -- standby DPoE could not do synchronization + -- with active DPoE + dpoeUnreachable(24) -- standby DPoE is not reachable + + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute reflects the reason why the standby status of the protection group element has changed. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0..24 + PERSIST: NO DEFVALUE: none(0) UNITS: -" + ::= { eqptProtElementEntry 6} + + -- ================================================================== + -- | STOP PROTECTIONELEMENT TABLE | + -- ================================================================== + + eqptProfile OBJECT IDENTIFIER ::= { asamEquipmentMIB 6 } + + -- ================================================================== + -- | START PROFILE TABLE | + -- ================================================================== + + eqptProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptProfileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table holding the mapping between the profileId and the corresponding + profile name. + This table has a row for every profile in the system. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= { eqptProfile 1 } + + eqptProfileEntry OBJECT-TYPE + SYNTAX EqptProfileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the eqptProfileTable. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { eqptProfileId } + ::= { eqptProfileTable 1 } + + EqptProfileEntry ::= SEQUENCE { + eqptProfileId AsamProfileIndex, + eqptProfileName AsamProfileName, + eqptProfileDescription DisplayString + } + + eqptProfileId OBJECT-TYPE + SYNTAX AsamProfileIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A value identifying a profile. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { eqptProfileEntry 1 } + + eqptProfileName OBJECT-TYPE + SYNTAX AsamProfileName + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The corresponding name for a given profile id. + The name corresponding to the ProfileId must also be unique. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptProfileEntry 2 } + + eqptProfileDescription OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A short description for the given profile, explaining the + key attributes. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptProfileEntry 3 } + + -- ================================================================== + -- | STOP PROFILE TABLE | + -- ================================================================== + + -- ================================================================== + -- | START PROFILE APPLICABILITY TABLE | + -- ================================================================== + + eqptProfileApplicabilityTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptProfileApplicabilityEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table lists for every defined profile in the system for + which boards it is applicable. + One profile can be applicable for multiple board types. + Multiple profiles can be applicable for the same board type. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= { eqptProfile 2 } + + eqptProfileApplicabilityEntry OBJECT-TYPE + SYNTAX EqptProfileApplicabilityEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the eqptProfileApplicabilityTable. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { eqptProfileId, eqptBoardType } + ::= { eqptProfileApplicabilityTable 1 } + + EqptProfileApplicabilityEntry ::= SEQUENCE { + eqptBoardType DisplayString, + eqptDefaultProfile TruthValue + } + + + eqptBoardType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A string representing the board for which the profile is applicable. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptProfileApplicabilityEntry 1 } + + eqptDefaultProfile OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A flag indicating if this is the default profile for a specific + board type. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptProfileApplicabilityEntry 2 } + + -- ================================================================== + -- | STOP PROFILE APPLICABILITY TABLE | + -- ================================================================== + + eqptTestChainTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptTestChainEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table contains the test chain configuration indicating + which shelf is connected to the TAP_UP or whether an external + test head is connected to the TAP_UP. This table has one row + for each planned shelf. + + ALCATEL NOTE: + TABLESIZE: DEP as described above" + ::= { asamEquipmentMIB 7 } + + eqptTestChainEntry OBJECT-TYPE + SYNTAX EqptTestChainEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the eqptTestChainTable." + + INDEX { eqptHolderId } + ::= { eqptTestChainTable 1 } + + EqptTestChainEntry ::= SEQUENCE { + eqptTestChainShelfToTapUp INTEGER, + eqptTestChainExtTestHeadToTapUp INTEGER + } + + eqptTestChainShelfToTapUp OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A unique value to identify a shelf position which is connected + to the TAP_UP. The value '0' (default value) indicates that it + is not connected. This parameter is used if + eqptTestChainExtTestHeadToTapUp is set to '1' (i.e., 'no') and + is ignored if eqptTestChainExtTestHeadToTapUp is set to '2' + (i.e., 'yes'). + + ALCATEL NOTE: + ACCESS: NA USAGE: OPT PERSIST: YES INSRVMOD: YES + RANGE: DEP / 0 plus the range of eqptHolderId of the shelves. + DEFVALUE: 0 / this means that no shelf is configured to be + connected to the TAP_UP. + UNITS: NA SPARSE: NO DESCR: NA + " + ::= { eqptTestChainEntry 1 } + + eqptTestChainExtTestHeadToTapUp OBJECT-TYPE + SYNTAX INTEGER { + no (1), + yes (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This parameter is used to indicate whether an external test + head is connected to the TAP_UP. + no (1): no external test head is connected to the TAP_UP. + yes (2): an external test head is connected to the TAP_UP. + + ALCATEL NOTE: + ACCESS: NA USAGE: OPT PERSIST: YES + INSRVMOD: YES RANGE: 1..2 DEFVALUE: 1 + UNITS: NA SPARSE: NO DESCR: NA + " + ::= { eqptTestChainEntry 2 } + + + eqptCustAlarmProfile OBJECT IDENTIFIER ::= { asamEquipmentMIB 8 } + + -- ================================================================== + -- | START CUSTOMIZABLE ALARMS PROFILE TABLE | + -- ================================================================== + + eqptCustAlarmProfileIndexNext OBJECT-TYPE + SYNTAX AsamNextProfileIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object contains an appropriate value to be used for + eqptCustAlarmProfileIndex + when creating entries in the associated profile table. + The value 0 indicates that no unassigned entries are + available. To obtain the profile index value for a new + entry, the manager issues a management protocol retrieval + operation to obtain the current value of this object. + After each retrieval, the agent should modify the value to + the next unassigned index." + ::= { eqptCustAlarmProfile 1 } + + + eqptCustAlarmProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptCustAlarmProfileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table representing the configurable attributes of the customizable + alarms : a description, and the corresponding Alarm Outputs to be + activated when this alarm occurs. + + This table has a row for each external alarms profile. It offers data + for a maximum of 5 external alarms. Alarms that are not defined for + a particular profile, need to contain default values in the fields + corresponding to that alarm number. Independent of the alarm number, + the name of the profile is also present, as well as the row status. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= { eqptCustAlarmProfile 2} + + eqptCustAlarmProfileEntry OBJECT-TYPE + SYNTAX EqptCustAlarmProfileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the eqptCustAlarmProfileTable. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { eqptCustAlarmProfileIndex } + ::= { eqptCustAlarmProfileTable 1 } + + EqptCustAlarmProfileEntry ::= SEQUENCE { + eqptCustAlarmProfileIndex AsamProfileIndex, + eqptCustAlarmProfileName AsamProfileName, + eqptCustAlarmProfileUsedStatus AsamProfileRefCount, + eqptCustAlarmProfileRowStatus RowStatus, + eqptCustAlarmProfileMnemonic1 DisplayString, + eqptCustAlarmProfileDescription1 DisplayString, + eqptCustAlarmProfileVisibleOutput1 EqptCustAlarmProfileOutputType, + eqptCustAlarmProfileAudibleOutput1 EqptCustAlarmProfileOutputType, + eqptCustAlarmProfilePolarity1 EqptCustAlarmProfilePolarityType, + eqptCustAlarmProfileSeverity1 AsamAlarmSeverityType, + eqptCustAlarmProfileMnemonic2 DisplayString, + eqptCustAlarmProfileDescription2 DisplayString, + eqptCustAlarmProfileVisibleOutput2 EqptCustAlarmProfileOutputType, + eqptCustAlarmProfileAudibleOutput2 EqptCustAlarmProfileOutputType, + eqptCustAlarmProfilePolarity2 EqptCustAlarmProfilePolarityType, + eqptCustAlarmProfileSeverity2 AsamAlarmSeverityType, + eqptCustAlarmProfileMnemonic3 DisplayString, + eqptCustAlarmProfileDescription3 DisplayString, + eqptCustAlarmProfileVisibleOutput3 EqptCustAlarmProfileOutputType, + eqptCustAlarmProfileAudibleOutput3 EqptCustAlarmProfileOutputType, + eqptCustAlarmProfilePolarity3 EqptCustAlarmProfilePolarityType, + eqptCustAlarmProfileSeverity3 AsamAlarmSeverityType, + eqptCustAlarmProfileMnemonic4 DisplayString, + eqptCustAlarmProfileDescription4 DisplayString, + eqptCustAlarmProfileVisibleOutput4 EqptCustAlarmProfileOutputType, + eqptCustAlarmProfileAudibleOutput4 EqptCustAlarmProfileOutputType, + eqptCustAlarmProfilePolarity4 EqptCustAlarmProfilePolarityType, + eqptCustAlarmProfileSeverity4 AsamAlarmSeverityType, + eqptCustAlarmProfileMnemonic5 DisplayString, + eqptCustAlarmProfileDescription5 DisplayString, + eqptCustAlarmProfileVisibleOutput5 EqptCustAlarmProfileOutputType, + eqptCustAlarmProfileAudibleOutput5 EqptCustAlarmProfileOutputType, + eqptCustAlarmProfilePolarity5 EqptCustAlarmProfilePolarityType, + eqptCustAlarmProfileSeverity5 AsamAlarmSeverityType + } + + eqptCustAlarmProfileIndex OBJECT-TYPE + SYNTAX AsamProfileIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Customizale Alarms Profile Index. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..20 + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { eqptCustAlarmProfileEntry 1 } + + eqptCustAlarmProfileName OBJECT-TYPE + SYNTAX AsamProfileName + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A textual name uniquely identifying this profile. + + Maximum length is 32, allowed characters A-Z, a-z, 0-9, '-'. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { eqptCustAlarmProfileEntry 2 } + + eqptCustAlarmProfileUsedStatus OBJECT-TYPE + SYNTAX AsamProfileRefCount + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the number of entities using this profile. If the + reference count is greater than 0, then this profile is 'in use', + and may NOT be deleted. If the value is 0, then this profile is + 'not in use', and can be deleted. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { eqptCustAlarmProfileEntry 3 } + + eqptCustAlarmProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Entries in the eqptCustAlarmProfileTable can only be created at + once, by specifying eqptCustAlarmProfileRowStatus=createAndGo(4). + If all values are valid then the entry is made active(1). If the + object is set to destroy(6), the entry is deleted. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: active(1) UNITS: -" + ::= { eqptCustAlarmProfileEntry 4 } + + eqptCustAlarmProfileMnemonic1 OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The mnemonic of the customizable alarm, for given Profile Index, + for external alarm number 1. + + Maximum length is 16, allowed characters A-Z. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 'UNDEF' UNITS: -" + ::= { eqptCustAlarmProfileEntry 5 } + + eqptCustAlarmProfileDescription1 OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..40)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The description of the customizable alarm, for given + Profile Index, for external alarm number 1. + + Maximum length is 40. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 'Undefined' UNITS: -" + ::= { eqptCustAlarmProfileEntry 6 } + + eqptCustAlarmProfileVisibleOutput1 OBJECT-TYPE + SYNTAX EqptCustAlarmProfileOutputType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows whether or not to trigger the visible alarm output, + for given Profile Index, for external alarm number 1. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: notTriggered(2) UNITS: -" + ::= { eqptCustAlarmProfileEntry 7 } + + eqptCustAlarmProfileAudibleOutput1 OBJECT-TYPE + SYNTAX EqptCustAlarmProfileOutputType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows whether or not to trigger the audible alarm output, + for given Profile Index, for external alarm number 1. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: notTriggered(2) UNITS: -" + ::= { eqptCustAlarmProfileEntry 8 } + + eqptCustAlarmProfilePolarity1 OBJECT-TYPE + SYNTAX EqptCustAlarmProfilePolarityType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows whether the alarm polarity is normal or inversed, + for given Profile Index, for external alarm number 1. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: normal(2) UNITS: -" + ::= { eqptCustAlarmProfileEntry 9 } + + eqptCustAlarmProfileSeverity1 OBJECT-TYPE + SYNTAX AsamAlarmSeverityType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows the severity of the alarm, + for given Profile Index, for external alarm number 1. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: 1-5 + PERSIST: YES DEFVALUE: major(4) UNITS: -" + ::= { eqptCustAlarmProfileEntry 10 } + + eqptCustAlarmProfileMnemonic2 OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The mnemonic of the customizable alarm, for given Profile Index, + for external alarm number 2. + + Maximum length is 16, allowed characters A-Z. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 'UNDEF' UNITS: -" + ::= { eqptCustAlarmProfileEntry 11 } + + eqptCustAlarmProfileDescription2 OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..40)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The description of the customizable alarm, for given + Profile Index, for external alarm number 2. + + Maximum length is 40. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 'Undefined' UNITS: -" + ::= { eqptCustAlarmProfileEntry 12 } + + eqptCustAlarmProfileVisibleOutput2 OBJECT-TYPE + SYNTAX EqptCustAlarmProfileOutputType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows whether or not to trigger the visible alarm output, + for given Profile Index, for external alarm number 2. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: notTriggered(2) UNITS: -" + ::= { eqptCustAlarmProfileEntry 13 } + + eqptCustAlarmProfileAudibleOutput2 OBJECT-TYPE + SYNTAX EqptCustAlarmProfileOutputType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows whether or not to trigger the audible alarm output, + for given Profile Index, for external alarm number 2. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: notTriggered(2) UNITS: -" + ::= { eqptCustAlarmProfileEntry 14 } + + eqptCustAlarmProfilePolarity2 OBJECT-TYPE + SYNTAX EqptCustAlarmProfilePolarityType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows whether the alarm polarity is normal or inversed, + for given Profile Index, for external alarm number 2. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: normal(2), UNITS: -" + ::= { eqptCustAlarmProfileEntry 15 } + + eqptCustAlarmProfileSeverity2 OBJECT-TYPE + SYNTAX AsamAlarmSeverityType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows the severity of the alarm, + for given Profile Index, for external alarm number 2. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: 1-5 + PERSIST: YES DEFVALUE: major(4) UNITS: -" + ::= { eqptCustAlarmProfileEntry 16 } + + eqptCustAlarmProfileMnemonic3 OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The mnemonic of the customizable alarm, for given Profile Index, + for external alarm number 3. + + Maximum length is 16, allowed characters A-Z. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 'UNDEF' UNITS: -" + ::= { eqptCustAlarmProfileEntry 17 } + + eqptCustAlarmProfileDescription3 OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..40)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The description of the customizable alarm, for given + Profile Index, for external alarm number 3. + + Maximum length is 40. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 'Undefined' UNITS: -" + ::= { eqptCustAlarmProfileEntry 18 } + + eqptCustAlarmProfileVisibleOutput3 OBJECT-TYPE + SYNTAX EqptCustAlarmProfileOutputType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows whether or not to trigger the visible alarm output, + for given Profile Index, for external alarm number 3. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: notTriggered(2) UNITS: -" + ::= { eqptCustAlarmProfileEntry 19 } + + eqptCustAlarmProfileAudibleOutput3 OBJECT-TYPE + SYNTAX EqptCustAlarmProfileOutputType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows whether or not to trigger the audible alarm output, + for given Profile Index, for external alarm number 3. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: notTriggered(2) UNITS: -" + ::= { eqptCustAlarmProfileEntry 20 } + + eqptCustAlarmProfilePolarity3 OBJECT-TYPE + SYNTAX EqptCustAlarmProfilePolarityType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows whether the alarm polarity is normal or inversed, + for given Profile Index, for external alarm number 3. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: normal(2) UNITS: -" + ::= { eqptCustAlarmProfileEntry 21 } + + eqptCustAlarmProfileSeverity3 OBJECT-TYPE + SYNTAX AsamAlarmSeverityType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows the severity of the alarm, + for given Profile Index, for external alarm number 3. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: 1-5 + PERSIST: YES DEFVALUE: major(4) UNITS: -" + ::= { eqptCustAlarmProfileEntry 22 } + + eqptCustAlarmProfileMnemonic4 OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The mnemonic of the customizable alarm, for given Profile Index, + for external alarm number 4. + + Maximum length is 16, allowed characters A-Z. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 'UNDEF' UNITS: -" + ::= { eqptCustAlarmProfileEntry 23 } + + eqptCustAlarmProfileDescription4 OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..40)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The description of the customizable alarm, for given + Profile Index, for external alarm number 4. + + Maximum length is 40. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 'Undefined' UNITS: -" + ::= { eqptCustAlarmProfileEntry 24 } + + eqptCustAlarmProfileVisibleOutput4 OBJECT-TYPE + SYNTAX EqptCustAlarmProfileOutputType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows whether or not to trigger the visible alarm output, + for given Profile Index, for external alarm number 4. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: notTriggered(2) UNITS: -" + ::= { eqptCustAlarmProfileEntry 25 } + + eqptCustAlarmProfileAudibleOutput4 OBJECT-TYPE + SYNTAX EqptCustAlarmProfileOutputType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows whether or not to trigger the audible alarm output, + for given Profile Index, for external alarm number 4. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: notTriggered(2) UNITS: -" + ::= { eqptCustAlarmProfileEntry 26 } + + eqptCustAlarmProfilePolarity4 OBJECT-TYPE + SYNTAX EqptCustAlarmProfilePolarityType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows whether the alarm polarity is normal or inversed, + for given Profile Index, for external alarm number 4. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: normal(2) UNITS: -" + ::= { eqptCustAlarmProfileEntry 27 } + + eqptCustAlarmProfileSeverity4 OBJECT-TYPE + SYNTAX AsamAlarmSeverityType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows the severity of the alarm, + for given Profile Index, for external alarm number 4. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: 1-5 + PERSIST: YES DEFVALUE: major(4) UNITS: -" + ::= { eqptCustAlarmProfileEntry 28 } + + eqptCustAlarmProfileMnemonic5 OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The mnemonic of the customizable alarm, for given Profile Index, + for external alarm number 5. + + Maximum length is 16, allowed characters A-Z. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 'UNDEF' UNITS: -" + ::= { eqptCustAlarmProfileEntry 29 } + + eqptCustAlarmProfileDescription5 OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..40)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The description of the customizable alarm, for given + Profile Index, for external alarm number 5. + + Maximum length is 40. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 'Undefined' UNITS: -" + ::= { eqptCustAlarmProfileEntry 30 } + + eqptCustAlarmProfileVisibleOutput5 OBJECT-TYPE + SYNTAX EqptCustAlarmProfileOutputType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows whether or not to trigger the visible alarm output, + for given Profile Index, for external alarm number 5. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: notTriggered(2) UNITS: -" + ::= { eqptCustAlarmProfileEntry 31 } + + eqptCustAlarmProfileAudibleOutput5 OBJECT-TYPE + SYNTAX EqptCustAlarmProfileOutputType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows whether or not to trigger the audible alarm output, + for given Profile Index, for external alarm number 5. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: notTriggered(2) UNITS: -" + ::= { eqptCustAlarmProfileEntry 32 } + + eqptCustAlarmProfilePolarity5 OBJECT-TYPE + SYNTAX EqptCustAlarmProfilePolarityType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows whether the alarm polarity is normal or inversed, + for given Profile Index, for external alarm number 5. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: normal(2) UNITS: -" + ::= { eqptCustAlarmProfileEntry 33 } + + eqptCustAlarmProfileSeverity5 OBJECT-TYPE + SYNTAX AsamAlarmSeverityType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows the severity of the alarm, + for given Profile Index, for external alarm number 5. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: 1-5 + PERSIST: YES DEFVALUE: major(4) UNITS: -" + ::= { eqptCustAlarmProfileEntry 34 } + + -- ================================================================== + -- | STOP CUSTOMIZABLE ALARMS PROFILE TABLE | + -- ================================================================== + -- ================================================================== + -- | START CUSTOMIZABLE ALARMS PROFILE MAPPING TABLE | + -- ================================================================== + + eqptCustAlarmProfileMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptCustAlarmProfileMappingEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table listing the profile name to profile Index + Mapping." + ::= { eqptCustAlarmProfile 3} + + eqptCustAlarmProfileMappingEntry OBJECT-TYPE + SYNTAX EqptCustAlarmProfileMappingEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry (conceptual row) representing the Customizable Alarm Profile + Name to Index mapping. The system automatically creates an entry in + this table for each corresponding entry (custAlarm-profile) created + in the eqptCustAlarmProfileTable. Similarly, when a profile is + deleted, the corresponding entry in this table is also automatically + deleted by the system." + INDEX {eqptCustAlarmProfileMappingName } + ::= {eqptCustAlarmProfileMappingTable 1} + + EqptCustAlarmProfileMappingEntry ::= SEQUENCE { + eqptCustAlarmProfileMappingName AsamProfileName, + eqptCustAlarmProfileMappingIndex AsamProfileIndex + } + + eqptCustAlarmProfileMappingName OBJECT-TYPE + SYNTAX AsamProfileName + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A textual name uniquely identifying this profile. + This name has to be unique within the assigned scope. + + Maximum length is 32, allowed characters A-Z, a-z, 0-9, '-'. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { eqptCustAlarmProfileMappingEntry 1 } + + eqptCustAlarmProfileMappingIndex OBJECT-TYPE + SYNTAX AsamProfileIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Customizale Alarms Profile Index. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..20 + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { eqptCustAlarmProfileMappingEntry 2 } + + -- ================================================================== + -- | STOP CUSTOMIZABLE ALARMS PROFILE MAPPING TABLE | + -- ================================================================== + -- ================================================================== + -- | START MTA FIELD | + -- ================================================================== + + eqptMtaTest OBJECT IDENTIFIER ::= { asamEquipmentMIB 9 } + eqptMtaTestHeadType OBJECT-TYPE + SYNTAX INTEGER { + four-wire(1), + two-wire(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "setting the MTA test head type, four-wire mode or two-wire mode. + This object should be consistent with external test head equipment, + MTA subsystem will operate different relays based on this object. + MTA commands will have differentiation between these two mode. + + ALCATEL NOTE: + ACCESS: NA USAGE: OPT PERSIST: YES + INSRVMOD: YES RANGE: 1..2 DEFVALUE: 1 + UNITS: NA SPARSE: NO DESCR: NA" + ::= { eqptMtaTest 1 } + + -- ================================================================== + -- | STOP MTA FIELD | + -- ================================================================== + -- ================================================================== + -- | START BOARD THERMAL SENSOR TABLE | + -- ================================================================== + eqptBoardThermalSensorTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptBoardThermalSensorEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table representing the actual value and thresholds of Thermal Sensor(s) on boards. + One entry corresponds to each sensor on board. + The entries are presented only when the board is plugged in, operationally up, has thermal sensors on it, and when operator put a read request for it. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= { asamEquipmentMIB 10 } + + eqptBoardThermalSensorEntry OBJECT-TYPE + SYNTAX EqptBoardThermalSensorEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry of the equipment thermal sensor table on boards + + ALCATEL NOTE: + SUPPORT: YES" + INDEX {eqptSlotId, eqptBoardThermalSensorId} + ::= {eqptBoardThermalSensorTable 1} + + EqptBoardThermalSensorEntry ::= SEQUENCE{ + eqptBoardThermalSensorId INTEGER, + eqptBoardThermalSensorActualTemperature INTEGER, + eqptBoardThermalSensorTcaThresholdLow INTEGER, + eqptBoardThermalSensorTcaThresholdHigh INTEGER, + eqptBoardThermalSensorShutdownThresholdLow INTEGER, + eqptBoardThermalSensorShutdownThresholdHigh INTEGER + } + + eqptBoardThermalSensorId OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index of thermal sensors on board. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..15 + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptBoardThermalSensorEntry 1} + + eqptBoardThermalSensorActualTemperature OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Actual Temperature value read from thermal sensor on board. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: -40..150 + PERSIST: NO DEFVALUE: NA UNITS: degree Celsius" + ::={ eqptBoardThermalSensorEntry 2} + + eqptBoardThermalSensorTcaThresholdLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Low Tca threshold of thermal sensor on Board + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: NA + PERSIST: NO DEFVALUE: NA UNITS: degree Celsius" + ::= { eqptBoardThermalSensorEntry 3} + + eqptBoardThermalSensorTcaThresholdHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "High Tca threshold of thermal sensor on Board + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: NA + PERSIST: NO DEFVALUE: NA UNITS: degree Celsius" + ::={ eqptBoardThermalSensorEntry 4} + + eqptBoardThermalSensorShutdownThresholdLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Low Shutdown threshold of thermal sensor on Board + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: NA + PERSIST: NO DEFVALUE: NA UNITS: degree Celsius" + ::={ eqptBoardThermalSensorEntry 5} + + eqptBoardThermalSensorShutdownThresholdHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "High Shutdown threshold of thermal sensor on Board + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: NA + PERSIST: NO DEFVALUE: NA UNITS: degree Celsius" + ::={ eqptBoardThermalSensorEntry 6} + -- ================================================================== + -- | STOP BOARD THERMAL SENSOR TABLE | + -- ================================================================== + -- ================================================================== + -- | START PORTMAPPING TABLE | + -- ================================================================== + + + eqptPortMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptPortMappingEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Equipment PortMapping table, showing the mapping between logical ports + and physical ports (faceplate numbering). + + This table contains one row per logical port on the xHUB. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= { asamEquipmentMIB 13 } + + eqptPortMappingEntry OBJECT-TYPE + SYNTAX EqptPortMappingEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry of the equipment PortMapping table. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { eqptPortMappingLogPortNbr } + ::= { eqptPortMappingTable 1 } + + + EqptPortMappingEntry ::= SEQUENCE { + eqptPortMappingLogPortNbr EqptPortMappingIndex, + eqptPortMappingLogPortType INTEGER, + eqptPortMappingPhyPortSlot EqptSlotIndex, + eqptPortMappingPhyPortType INTEGER, + eqptPortMappingPhyPortNbr INTEGER, + eqptPortMappingLSMSlot EqptSlotIndex, + eqptPortMappingChanges Counter + } + + eqptPortMappingLogPortNbr OBJECT-TYPE + SYNTAX EqptPortMappingIndex + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Index in equipment PortMapping Table: corresponds to the logical + port id on the xHUB. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptPortMappingEntry 1 } + + eqptPortMappingLogPortType OBJECT-TYPE + SYNTAX INTEGER { + uplink (1), -- + downlink (2), -- + hostlink (3), -- + internal (4) -- + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The logical port type corresponds to the link classification. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..4 + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptPortMappingEntry 2 } + + eqptPortMappingPhyPortSlot OBJECT-TYPE + SYNTAX EqptSlotIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The equipment slot index of the physical port. + This slot will point to either a NT or NTIO slot position. + + This field is not applicable for hostlinks or internal, in which case it gets + the value 0xFFFF + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: -" + ::= { eqptPortMappingEntry 3 } + + eqptPortMappingPhyPortType OBJECT-TYPE + SYNTAX INTEGER { + not-applicable(1), + sfp(2), + xfp(3), + vp(5), + eth(10), + mcast(11), + ai(12), + ieee(13), + cfp(14) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The physcial port type. + + This field is not applicable for hostlinks. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..3,5,10,11,12,13,14 + PERSIST: NO DEFVALUE: 0 UNITS: -" + ::= { eqptPortMappingEntry 4 } + + eqptPortMappingPhyPortNbr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The pysical port number, which corresponds to the faceplate number + of the sfp/xfp port. + + This field is not applicable for hostlinks or internal, in which case it gets + the value 0xFF. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: -" + ::= { eqptPortMappingEntry 5 } + + eqptPortMappingLSMSlot OBJECT-TYPE + SYNTAX EqptSlotIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The equipment slot index of the corresponding LSM slot. + + This field is only applicable for hostlinks, and downlinks to which + a remote LSM slot is assigned. In other cases it gets the value + 0xFFFF. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: -" + ::= { eqptPortMappingEntry 6 } + + eqptPortMappingChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter represents the number of PortMapping configuration changes per row. It is a wraparound counter between 0 and MAX. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0-MAX + PERSIST: NO DEFVALUE: 0 UNITS: -" + ::= { eqptPortMappingEntry 7} + + eqptPortMappingGlobalChangeCounter OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter represents the number of global PortMapping configuration changes. It is a wraparound counter between 0 and MAX. + SUPPORT: YES INSRVMOD: NA RANGE: 0-MAX + PERSIST: NO DEFVALUE: 0 UNITS: -" + ::= { asamEquipmentMIB 14 } + + -- ================================================================== + -- | STOP PORTMAPPING TABLE | + -- ================================================================== + -- ================================================================== + -- | START ANY-TO-ANY PORTPROTECTION TABLE | + -- ================================================================== + + eqptPortProtectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptPortProtectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table holds the port protection groups" + ::= { asamEquipmentMIB 15 } + + eqptPortProtectionEntry OBJECT-TYPE + SYNTAX EqptPortProtectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This entry represents a protection group which consists of two + ports. These two ports can be on the same LT board, or on + different LT's." + INDEX { eqptPortProtectionPortId } + ::= { eqptPortProtectionTable 1 } + + EqptPortProtectionEntry ::= SEQUENCE { + eqptPortProtectionPortId InterfaceIndex, + eqptPortProtectionRowStatus RowStatus, + eqptPortProtectionPairedPortId InterfaceIndex, + eqptPortProtectionPortStatus INTEGER, + eqptPortProtectionPairedPortStatus INTEGER, + eqptPortProtectionSwitchCommand InterfaceIndex, + eqptPortProtectionLastSwitchReason INTEGER, + eqptPortProtectionNumberOfSwitchovers INTEGER + } + + eqptPortProtectionPortId OBJECT-TYPE + SYNTAX InterfaceIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Each row is indexed by the IfIndex of the + primary port of the protection group, the one which + is protected. + Only PON ports can be selected." + ::= { eqptPortProtectionEntry 1 } + + eqptPortProtectionRowStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION + "All rows instantiated using 'create-and-go' to + mate 2 ports in a protection group. Set to 'destroy' to + eliminate the protection group. + + RULE 1 - Cannot create a protection group on an LT card + that doesn't support any-to-any redundancy. + + RULE 2 - Cannot mate two ports in a protection group if + the paired port has already one or more + interface(s) defined on top of the physical link + interface. + + RULE 3 - Cannot delete a protection group if paired + port is Admin UP." + ::= { eqptPortProtectionEntry 2 } + + eqptPortProtectionPairedPortId OBJECT-TYPE + SYNTAX InterfaceIndex + ACCESS read-write + STATUS mandatory + DESCRIPTION + " This attribute represents the IfIndex of the paired + port. Only PON ports can be selected. + + Must satisfy the following VALIDATIONs (otherwise OLT + should reject): + 1) IfIndex must represent a real port. + 2) PON cannot have any provisioned (planned) ONTs. + 3) Cannot mate a PON with itself. + 4) Cannot mate with a PON that is already mated in a + protection scheme." + ::= { eqptPortProtectionEntry 3 } + + eqptPortProtectionPortStatus OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " This attribute represents the status of the primary port. + + Following DEFINITIONS apply: + Active - means the port is used for transmission. + Inactive - means the system is NOT using the port for + transmission. + Up - means the port is capable of being used for + transmission/reception. + Down - means the port is NOT capable of being used for + transmission/reception (this includes a port that is + ADMIN down as well as a port that is down due to an + operational fault). + + Enumerations are as follows: + + 1 = Active Up + 2 = Active Down + 3 = Inactive Up + 4 = Inactive Down" + ::= { eqptPortProtectionEntry 4 } + + eqptPortProtectionPairedPortStatus OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " This attribute represents the status of the paired + port. + + Following DEFINITIONS apply: + Active - means the port is used for transmission. + Inactive - means the system is NOT using the port for + transmission. + Up - means the port is capable of being used for + transmission/reception. + Down - means the port is NOT capable of being used for + transmission/reception (this includes a port that is + ADMIN down as well as a port that is down due to an + operational fault). + + Enumerations are as follows: + + 1 = Active Up + 2 = Active Down + 3 = Inactive Up + 4 = Inactive Down" + ::= { eqptPortProtectionEntry 5 } + + eqptPortProtectionSwitchCommand OBJECT-TYPE + SYNTAX InterfaceIndex + ACCESS write-only + STATUS mandatory + DESCRIPTION + " This attribute represents the IfIndex of the desired port + to switch over to. + + Must satisfy the following VALIDATIONs (otherwise OLT + should reject): + 1) IfIndex must represent a real port. + 2) IfIndex must be part of a protection group. + 3) IfIndex must be either the primary or the paired port + of the protection group on which the switchover is + triggered." + ::= { eqptPortProtectionEntry 6 } + + eqptPortProtectionLastSwitchReason OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " This attribute contains the reason for the last port + switchover (if any). + + 0 = No switch has occurred (since last LT startup). + 1 = Manual switch due to port Admin State change. + 2 = Manual switch due to usage of Switch command. + 3 = Automatic switch due to system determination. + 4 = Automatic switch due to LT failure." + ::= { eqptPortProtectionEntry 7 } + + eqptPortProtectionNumberOfSwitchovers OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " This attribute contains the number of switchovers since + last LT startup." + ::= { eqptPortProtectionEntry 8 } + + -- ================================================================== + -- | STOP ANY-TO-ANY PORTPROTECTION TABLE | + -- ================================================================== + -- ================================================================== + -- | START ANY-TO-ANY PORTPROTECTION LOOKUP TABLE | + -- ================================================================== + + eqptPortProtectionLookupTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptPortProtectionLookupEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table holds the lookup port protection groups" + ::= { asamEquipmentMIB 16 } + + eqptPortProtectionLookupEntry OBJECT-TYPE + SYNTAX EqptPortProtectionLookupEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This entry represents a lookup protection group which consists + of two ports. The key is either a primary or a paired port + in the eqptPortProtectionTable." + INDEX { eqptPortProtectionLookupPortId } + ::= { eqptPortProtectionLookupTable 1 } + + EqptPortProtectionLookupEntry ::= SEQUENCE { + eqptPortProtectionLookupPortId InterfaceIndex, + eqptPortProtectionLookupPrimaryPortId InterfaceIndex + } + + eqptPortProtectionLookupPortId OBJECT-TYPE + SYNTAX InterfaceIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Each row is indexed by the IfIndex of a port in a + protection group, either a primary or a paired port. + Only PON ports can be selected." + ::= { eqptPortProtectionLookupEntry 1 } + + + eqptPortProtectionLookupPrimaryPortId OBJECT-TYPE + SYNTAX InterfaceIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + " This attribute represents the IfIndex of the primary + port of the protection group to which the key port + belongs. + Only PON ports can be selected." + ::= { eqptPortProtectionLookupEntry 2 } + + + -- ================================================================== + -- | STOP ANY-TO-ANY PORTPROTECTION LOOKUP TABLE | + -- ================================================================== + -- ================================================================== + -- | START PLANNED RESOURCE TABLE | + -- ================================================================== + eqptBoardPlannedResourceTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptBoardPlannedResourceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table representing the actual values of configured hardware + resources on boards. + This table only displays entries for resources on the boards + that support this view. These are boards for which the relation + between HW resource consumption and system configuration is not + trivial. + If the board is not supporting this view, then no entries will + be displayed. The board does not physically need to be present + for displaying the resources. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= { asamEquipmentMIB 17 } + + eqptBoardPlannedResourceEntry OBJECT-TYPE + SYNTAX EqptBoardPlannedResourceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry of the equipment planned resource table + + ALCATEL NOTE: + SUPPORT: YES" + INDEX {eqptSlotId, eqptBoardPlannedResourceId} + ::= {eqptBoardPlannedResourceTable 1} + + EqptBoardPlannedResourceEntry ::= SEQUENCE{ + eqptBoardPlannedResourceId INTEGER, + eqptBoardPlannedResourceCurrentValue INTEGER, + eqptBoardPlannedResourceMaxValue INTEGER, + eqptBoardPlannedResourceDescription DisplayString + } + + eqptBoardPlannedResourceId OBJECT-TYPE + SYNTAX INTEGER + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Index of the planned resource for a board + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: NA + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptBoardPlannedResourceEntry 1} + + eqptBoardPlannedResourceCurrentValue OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The actual planned value for the resource + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: NA + PERSIST: NO DEFVALUE: NA UNITS: - " + ::={ eqptBoardPlannedResourceEntry 2} + + eqptBoardPlannedResourceMaxValue OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum value that the board supports for this resource. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: NA + PERSIST: NO DEFVALUE: NA UNITS: - " + ::={ eqptBoardPlannedResourceEntry 3} + + eqptBoardPlannedResourceDescription OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A string describing the planned resource for this board. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: NA + PERSIST: NO DEFVALUE: NA UNITS: - " + ::={ eqptBoardPlannedResourceEntry 4} + + -- ================================================================== + -- | STOP PLANNED RESOURCE TABLE | + -- ================================================================== + -- ================================================================== + -- | START POWER MANAGEMENT TABLE | + -- ================================================================== + +eqptPowerTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptPowerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Equipment power table, representing the power management objects per + system, rack or shelf. + This table contains one row for the system, rack or shelf that is + subject to power management. In other cases no entry is instantiated. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= { asamEquipmentMIB 18 } + + eqptPowerEntry OBJECT-TYPE + SYNTAX EqptPowerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry of the equipment power table. + An entry will be instantiated for a system/rack or shelf with active + power management functionality. + At the time of writing VSRM-A shelf (SX) and NGVR (MX) with a planned + RANI-B/RPNI-B comply to this requirement. + + ALCATEL NOTE: + SUPPORT: YES " + INDEX { eqptPowerId } + ::= { eqptPowerTable 1 } + + EqptPowerEntry ::= SEQUENCE { + eqptPowerId EqptHolderIndex, + eqptPowerAdminMode INTEGER, + eqptPowerOperMode INTEGER, + eqptPowerBatType INTEGER, + eqptPowerBatStartCapacity INTEGER, + eqptPowerBatPlannedLifetime INTEGER, + eqptPowerBatState INTEGER, + eqptPowerBatFailure INTEGER, + eqptPowerBatTemperature INTEGER, + eqptPowerBatActualCapacity INTEGER, + eqptPowerBatDefenseMode INTEGER, + eqptPowerBatDefenseThreshold INTEGER, + eqptPowerACState INTEGER, + eqptPowerACFailure INTEGER, + eqptPowerNDCaState INTEGER, + eqptPowerNDCaFailure INTEGER, + eqptPowerNDCbState INTEGER, + eqptPowerNDCbFailure INTEGER, + eqptPowerLDCaState INTEGER, + eqptPowerLDCaFailure INTEGER, + eqptPowerLDCbState INTEGER, + eqptPowerLDCbFailure INTEGER, + eqptPowerInVoltage INTEGER, + eqptPowerInCurrent INTEGER, + eqptPowerInConsumedPower INTEGER + } + + eqptPowerId OBJECT-TYPE + SYNTAX EqptHolderIndex + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Index in equipment Power Table. + Index gives the shelf identification. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptPowerEntry 1 } + + eqptPowerAdminMode OBJECT-TYPE + SYNTAX INTEGER + { + no-powermgnt (0), + ac (1), + ac-and-dc-local (2), + dc-network (3), + dc-network-and-dc-local (4), + dc-local (5) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The eqptPowerAdminMode shows the configured power mode. + This configured mode will be used to mask any failures detected + for non-supported modes. + Enumeration is as follows: + 0 = no powermanagement mode configured + 1 = AC -> failures on DC local and DC network suppressed + 2 = AC + DC local -> failures on DC network suppressed + 3 = DC network -> failures on AC or DC local suppressed + 4 = DC network + DC local -> failures on AC suppressed + 5 = DC local -> failures on DC network or AC suppressed + Configuration of the eqptPowerAdminMode is not mandatory and will + not impact the behavior of the power module. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 0 UNITS: - " + ::= { eqptPowerEntry 2} + + eqptPowerOperMode OBJECT-TYPE + SYNTAX INTEGER + { + no-powermgnt (0), + ac (1), + ac-and-dc-local (2), + dc-network (3), + dc-network-and-dc-local (4), + dc-local (5), + battery-fallback (6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The eqptPowerOperMode shows the power mode the NE is using at the + moment of reading. + The VSRM-A (SX) and NGVR (MX) using a power management enabled NTIO + (e.g. RANI-B or RPNI-B) will provide valid information for this + object. + Other systems without Power mode support get no-powermgnt (0). + Enumeration is as follows: + 0 = system without an active power management + 1 = AC + 2 = AC + DC local + 3 = DC network + 4 = DC network + DC local + 5 = DC local + 6 = Battery fallback, i.e. only battery provides power to the system. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: - " + ::= { eqptPowerEntry 3} + + eqptPowerBatType OBJECT-TYPE + SYNTAX INTEGER + { + not-configured (0), + agm-vrla-PbCa-battery (1), + agm-vrla-Pure-Pb-battery (2), + flooded-battery (3), + gel-battery (4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " + This object is used to configure the battery type. + This configuration only possible for planned powermanagement devices, + in this case a planned RANI-B or RPNI-B. Only values for supported + battery types are possible (e.g. in R51 only AGM/VRLA Lead Calcium + BATTERY (1) is supported for the RANI-B/RPNI-B) + The configured value is used to configure the power management driver. + The link between the configurable value and the battery type is: + 0 = no battery configured + 1 = AGM/VRLA Lead Calcium BATTERY + 2 = AGM/VRLA Pure Lead BATTERY + 3 = FLOODED BATTERY + 4 = GEL BATTERY + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 0 UNITS: - " + ::= { eqptPowerEntry 4} + + eqptPowerBatStartCapacity OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + " + The capacity (Ah) of the battery at the moment of installation. + The value of the capacity is in 1/100 Ah. + Instatiated when eqptPowerBatType is configured. + The configuration of this object is mandatory together with the + configuration of the eqptPowerBatType + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1000 .. 10000 + PERSIST: YES DEFVALUE: 1000 UNITS: 1/10O Ah " + ::= { eqptPowerEntry 5} + + eqptPowerBatPlannedLifetime OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + " + Planned lifetime of the installed battery in 1/10 year. + The planned lifetime, together with the start capacity, is used to + calculate the actual maximal capacity of the battery. + Instatiated when eqptPowerBatType is configured. + The configuration of this object is mandatory together with the + configuration of the eqptPowerBatType + + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0 .. 150 + PERSIST: YES DEFVALUE: 0 UNITS: 1/10 Year " + ::= { eqptPowerEntry 6} + + eqptPowerBatState OBJECT-TYPE + SYNTAX INTEGER + { + not-configured (0), + no-data (1), + charging (2), + charged (3), + discharging (4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + The battery state will provide a view on the state of the battery. + Possible states are: charging, charged and discharging. + This operational state has meaning for devices that have a configured + eqptPowerBatType. Other devices get a not-configured (0) value returned. + Enumeration is as follows: + 1 = no data available, e.g. battery configured, but not connected + 2 = charging + 3 = charged + 4 = discharging + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: - " + ::= { eqptPowerEntry 7} + + eqptPowerBatFailure OBJECT-TYPE + SYNTAX INTEGER + { + not-applicable (0), + voltage-good (1), + voltage-out-of-range (2), + over-voltage (3), + over-temperature (4), + battery-depleted (5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + The battery failure state will provide an view on the failure state of + the battery. + This failure state has meaning for devices that have a configured + eqptPowerBatType and eqptPowerBatState different from default or + no-data. Other devices get a not-applicable (0) value returned. + Specific ranges for the failure cases strongly depend on the battery type + used. The ranges will be detailed in the customer documentation. + Enumeration is as follows: + 0 = not applicable + 1 = voltage good + 2 = voltage out of range + 3 = over-voltage + 4 = over-temperature alarm on local temperature sensor + 5 = battery depleted + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: - " + ::= { eqptPowerEntry 8} + + eqptPowerBatTemperature OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Measured temperature of the battery in 1/10 Celcius + The value is only readable when the battery type (eqptPowerBatType) + is configured and the battery is installed and reachable. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: -1000 .. 1000 + PERSIST: NO DEFVALUE: 0 UNITS: 1/10 Celcius " + ::= { eqptPowerEntry 9} + + eqptPowerBatActualCapacity OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + The capacity (in % of a fully charged battery) of the battery. + The value is only readable when the battery type (eqptPowerBatType) + is configured and the battery is installed and reachable. + Default value of 0% is returned when the battery is not reachable. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0 - 100 + PERSIST: NO DEFVALUE: 0 UNITS: % " + ::= { eqptPowerEntry 10} + + eqptPowerBatDefenseMode OBJECT-TYPE + SYNTAX INTEGER + { + no-defense (0), + voice-priority (1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " + The battery defense modes offers the operator the possibility to + select the preferred power defense mode in case the system falls + back to the battery mode. The power defense mode is a way to + optimize the power consumption. In R5001 two options are possible. + In later releases additional defense modes will be introduced. + - no battery defense. In this mode the system will run normally, + offering regular service until the battery runs out and the + regular hw defenses are started (Dying Gasp) + - voice priority. In this mode when the system falls back to the + battery the regular service will be maintained until the battery + drains until 90% and will then give priority to the voice LT's by + powering down the DSL LT's. Voice service will be maintained until + the battery runs out and the regular hw defenses are started (Dying + Gasp). + This configuration only possible for planned powermanagement devices, + in this case a planned RANI-B or RPNI-B. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 0 UNITS: - " + ::= { eqptPowerEntry 11} + + eqptPowerBatDefenseThreshold OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + " + The threshold gives an indication of the remaining capacity of the + battery at the moment the defense defined in eqptPowerBatDefenseMode + should be started. The value is in %. In the default case the configured + defense mode is immediately activated. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0-100 + PERSIST: YES DEFVALUE: 80 UNITS: % " + ::= { eqptPowerEntry 12} + + + eqptPowerACState OBJECT-TYPE + SYNTAX INTEGER + { + no-powermgnt (0), + active (1), + active-failure (2), + failure (3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + The AC power state will provide an view on the state of the AC Power + supply. + The value is different from no-powermgnt (0) for devices with power + management functionality and AC input available. + Enumeration is as follows: + 0 = no-powermgnt + 1 = active + 2 = active-failure, i.e. in failure, but still providing power + 3 = failure + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: - " + ::= { eqptPowerEntry 13} + + eqptPowerACFailure OBJECT-TYPE + SYNTAX INTEGER + { + not-applicable (0), + voltage-good (1), + voltage-out-of-range (2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + The AC failure state will provide an view on the failure state of + the AC power supply. + This failure state has meaning when eqptPowerACstate different from + default. In other cases not-applicable (0) is returned. + Specific ranges for the failure cases strongly depend on the AC power + used. The ranges will be detailed in the customer documentation. + Enumeration is as follows: + 0 = not-applicable + 1 = voltage good + 2 = voltage out of range + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: - " + ::= { eqptPowerEntry 14} + + eqptPowerNDCaState OBJECT-TYPE + SYNTAX INTEGER + { + no-powermgnt (0), + active (1), + active-failure (2), + failure (3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + The NDCa (Network DC a) state will provide an view on the state of + the Network DC Power supply. + The value is different from no-powermgnt (0) for devices with power + management functionality and NDC a input available. + Enumeration is as follows: + 0 = no-powermgnt + 1 = active + 2 = active-failure, i.e. in failure, but still providing power + 3 = failure + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: - " + ::= { eqptPowerEntry 15} + + eqptPowerNDCaFailure OBJECT-TYPE + SYNTAX INTEGER + { + not-applicable (0), + voltage-good (1), + low-voltage(2), + under-voltage(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + The NDCa failure state will provide an view on the failure state of + the Network DC a power supply. + This failure state has meaning when eqptPowerNDCaState different from + default. In other cases not-applicable (0) is returned. + Specific ranges for the failure cases strongly depend on the DC power + used. The ranges will be detailed in the customer documentation. + Enumeration is as follows: + 0 = not-applicable + 1 = voltage-good + 2 = low-voltage + 3 = under-voltage + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: - " + ::= { eqptPowerEntry 16} + + eqptPowerNDCbState OBJECT-TYPE + SYNTAX INTEGER + { + no-powermgnt (0), + active (1), + active-failure (2), + failure (3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + The NDCb (Network DC a) state will provide an view on the state of + the Network DC b power supply. + The value is different from no-powermgnt (0) for devices with power + management functionality and NDC b input available. + Enumeration is as follows: + 0 = no-powermgnt + 1 = active + 2 = active-failure, i.e. in failure, but still providing power + 3 = failure + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: - " + ::= { eqptPowerEntry 17} + + eqptPowerNDCbFailure OBJECT-TYPE + SYNTAX INTEGER + { + not-applicable (0), + voltage-good (1), + low-voltage(2), + under-voltage(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + The NDCb failure state will provide an view on the failure state of + the Network DC b power supply. + This failure state has meaning when eqptPowerNDCbState different from + default. In other cases not-applicable (0) is returned. + Specific ranges for the failure cases strongly depend on the DC power + used. The ranges will be detailed in the customer documentation. + Enumeration is as follows: + 0 = not-applicable + 1 = voltage-good + 2 = low-voltage + 3 = under-voltage + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: - " + ::= { eqptPowerEntry 18} + + eqptPowerLDCaState OBJECT-TYPE + SYNTAX INTEGER + { + no-powermgnt (0), + active (1), + active-failure (2), + failure (3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + The LDCa power state will provide an view on the state of the local + DC a power supply. + The value is different from no-powermgnt (0) for devices with power + management functionality and LDC a input available. + Enumeration is as follows: + 0 = no-powermgnt + 1 = active + 2 = active-failure, i.e. in failure, but still providing power + 3 = failure + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: - " + ::= { eqptPowerEntry 19} + + eqptPowerLDCaFailure OBJECT-TYPE + SYNTAX INTEGER + { + not-applicable (0), + voltage-good (1), + voltage-out-of-range (2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + The LDCa failure state will provide an view on the failure state of + the local DC a power supply. + This failure state has meaning when eqptPowerLDCaState different from + default. In other cases not-applicable (0) is returned. + Enumeration is as follows: + 0 = not-applicable + 1 = voltage good + 2 = voltage out of range + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: - " + ::= { eqptPowerEntry 20} + + eqptPowerLDCbState OBJECT-TYPE + SYNTAX INTEGER + { + no-powermgnt (0), + active (1), + active-failure (2), + failure (3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + The LDCb power state will provide an view on the state of the local + DC b power suply. + The value is different from no-powermgnt (0) for devices with power + management functionality and LDC b input available. + Enumeration is as follows: + 0 = no-powermgnt + 1 = active + 2 = active-failure, i.e. in failure, but still providing power + 3 = failure + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: - " + ::= { eqptPowerEntry 21} + + eqptPowerLDCbFailure OBJECT-TYPE + SYNTAX INTEGER + { + not-applicable (0), + voltage-good (1), + voltage-out-of-range (2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + The LDCb failure state will provide an view on the failure state of + the local DC b power supply. + This failure state has meaning when eqptPowerLDCbState different from + default. In other cases not-applicable (0) is returned. + Enumeration is as follows: + 0 = not-applicable + 1 = voltage good + 2 = voltage out of range + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: 0 UNITS: - " + ::= { eqptPowerEntry 22} + + eqptPowerInVoltage OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Measured incoming voltage in 1/10 Volt + Only supported for devices that host an extended power management + function (e.g RANI-B and RPNI-B). + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0 .. 2650 + PERSIST: NO DEFVALUE: 0 UNITS: 1/10 Volt " + ::= { eqptPowerEntry 23} + + eqptPowerInCurrent OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Measured incoming current in 1/10 Ampere + Only supported for devices that host an extended power management + function (e.g RANI-B and RPNI-B). + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0 .. 60 + PERSIST: NO DEFVALUE: 0 UNITS: 1/10 Ampere " + ::= { eqptPowerEntry 24} + + eqptPowerInConsumedPower OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Calculated incoming consumed power in 1/10 Watt + Only supported for devices that host an extended power management + function (e.g RANI-B and RPNI-B). + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0 .. 6000 + PERSIST: NO DEFVALUE: 0 UNITS: 1/10 Watt " + ::= { eqptPowerEntry 25} + + -- ================================================================== + -- | STOP POWER MANAGEMENT OBJECTS | + -- ================================================================== + -- ================================================================== + -- | START POWER SUPPLY MANAGEMENT TABLE | + -- ================================================================== +eqptPowerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptPowerSupplyEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Equipment power table, representing the power suplly management objects + This table contains one row per power supply supported on the system. + In other cases no entry is instantiated. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= { asamEquipmentMIB 19 } + + eqptPowerSupplyEntry OBJECT-TYPE + SYNTAX EqptPowerSupplyEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry of the equipment power table. + An entry will be instantiated per power supply supported on the system. + + ALCATEL NOTE: + SUPPORT: YES " + INDEX { eqptPowerSupplyId } + ::= { eqptPowerSupplyTable 1 } + + EqptPowerSupplyEntry ::= SEQUENCE { + eqptPowerSupplyId EqptPowerSupplyIndex, + eqptPowerSupplyPartNumber OCTET STRING, + eqptPowerSupplyCleiCode OCTET STRING, + eqptPowerSupplySerNumber OCTET STRING, + eqptPowerSupplyVin INTEGER, + eqptPowerSupplyIin INTEGER, + eqptPowerSupplyVout INTEGER, + eqptPowerSupplyIout INTEGER, + eqptPowerSupplyTemperature INTEGER, + eqptPowerSupplyFaultVin INTEGER, + eqptPowerSupplyFaultVout INTEGER, + eqptPowerSupplyFaultIin INTEGER, + eqptPowerSupplyFaultIout INTEGER, + eqptPowerSupplyFaultTemperature INTEGER, + eqptPowerSupplyFaultCml INTEGER, + eqptPowerSupplyPresent INTEGER, + eqptPowerSupplyFaultDetected INTEGER + } + + eqptPowerSupplyId OBJECT-TYPE + SYNTAX EqptPowerSupplyIndex + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Index in equipment Power Supply Table. + This is a number representing the Nth power supply present in the system. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptPowerSupplyEntry 1} + + eqptPowerSupplyPartNumber OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(13)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Report the part number of the installed power supply + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerSupplyEntry 2} + + eqptPowerSupplyCleiCode OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(11)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Report the CLEI code of the installed power supply + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerSupplyEntry 3} + + eqptPowerSupplySerNumber OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(19)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Report the serial number of the installed power supply + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerSupplyEntry 4} + + eqptPowerSupplyVin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Report the incoming voltage arriving at the power supply in millivolt + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerSupplyEntry 5} + + eqptPowerSupplyIin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Report the incoming current arriving at the power supply in milliampere + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerSupplyEntry 6} + + eqptPowerSupplyVout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Report the output voltage provided by the power supply in millivolt + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerSupplyEntry 7} + + eqptPowerSupplyIout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Report the output current provided by the power supply in milliampere + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerSupplyEntry 8} + + eqptPowerSupplyTemperature OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Report the temperature of the power supply in millidegree + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerSupplyEntry 9} + + eqptPowerSupplyFaultVin OBJECT-TYPE + SYNTAX INTEGER + { + no-error (0), + input-overvoltage-fault (1), + input-overvoltage-warning (2), + input-undervoltage-warning (3), + input-undervoltage-fault (4), + input-ac-nok-fault (5), + input-ac-nok-warning (6), + unit-off-for-insufficient-input-voltage (7) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Report the fault or warning occurring for the input voltage + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerSupplyEntry 10} + + eqptPowerSupplyFaultVout OBJECT-TYPE + SYNTAX INTEGER + { + no-error (0), + output-overvoltage-fault (1), + output-overvoltage-warning (2), + output-undervoltage-warning (3), + output-undervoltage-fault (4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Report the fault or warning occurring for the output voltage + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerSupplyEntry 11} + + eqptPowerSupplyFaultIin OBJECT-TYPE + SYNTAX INTEGER + { + no-error (0), + input-overcurrent-fault (1), + input-overcurrent-warning (2), + input-overpower-warning (3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Report the fault or warning occurring for the input current + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerSupplyEntry 12} + + eqptPowerSupplyFaultIout OBJECT-TYPE + SYNTAX INTEGER + { + no-error (0), + output-overcurrent-fault (1), + output-overcurrent-warning (2), + output-undercurrent-warning (3), + output-undercurrent-fault (4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Report the fault or warning occurring for the output current + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerSupplyEntry 13} + + eqptPowerSupplyFaultTemperature OBJECT-TYPE + SYNTAX INTEGER + { + no-error (0), + overtemperature-fault (1), + overtemperature-warning (2), + undertemperature-warning (3), + undertemperature-fault (4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Report the fault or warning occurring for the tempertaure + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerSupplyEntry 14} + + eqptPowerSupplyFaultCml OBJECT-TYPE + SYNTAX INTEGER + { + no-error (0), + invalid-or-unsupported-command-received (1), + invalid-or-unsupported-data-received (2), + packet-error-check-failed (3), + memory-fault-detected (4), + processor-fault-detected (5), + other-communication-fault (6), + other-memory-or-logic-fault (7) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Report the fault or warning occurring for the tempertaure + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerSupplyEntry 15} + + eqptPowerSupplyPresent OBJECT-TYPE + SYNTAX INTEGER + { + yes (0), + no (1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Report if the power supply is present. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerSupplyEntry 16} + + eqptPowerSupplyFaultDetected OBJECT-TYPE + SYNTAX INTEGER + { + no (0), + yes (1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + Report if a fault has been detected. If yes, then + eqptPowerSupplyFaultVin, eqptPowerSupplyFaultVout, + eqptPowerSupplyFaultIin, eqptPowerSupplyFaultIOut, + eqptPowerSupplyFaultTemperature or eqptPowerSupplyFaultCml + is reporting an error. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerSupplyEntry 17} + -- ================================================================== + -- | STOP POWER SUPPLY MANAGEMENT TABLE | + -- ================================================================== + + eqptPowerSupplyRftc OBJECT IDENTIFIER ::= { asamEquipmentMIB 20 } + + -- ================================================================== + -- | START POWER SUPPLY RFT-C COMMON TABLE | + -- ================================================================== + + eqptPowerRftcTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptPowerRftcEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Equipment RFT-C power table, representing the RFT-C management objects + This table contains one row per RFT-C module supported on the system. + In other cases no entry is instantiated. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= { eqptPowerSupplyRftc 1 } + + eqptPowerRftcEntry OBJECT-TYPE + SYNTAX EqptPowerRftcEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry of the equipment RFT-C power table. + + ALCATEL NOTE: + SUPPORT: YES " + INDEX { eqptPowerRftcId } + ::= { eqptPowerRftcTable 1 } + + EqptPowerRftcEntry ::= SEQUENCE { + eqptPowerRftcId EqptHolderIndex, + eqptPowerRftcVCommon INTEGER, + eqptPowerRftcICommon INTEGER, + eqptPowerRftcTHotspot INTEGER, + eqptPowerRftcTAmbient INTEGER, + eqptPowerRftcSWVersion DisplayString, + eqptPowerRftcHWVersion DisplayString, + eqptPowerRftcHWRevision INTEGER, + eqptPowerRftcSerialnumber DisplayString, + eqptPowerRftcManufacturer DisplayString, + eqptPowerRftcLineCount INTEGER + } + + eqptPowerRftcId OBJECT-TYPE + SYNTAX EqptHolderIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index in equipment Power RFT-C Table. + This is a number represents the shelf containting the RFT-C module. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptPowerRftcEntry 1} + + eqptPowerRftcVCommon OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + " + Report the common voltage arriving at the power supply in millivolt + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: mV " + ::= { eqptPowerRftcEntry 2} + + eqptPowerRftcICommon OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + " + Report the common current arriving at the power supply in milliampere + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: mA " + ::= { eqptPowerRftcEntry 3} + + eqptPowerRftcTHotspot OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + " + Report the temperature of the power supplys hotspot in degrees celcius + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: °C" + ::= { eqptPowerRftcEntry 4} + + eqptPowerRftcTAmbient OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + " + Report the ambient temperature of the power supply in degrees celcius + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: °C" + ::= { eqptPowerRftcEntry 5} + + eqptPowerRftcSWVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS optional + DESCRIPTION + " + Report the software version of the RFT-C power supply + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerRftcEntry 6} + + eqptPowerRftcHWVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS optional + DESCRIPTION + " + Report the hardware version of the RFT-C power supply + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerRftcEntry 7} + + eqptPowerRftcHWRevision OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + " + Report hardware revision of the RFT-C power supply + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerRftcEntry 8} + + eqptPowerRftcSerialnumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS optional + DESCRIPTION + " + Report serial number of the RFT-C power supply + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerRftcEntry 9} + + eqptPowerRftcManufacturer OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS optional + DESCRIPTION + " + Report the manufacturer code of the RFT-C power supply + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerRftcEntry 10} + + eqptPowerRftcLineCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + " + Report the number of lines used on this RFT-C power supply + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: - " + ::= { eqptPowerRftcEntry 11} + + -- ================================================================== + -- | STOP POWER SUPPLY RFT-C COMMON TABLE | + -- ================================================================== + + -- ================================================================== + -- | START POWER SUPPLY RFT-C LINE TABLE | + -- ================================================================== + + eqptPowerRftcLineTable OBJECT-TYPE + SYNTAX SEQUENCE OF EqptPowerRftcLineEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + " + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP as described above" + ::= { eqptPowerSupplyRftc 2 } + + eqptPowerRftcLineEntry OBJECT-TYPE + SYNTAX EqptPowerRftcLineEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the eqptPowerRftcLineTable. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { eqptPowerRftcId, eqptPowerRftcLineId } + ::= { eqptPowerRftcLineTable 1 } + + EqptPowerRftcLineEntry ::= SEQUENCE { + eqptPowerRftcLineId INTEGER, + eqptPowerRftcLineStatus EqptPowerRftcLineStatus + } + + eqptPowerRftcLineId OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Report the line number + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptPowerRftcLineEntry 1 } + + eqptPowerRftcLineStatus OBJECT-TYPE + SYNTAX EqptPowerRftcLineStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Report the line status. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { eqptPowerRftcLineEntry 2 } + +END + diff --git a/mibs/nokia/ASAM-SYSTEM-MIB b/mibs/nokia/ASAM-SYSTEM-MIB new file mode 100644 index 0000000000..c6d37d9a3f --- /dev/null +++ b/mibs/nokia/ASAM-SYSTEM-MIB @@ -0,0 +1,3800 @@ +ASAM-SYSTEM-MIB DEFINITIONS ::= BEGIN + +-- ============================================================================= +-- This specification is published by Alcatel-Lucent under Non-Disclosure +-- Agreement(s) (NDA) with specific parties and has to be considered as +-- Confidential Information as defined in such NDA. +-- Alcatel-Lucent reserves the right to revise this document for any reason, +-- including but not limited to conformity with standards promulgated by +-- various agencies, utilisation of advances in the state of the technical +-- areas, or the reflection of changes in the design of any equipment, +-- techniques, or procedures described or referred to herein. +-- The product specifications and other technical or performance information +-- contained herein are subject to change without notice. +-- Updates of this document will be issued under the above NDA's. +-- Alcatel-Lucent makes no representation or warranty, expressed or implied, +-- with respect to the sufficiency, accuracy, or utility of any information or +-- opinion contained herein. Alcatel-Lucent expressly advises that any use of +-- for any purpose or reliance upon this technical reference is at the risk of +-- the user and that Alcatel-Lucent shall not be liable for any damage or +-- injury incurred by any person arising out of the sufficiency, accuracy, or +-- utility of any information or opinion contained herein. +-- This document is not to be construed as a suggestion to any manufacturer +-- to modify or change any of its products, nor does this document represent +-- any commitment by Alcatel-Lucent to sell or purchase any product. +-- Nothing contained herein shall be construed as conferring by implication, +-- estoppel, or otherwise any license or right under any patent, whether or +-- not the use of any information herein necessarily employs an invention of +-- any existing or later issued patent. +-- Alcatel-Lucent reserves the right not to offer any or all of these products +-- and to withdraw any or all of them at any future time. +-- Copyright (C) 2010, Alcatel-Lucent. All Rights Reserved. +-- ============================================================================= +-- +-- MODULE-IDENTITY +-- LAST-UPDATED "201609280000Z" +-- ORGANIZATION "Nokia" +-- CONTACT-INFO "email:asam.mibsupport@alcatel-lucent.com" +-- DESCRIPTION +-- "The ASAM System MIB contains objects from very diverse domains. +-- Basically, it groups a number of objects that did not find a place +-- in the other ASAM MIBs." +-- +-- REVISION "2017100600000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended +-- 105 DropStandbyLinkTraffic (ISR5602 ALU02391965: +-- [MX][Static LAG] Standby link is forwarding traffic +-- from network to LEMI - users) +-- +-- REVISION "201703100000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR57 ALU02331338, ALU02291323) +-- 90 LimitedTL1ForXGSPON +-- 91 IsAttAricentOntSupported +-- +-- REVISION "201703100000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR5102q ALU02209041) +-- 89 FwWatchdogFeatureForL2PlusLt +-- +-- REVISION "201703060000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR5601 ALU02097716 ALU02097756 ALU02337081) +-- 88 PmCdrCount5Min +-- +-- REVISION "201702230000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR56 ALU02097709 ALU02333221) +-- 87 IsSipSelfRingingSupported +-- +-- REVISION "201701030000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR5601 ALU02279440 ALU02331340) +-- 86 MigrationNDLTCtoNDLTKAllowed +-- +-- REVISION "201701030000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR57 ALU02130289 ISR5601 ALU02327994) +-- 85 DtagAlarmsForClockDefects +-- +-- REVISION "201701030000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR5601 ALU02183319 ALU02326253) +-- 84 EfmOamOrgSpecOlidSupport +-- +-- REVISION "201701030000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR5501EF ALU02307618) +-- 83 SupportNotTodOntClockSync +-- +-- REVISION "201612170000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR56 ALU02301192) +-- 81 IsMegacoLawfulInterceptSupported +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR56 ALU02283589) +-- 82 MiiUniversalBbServSupport +-- +-- REVISION "201611210000Z" +-- DESCRIPTION +-- Editor: James LUO +-- Changes: +-- Add new MIB:asamSystemMIB 62/63/64/65 (ISR56 ALU02270522). +-- +-- REVISION "201605240000Z" +-- DESCRIPTION +-- Editor: Erik Umans +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR56 ALU02287649) +-- 79 ArpRemoteIdCheckDisable +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR56 ALU02287529) +-- 80 VplusVectLowspectrumOnlySupported +-- +-- REVISION "201609280000Z" +-- DESCRIPTION +-- Editor: Giridhararoopan Gangatharan +-- Changes: +-- RCR ALU02171369: add new object asamRelayIdSyntax to asamSystemMIB +-- Also add new field asamAccessNtPortSyntax to asamAccessLoopIdSyntax + +-- REVISION "201608290000Z" +-- DESCRIPTION +-- Editor: Murugan Balraj +-- Changes: +-- updated licenseFeatureIndex for ERPS Feature. + +-- REVISION "201605240000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR56 ALU02188042) +-- 78 CablePairIdentificationEnhancement +-- +-- REVISION "201605240000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR5501 ALU02272081) +-- 77 ArpPollingAndSnooping +-- +-- REVISION "201605240000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR5202d ALU02268809) +-- 76 GponIsSupportingRunTimeSetMcPbit +-- +-- REVISION "201605240000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR5302d ALU02253541, ISR5501 ALU02254714) +-- 75 VvplsUnknownMcDrop +-- +-- REVISION "201605240000Z" +-- DESCRIPTION +-- Editor: Tom Van Peteghem +-- Changes: +-- FR ALU02212385 : asamTechSupportActionFile length is (0-255) in MIB, +-- but Node not accepting empty string +-- Changed range for +-- asamTechSupportSessionFile OBJECT-TYPE +-- asamTechSupportActionFile OBJECT-TYPE +-- from 0..255 to 1..255 +-- +-- REVISION "201605240000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- RCR ALU02195802 +-- Add new field asamSystemRFOverlayModule to enable or disable the RF Overlay Module +-- +-- REVISION "201605180000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR5501 ALU02163221) +-- 74 RemoveDhcpSessionIfPortAdminDown ALU02198126 +-- +-- REVISION "201605130000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended (ISR5501 ALU02163221) +-- 73 SupportRemoteShelfOnLtPort +-- +-- REVISION "201605020000Z" +-- DESCRIPTION +-- Editor: Dominic L A J S +-- Changes: +-- RCR ALU02074765 : Zero-touch provisioning - solution +-- Zero touch provision (ZTP) support for ISAM +-- Add new field for Zero-touch provisioning state +-- asamSystemZTPState +-- +-- REVISION "201603220000Z" +-- DESCRIPTION +-- Editor: Tom Van Peteghem +-- Changes: +-- RCR ALU02116497 : Operator triggered (on-demand) TS-file +-- generation for datapath troubleshooting - Legacy Fiber LTs +-- Add new fields for On Demand TechSupport file generation +-- asamTechSupportOnDemandFreeSessionId +-- asamTechSupportActionTable +-- asamTechSupportSessionTable +-- +-- REVISION "201602010000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended +-- 72 IsStunnelMipSupported +-- +-- REVISION "201602010000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended +-- 69 MigrationRDLTCtoRDLTDAllowed +-- 70 MigrationNDLTFtoNDLTJAllowed +-- 71 MigrationNDLTGtoNDLTKAllowed +-- +-- REVISION "201602010000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended as they were missing +-- 60 QosBandwidtProfileConfigOnUni +-- 61 QosQueuesAggrConfigSupport +-- 62 ModifyNbrOfPortsOnOntCardAllowed +-- 63 LtBootPriority +-- 64 NetworkItfMtuDefault +-- +-- REVISION "20151207100000Z" +-- DESCRIPTION +-- Editor: Patrick Codron +-- Changes: +-- TechSupport enable/disable + purge files +-- Reset Root Cause Analyzer - Part Ia ISR54 ALU02033829 +-- +-- REVISION "201601040000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended +-- 68 LldpSubtypeInterfaceName ISR5404 +-- +-- REVISION "201511080000Z" +-- DESCRIPTION +-- "Editor:Qiong K WU +-- Changes: +-- RCR: ALU02004304, Next generation NT (FANT-G) +-- Add two objects asamSystemScalingMode and asamSystemOperationalScalingMode " + +-- REVISION "201510160000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended +-- 67 ReducedPresenceIndicationTimeout ISR5403w +-- +-- REVISION "201512060000Z " +-- DESCRIPTION +-- Editor: LU Hao D +-- Changes: +-- Add licenseFeatureIndex for VULA in RCR ALU02023899 +-- +-- REVISION "20151027100000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended +-- 66 CpuFilterPortRange ISR54 ALU01999842 +-- +-- REVISION "201510160000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended +-- 64 NetworkItfMtuDefault ISR5202 +-- 65 RemovePasswordSpecialCharReq ISR53 +-- +-- REVISION "201516100000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended +-- 59 IsQosMarkerProfInnerPbitSupported ISR5201 ALU02073027 ALU02091526 ALU02091549 +-- +-- REVISION "201506100000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended +-- 58 DisableSfpAlcatelStringCheckPtpLt ISR5201 ALU02064549 ALU02089457 ALU02089457 +-- +-- REVISION "201506080000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended +-- 57 MaskParityError ISR5201 ALU01861706 +-- +-- REVISION "201506060000Z" +-- DESCRIPTION +-- Editor: Tom Batsele +-- Changes: +-- systemmac applicable for ISAM 7367 SX/ 7363 MX systems (Standalone Single-board Vectoring Box and NGVR) +-- ALU02074195 Show system MAC address on SX and MX +-- +-- REVISION "201504170000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended +-- 56 HguTr069Configuration ISR53 ALU02047957 ALU02069691 +-- +-- REVISION "201503130000Z " +-- DESCRIPTION +-- "Version: +-- Editor: Sebastien Deronne +-- Changes: RCR ALU01936333 : G.Fast support " +-- +-- REVISION "201502270000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtented +-- 55 UseSpecificHoldOffTime ISR5201 ALU01977350 ALU02053292 +-- +-- REVISION "201502200000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended +-- 53 SwPoliceNdMldProtoAt100Pps ISR52 ALU02026722 +-- 54 IsPPPOEDownstreamRelayEnabled ISR5201 ALU01894700 ALU01991513 +-- +-- REVISION "201501050000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- Add new bitpositions to asamSystemActivatedCDEExtended +-- 49 EponUniDimensionScaleup +-- 50 EontPerformanceMonitorOptimization +-- 51 EponQuickPonCutover +-- 52 PppDhcpTlv90Tlv91OptionAdd +-- +-- REVISION "201411050000Z " +-- DESCRIPTION +-- "Version: +-- Editor: Gerda Mertens +-- Changes: RCR ALU01985707 : Vplus support " +-- +-- REVISION "201410020000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Changes: +-- * ALU01884252 Extend the CDE bitmap > 32 entries +-- Added MIB Object asamSystemActivatedCDEExtented" +-- +-- REVISION "201405200000Z" +-- DESCRIPTION +-- "Editor: Liangming Cheng +-- Changes: +-- * RCR ALU01863065: Supporting of selection of voice image (H248/SIP) to run +-- "Add a new OID: asamSystemVoiceOswp" +-- +-- REVISION "201310100000Z" +-- DESCRIPTION +-- "Editor: Balaji Thirunavukkarasu +-- Changes: +-- * R5.0 RCR ALU01878634 +-- "Add asamSystemAutoSwitchAtmPtm and asamSystemAutoSwitchVdslStepUpDelay" +-- +-- REVISION "201310080000Z" +-- DESCRIPTION +-- "Editor: Zhigang B Long +-- Changes: +-- RCR ALU01887505 : NGVR support GPON uplink. +-- * Add two new object IDs: asamSystemUplinkMode and +-- asamSystemCurrentUplinkMode." +-- +-- REVISION "201309250000Z" +-- DESCRIPTION +-- "Editor: Sowrirajan Padmanabhan +-- Changes: +-- * Add extra licence key 38 +-- "Ethernet OAM Y1731 Performance monitoring functions" +-- +-- REVISION "201309180000Z" +-- DESCRIPTION +-- "Editor: Tom Van Peteghem +-- Changes: +-- * Add extra licence key 37 +-- "Vlan Translation Table Extended Usage" +-- +-- REVISION "201308010000Z" +-- DESCRIPTION +-- "Editor: Balaji Thirunavukkarasu +-- Changes: RCR ALU01878634 : Auto-switching between ATMoADSL and PTMoVDSL +-- * Add asamSystemAutoSwitchAtmPtm and asamSystemAutoSwitchVdslStepUpDelay +-- +-- REVISION "201303250000Z" +-- DESCRIPTION +-- Editor:Poongothai Kuppusamy Sampath +-- Changes: +-- * Modify description of 'NT MPLS' +-- to 'MPLS Advanced Resiliency' +-- +-- REVISION "201303010000Z" +-- DESCRIPTION +-- "Editor:Stefan Sturm +-- Changes: +-- * remove asamEthernetShapingRate since obsolete for all NT typess +-- +-- REVISION "201302140000Z" +-- DESCRIPTION +-- "Version:3FE21961EAAA_FDT1238.V4.5.1.10.1 +-- Editor:Karthik Chandra Bose S +-- Changes: +-- * Modify description of '802.1Q CCI enabled MEPS' +-- to 'Ethernet OAM Advanced Monitoring Functions' +-- +-- REVISION "201301170000Z" +-- DESCRIPTION +-- "Version: +-- Editor:Jianhong Fu +-- Changes: +-- * Add asamSystemCustomerId for ISR4.6 (RCR ALU01849954) +-- +-- REVISION "201209100000Z " +-- DESCRIPTION +-- "Version: +-- Editor: Luc Hordies +-- Changes: RCR ALU01802654 : Crosstalk cancellation from legacy lines into +-- G.vector lines in DS " +-- +-- REVISION "201208310000Z" +-- DESCRIPTION +-- "Version: +-- Editor:Lakshmi Eswaran +-- Changes: +-- * Add asamSystemALSState for ISR4.5 (ALU01809489) + +-- REVISION "201207180000Z" +-- DESCRIPTION +-- "Version: +-- Editor:Feifei Shang +-- Changes: +-- * Add timeZoneOffset(24) for ISR4.5 + +-- REVISION "201201270000Z" +-- DESCRIPTION +-- "Version:3EC15532AAAA_V4.4.0.0.2 +-- Editor:Gerrit Verdickt +-- Changes: +-- * Add systemMaxLtLinkSpeed fortygbps(40) +-- * Add licenseFeatureIndex for 40 Gbps enabled LT +-- +-- +-- REVISION "201111170000Z" +-- DESCRIPTION +-- "Version:3EC15532AAAA_V4.4.0.0.1 +-- Editor:Tom Batsele +-- Changes: +-- * Add 1 license counter for MPLS +-- +-- REVISION "201111090000Z" +-- DESCRIPTION +-- "Version:3EC15532AAAA_V4.4.0.0.0 +-- Editor:Rommy Volders +-- Changes: +-- * Add 1 license counter for 802.1Q CCI enabled MEPS +-- +-- REVISION "201104261200Z" +-- DESCRIPTION +-- "Version:3EC15532EAAA_FDT1170.V4.3.0.3.1 +-- Editor:Arulmurugan Velumani +-- Changes: +-- * Add new license counter for : Green DSL L2 mode +-- +-- REVISION "201101280000Z " +-- DESCRIPTION +-- "Version: 3EC15532AAAA_FDT1205.V4.3.0.2.1 +-- Editor: Zhang YI M +-- Changes: ALU00979025 Extend size of loop-id-syntax from 64 to 80" +-- +-- REVISION "201101140000Z " +-- DESCRIPTION +-- "Version: 3EC15532AAAA_V4.3.0.0.0 +-- Editor: Gerda Mertens +-- Changes: RCR ALU00123664 Licensing support for Vectoring on VDSL2" +-- +-- REVISION "201010220000Z " +-- DESCRIPTION +-- "Version: 3EC15532AAAA_V4.2.0.9.0 +-- Editor: Bozhi Zheng +-- Changes: RCR ALU00123702, comment the counter of license key shdsl-ctc" +-- +-- REVISION "201007290000Z " +-- DESCRIPTION +-- "Version: 3EC15532AAAA_V4.2.0.5.0 +-- Editor: Karel Meijfroidt +-- Changes: ALU00721710 Extend size of asamMibVersion object" +-- +-- REVISION "201005310000Z" +-- ORGANIZATION "Alcatel-Lucent" +-- DESCRIPTION +-- "Version: 3EC15532AAAA_V4.2.0.5.0 +-- Editor: Bart Libert +-- Changes: +-- * FR ALU00159851 +-- removed clock related elements that are now in the NRT_MIB +-- +-- REVISION "201005270000Z " +-- DESCRIPTION +-- "Version: 3EC15532AAAA_V4.2.0.0.1 +-- Editor: Luc Gijselink +-- Changes: Licensing support for Gxr (RAC) +-- ALU00159917" +-- +-- REVISION "201005310000Z" +-- ORGANIZATION "Alcatel-Lucent" +-- DESCRIPTION +-- "Version: 3EC15532AAAA_ V4.2.0.0.8 +-- Editor: Gang Zhu +-- Changes: +-- * Licensing support for IPv6 security on RCR ALU00123682 +-- +-- REVISION "201005310000Z" +-- ORGANIZATION "Alcatel-Lucent" +-- DESCRIPTION +-- "Version: 3EC15532AAAA_V4.2.0.0.8 +-- Editor: Gang Zhu +-- Changes: +-- * Licensing support for IPv6 security on RCR ALU00123682 +-- +-- REVISION "201004080000Z" +-- ORGANIZATION "Alcatel-Lucent" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V4.1.0.1.3 +-- Editor: Lieve Dierick +-- Changes: +-- * FR ALU00249381 +-- asamShutdownBitMap range value (1..4294967295) replaced by (0..4294967295)" +-- +-- REVISION "201002110000Z " +-- DESCRIPTION +-- "Version: 3EC15532AAAA_ V4.2.0.0.2 +-- Editor: Miranda De Bock +-- Changes: IR ANTmt: +-- - add 10Gbps and 20Gbps to asamSystemLicenseMgmtTable +-- - add tengbps and twentyGbps to systemMaxLtLinkSpeed +-- +-- REVISION "201001280000Z " +-- DESCRIPTION +-- "Version: 3EC15532AAAA_V4.2.0.0.1 +-- Editor: Karel Meijfroidt +-- Changes: License support for ARQ" +-- +-- REVISION "200911050000Z " +-- DESCRIPTION +-- "Version: 3EC15532AAAA_ V4.0.10.0.1 +-- Editor: Yihui Zhang +-- Changes: - Disable asamProtocolSyntaxConfigurationTable support, +-- all syntax string and port number method object become system level configuration. +-- New syntax string introduced for GPON LT. (BDFam52637)" + +-- +-- REVISION "200910270000Z " +-- DESCRIPTION +-- "Version: 3EC15532AAAA_V4.2.0.0.0 +-- Editor: Lieve Dierick +-- Changes: Licensing support for SRA on VDSL2 +-- ANTmt15167" +-- +-- REVISION "200909230000Z " +-- DESCRIPTION +-- "Version: 3EC15532AAAA_ V4.1.0.0.5 +-- Editor: Peter Van Mele +-- Changes: - Licensing support for SHSL cross-talk cancellation +-- ANTmt76246 +-- - Document how to see difference between ETSI and ANSI stream" +-- +-- REVISION "200908250000Z " +-- DESCRIPTION +-- "Version: 3EC15532AAAA_ V4.1.0.0.4 +-- Editor: Peter Van Mele +-- Changes: Licensing support for NT load balancing/redundancy +-- ANTmt72355" +-- +-- REVISION "200907150000Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V4.0.0.2.1 +-- Editor: Patrick Swinkels +-- Changes: +-- * RCR ANTmt37998 - Synchronisation - DTAG requirements +-- * RCR ANTmt52520 : Sync DTAG MIB impact drop in mainstream." +-- +-- REVISION "2009081350000Z " +-- DESCRIPTION +-- "Version: 3EC15532AAAA_ V4.1.0.0.6 +-- Editor: Sven Dhuyvetter +-- Changes: Management port on FD-REM +-- ANTmt62854 - R3.7.01 (ARCOR maintenance release) +-- ANTms55514 - R4.1 (general customer release). +-- +-- +-- REVISION "200907100000Z" -* July 10, 2009 +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V4.0.0.2.0 +-- Editor: Jean Samoise +-- Changes: +-- * IR ANTmt55931: +-- HighCap NT-LT auto-neg: add systemMaxLtLinkSpeed." +-- +-- REVISION "200906030000Z" -* June 3, 2009 +-- DESCRIPTION "Version: 3EC37309EAAA_V4.0.0.3.0 +-- Editor: Karel Meijfroidt +-- * ANTmt55877: Rebase latest version of the MIB to R4.0.02." +-- +-- REVISION "200904070000Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V4.0.0.2.0 +-- Editor: Karel Meijfroidt +-- Changes: +-- * IR ANTmt52100 : +-- Merged R3.7.10 version of the MIB to R4.0.02. This includes +-- the changes done by Lucien Marcotte for SYNCE feature (Basic +-- and Enhanced Clock Mgmt objects)." +-- +-- +-- REVISION "200904150000Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V4.1.0.1.0 +-- Editor: Diankun Zhang +-- Changes: +-- * RCR ANTms03717 : +-- Update description of item operateStatus of cpuLoadEntry : +-- finished(4) should be idle(4)." +-- +-- REVISION "200902200000Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V4.0.0.1.1 +-- Editor: Karel Meijfroidt +-- Changes: +-- * FR ANTmt39491 : +-- Change description of some of the license counters." +-- +-- REVISION "200807300000Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V3.7.1.1.0 +-- Editor: Sven Dhuyvetter +-- Changes: +-- * RCR ANTms79645 : Network port addressing change +-- introduce new port addressing mode: sequential/slotBased." +-- +-- REVISION "200811210000Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V3.7.0.0.1 +-- Editor: Li Jie +-- Changes: +-- * update asamSysStatusBitMap description: +-- Bit 8: this bit indicates that alarm 'Invalid xVPS Pair +-- Redundancy Data' (LSM Redundancy 131 nbr 2) was raised. +-- The purpose of using this bit is to clear this alarm +-- by using asamSysStatusClearBitMap. +-- The purpose of using this bit is to clear the alarms 'Invalid +-- xVPS Pair Redundancy Data' by using asamSysStatusClearBitMap." +-- +-- REVISION "200806180000Z" +-- DESCRIPTION +-- "Version:3EC15532EAAA_V3.7.1.0.0 +-- Editor: Shaistha Rumana +-- Changes: +-- *"additional object asamActualSysClkBITSMode is supported +-- from R37 onwards." + +-- REVISION "200803130000Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V3.7.0.0.0 +-- Editor: Zheng Bozhi +-- Change: +-- * ANTms51673: Annex-J/M on IFX 72p MultiADSL ISDN" + +-- REVISION "200709260000Z" +-- DESCRIPTION +-- "Version:3EC15532EAAA_V3.5.0.2.1 +-- Editor: Shwetha Bhaskar +-- Changes: +-- * additional value for actual-clock-priority removed +-- from this release onwards. +-- * new value removed under the type +-- SysClkSrcPriorityScheme." +-- +-- REVISION "200710240000Z" +-- DESCRIPTION +-- "Version:3EC15532EAAA_V3.5.0.2.0 +-- Editor: Shwteha Bhaskar +-- Changes: +-- * additional value for external-source supported +-- from this release onwards.FR ANTms62849 triggering these changes. +-- * new value added under the type +-- asamSysClkBITSMode." +-- +-- REVISION "200710260000Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V3.6.0.0.0 +-- Editor: Daniel Gravelle +-- Changes: +-- * RCR ANTms35338: CDE Framework. +-- Added MIB Objects asamSystemAccessOperatorID and +-- asamSystemActivatedCDE for CDE Framework support." +-- +-- REVISION "200709260000Z" +-- DESCRIPTION +-- "Version:3EC15532EAAA_V3.4.0.2.0 +-- Editor: Prashant Srivastava +-- Changes: +-- * additional value for actual-clock-priority supported +-- from this release onwards. FR ANTms35449 triggering +-- these changes. +-- * new value added under the type +-- SysClkSrcPriorityScheme." +-- +-- REVISION "200706260000Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V3.5.0.0.3 +-- Editor: Jean-Claude Del Col +-- Changes: +-- * RCR BDFhw77928 : VDSL2 IKA ADSL1/2 PSD shaping. +-- Add a new license counter for ADSL1/2 PSD shaping : update +-- of licenseFeatureIndex entry and licenseCounter." +-- +-- REVISION "200706140000Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V3.5.0.0.2 +-- Editor: Fan Min +-- Changes: +-- * update asamSysStatusBitMap description: +-- Bit 7: this bit indicates that one or several alarms (PlugInUnit2 alarm nbr 11) +-- were raised. +-- The purpose of using this bit is to clear the alarms by +-- using asamSysStatusClearBitMap." +-- +-- REVISION "200705290000Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V3.5.0.0.1 +-- Editor: Bakri Aboukarr +-- Changes: +-- * update asamSystemId description: Accept all printable characters" +-- +-- REVISION "200705030000Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V3.5.0.0.0 +-- Editor: Jean-Claude Del Col +-- Changes: +-- * Add new license counter for : +-- 1.XDSL per-line Overrule. +-- 2.Impulse Noise sensor." +-- +-- REVISION "200703120000Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V3.4.0.0.1 +-- Editor: Laurent Deru +-- Changes: +-- * Add new license counter for UPBO Policing : update of +-- licenseFeatureIndex entry and licenseCounter entry." +-- +-- REVISION "200702150500Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V3.4.0.0.0 +-- Editor: Kou Jinhai +-- Changes: +-- * Add swVersion group for show SW version. +-- Add systemMonitor group for monitor CPU load and memory usage and +-- show the result of monitoring." +-- +-- REVISION "200702141200Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V3.3.0.3.0 +-- Editor: Mohan Babu.M +-- Changes: +-- *Support for underscore character in the System Id." +-- +-- REVISION "20061113000Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V3.3.0.2.0 +-- Editor : Katrien SCHARRE +-- Changes: +-- *Add text convention RowConfigState." +-- +-- REVISION "20060926000Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V3.3.0.0.0 +-- Editor: Kou Jinhai +-- Changes: +-- * Environment monitor relay group is added to support configurable +-- enable/disable of this environment monitor relay feature." +-- +-- REVISION "20060100900Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_E3.1.0.0 +-- Editor: ma liya +-- Changes: +-- * asamAccessLoopIdSyntax group is added to support configurable Line +-- Id and the format of option82. +-- The syntax of asamSystemID is changed to extend system ID to 64 +-- characters from 20 characters." +-- +-- REVISION "200512021200Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_E2.4.3.0.0 +-- Editor: Satish Balagopalan +-- Changes: +-- * RCR BDFhw37384: Support for BITS two external clock sources." +-- +-- REVISION "20601231200Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_V2.4.3.0.0 +-- Editor: Manjunath.marigoudar@Wipro Technologies +-- Changes: +-- * (asamCraftLoginStatus) new variable added in changeOccuredtrap." +-- +-- REVISION "200507051200Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_E2.4.0.0 +-- Editor: Li Jing +-- Changes: +-- * RCR BDFhw34319 - an item of licenseFeatureIndex +-- is added for IPOA-CC feature." +-- +-- REVISION "200506041200Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_E2.3.0.0 +-- Editor: Pradeep Hosaritthi +-- Changes: +-- * RCR BDFhw37384-Clock objects support from this +-- release for BITS feature." +-- +-- REVISION "200411221200Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_E2.0.0.0 +-- Editor: Jun B Zhang +-- Changes: +-- * license key management added." +-- +-- REVISION "200410141200Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_E2.0.0.0 +-- Editor: Steven Luykx +-- Changes: +-- * RCR BDhw42976 System MAC adresses added." +-- +-- REVISION "200401201200Z" +-- DESCRIPTION +-- "Version: 3EC15532EAAA_E1.0.0.0 +-- Editor: Rafael Van Driessche +-- Changes: +-- * A number of objects that have no use for ISAM have been indicated +-- as not supported. +-- * Object asamMibVersion has been indicated as being non-persistent. +-- * The range of object asamEthernetShapingRate has been corrected." +-- +-- REVISION "200107121200Z" +-- DESCRIPTION +-- "Version: 3EC15532AAAA_E5.0.0.0 +-- Editor: Rafael Van Driessche +-- Changes: +-- * Object asamSysStatusSetBitMap has been made obsolete. +-- * Object asamAWSnumberOfSets has been made obsolete. +-- * Object asamDiskStatusBitMap has been made obsolete. +-- * Object asamNetworkPosition has been made obsolete. +-- * Object asamMigrationStatus has been made obsolete. +-- * Objects in asamSystemClockSelect group have been made obsolete. +-- * Object asamShutdownBitMap has become supported. +-- * Objects have been added related with selection of the system clock. +-- * Object asamSystemInitProgress has been added." +-- +-- REVISION "199911051200Z" +-- DESCRIPTION +-- "Version: 3EC15532AAAA_R3.0.1 +-- Editor: unknown +-- Changes: +-- * asamSysStatusBitMap: new values possible for backup/restore +-- * asamMibVersion object added." +-- +-- REVISION "199904031200Z" +-- DESCRIPTION +-- "Version: 3EC15532AAAA_R3.0.0 +-- Editor: unknown +-- Changes: +-- * Add asamSystemMigration group which contains: +-- - asamMigrationStatus object for database migration control. +-- * Add asamSystemClockSelect group which contains: +-- - objects to allow clock selection; +-- - objects to reflect clock state." +-- +-- =========================================================================== + + IMPORTS asam FROM SYSTEM-MIB + Counter, Gauge FROM RFC1155-SMI + OBJECT-TYPE FROM RFC-1212 + EqptSlotIndex FROM ASAM-EQUIP-MIB + + MacAddress FROM BRIDGE-MIB + NetworkTimeInSeconds, NetworkTimeInMiliSeconds FROM ASAM-TC-MIB + DateAndTime,RowStatus,TruthValue FROM SNMPv2-TC + Unsigned32 FROM SNMPv2-SMI + IpAddress FROM RFC1155-SMI + + + ; + + + asamSystemMIB OBJECT IDENTIFIER ::= { asam 9 } + + asamSysBootpInfo OBJECT IDENTIFIER ::= { asamSystemMIB 2 } + + asamSystemMigration OBJECT IDENTIFIER ::= { asamSystemMIB 11 } + + asamSystemClockSelect OBJECT IDENTIFIER ::= { asamSystemMIB 12 } + + asamSystemLicenseMgmt OBJECT IDENTIFIER ::= { asamSystemMIB 17 } + + asamSysMacAdresses OBJECT IDENTIFIER ::= { asamSystemMIB 22 } + + asamCraftLogin OBJECT IDENTIFIER ::= { asamSystemMIB 25 } + + asamAccessLoopIdSyntax OBJECT IDENTIFIER ::= { asamSystemMIB 26 } + + environmentMonitorRelay OBJECT IDENTIFIER ::= { asamSystemMIB 27 } + + swVersion OBJECT IDENTIFIER ::= { asamSystemMIB 28 } + + systemMonitor OBJECT IDENTIFIER ::= { asamSystemMIB 29 } + + asamRelayIdSyntax OBJECT IDENTIFIER ::= { asamSystemMIB 58 } + + -- + -- Part 1: Objects to specify the OAM channel via which the BOOTP request + -- must be issued. These objects are not applicable for ISAM. + -- + + asamSystemIpAtmVcVpi OBJECT-TYPE + SYNTAX INTEGER (0..4095) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "To issue a BOOTP request over an ATM connection on the network + interface, a PVC must be defined. + This is the VPI value for that PVC. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: YES RANGE: 0..4095 + PERSIST: YES DEFVALUE: 0 UNITS: -" + ::= { asamSysBootpInfo 1 } + + asamSystemIpAtmVcVci OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "To issue a BOOTP request over an ATM connection on the network + interface, a PVC must be defined. + This is the VCI value for that PVC. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: YES RANGE: 0..65535 + PERSIST: YES DEFVALUE: 32 UNITS: -" + ::= { asamSysBootpInfo 2 } + + -- + -- Part 2: Various system objects. + -- + + asamSystemID OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The asamSystemID object represents the SID (System ID) of the NE + and is used to identify the NE. + + The System ID may only include printable ASCII characters from '!' + (33 Decimal, 21 Hex) to '~' (126 Decimal, 7E Hex) inclusive and must + be unique for each NE in a managed network. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: UNITS: -" + ::= { asamSystemMIB 3 } + + asamSysStatusBitMap OBJECT-TYPE + SYNTAX INTEGER (1..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Status bitmap: + Bit 0: bit 0 is set if and only if none of the other bits is set. + Bit 1: bit 1 set indicates that persistent data has been lost + including data necessary to establish OAM connectivity. + Bit 2: bit 2 set indicates that persistent data has been lost but + not including data necessary to establish OAM connectivity. + Bit 3: bit 3 set indicates that a power-on reset has occured. Notice + that this also means that all reset-safe data has been lost. + Bit 4: bit 4 set indicates that a reset other than a power-on reset + has occured. + Bit 5: not used anymore. + Bit 6: this bit indicates that alarm 'SHub configuration loss' (EQUIP + alarm nbr 28) was raised. The purpose of using this bit is to + clear this alarm by using asamSysStatusClearBitMap. + Bit 7: this bit indicates that one or several 'xVPS configuration + loss' alarms (PlugInUnit2 alarm nbr 11) were raised. + The purpose of using this bit is to clear the alarms by using + asamSysStatusClearBitMap. + Bit 8: this bit indicates that alarm 'Invalid xVPS Pair Redundancy Data' + (LSM Redundancy 131 nbr 2) was raised. The purpose of using this + bit is to clear this alarm by using asamSysStatusClearBitMap. + + Bit 9 .. 31 : reserved for future extensions. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..4294967295 + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { asamSystemMIB 4 } + + asamSysStatusClearBitMap OBJECT-TYPE + SYNTAX INTEGER (1..4294967295) + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Clear status bitmap: + In order to be able to clear the status bitmap, e.g. to clear the loss + of persistent data alarm, this bitmap has to be used by writing a 1 to + the corresponding bit position. Bit 0 in the status bitmap cannot be + cleared in this way. Therefore, the system will refuse a Set request + that attempts to set bit 0 in the asamSysStatusClearBitMap. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: 1..4294967295 + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { asamSystemMIB 5 } + + asamSysStatusSetBitMap OBJECT-TYPE + SYNTAX INTEGER (1..4294967295) + ACCESS write-only + STATUS obsolete + DESCRIPTION + "Set status bitmap: + In order to be able to set the status bitmap, this bitmap has to be + used by writing a 1 to the corresponding bit position." + ::= { asamSystemMIB 6 } + + asamAWSnumberOfSets OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS obsolete + DESCRIPTION + "Reserved for AWS for synchronisation purposes." + ::= { asamSystemMIB 7 } + + asamDiskStatusBitMap OBJECT-TYPE + SYNTAX INTEGER (1..4294967295) + ACCESS read-write + STATUS obsolete + DESCRIPTION + "Disk status bitmap: + Bit 0: by setting bit 0, all persistent data is synced (forced) to + disk. + Bit 1: by setting bit 1, the ASAM disk is locked, otherwise the ASAM + disk is not locked. Disk locked means it is impossible to + change persistent data --> any change by a manager is + ignored. + Bit 2..31 : reserved for future use." + ::= { asamSystemMIB 8 } + + asamShutdownBitMap OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shutdown bitmap: + Bit 0: by setting bit 0, the ASAM is prepared for shutdown; + it is recommended to do this before extracting the active NT + in a simplex system; the bit will be cleared again by + extracting and reinserting the NT board. + Bit 1..31 : reserved for future use. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: 0..4294967295 + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { asamSystemMIB 9 } + + asamNetworkPosition OBJECT-TYPE + SYNTAX INTEGER (1..2) + ACCESS read-write + STATUS obsolete + DESCRIPTION + "Indicates whether the ASAM is a hub-ASAM (1) or a subtending ASAM. + The default is hub-ASAM." + ::= { asamSystemMIB 10 } + + -- + -- Part 3: Object related with system migration. This object is obsolete. + -- + + asamMigrationStatus OBJECT-TYPE + SYNTAX INTEGER { + idle (1), + migrating (2), + rollBackPossible (3), + forceRollBack (4), + removeRollBackDatabase (5) + } + ACCESS read-write + STATUS obsolete + DESCRIPTION + "The asamMigrationStatus object represent the ASAM's status for what + concerns its migration capabilities. + Whereas two of the six values, viz. 'forceRollBack' and + 'removeRollBackDatabase' may be specified in a management protocol + set operation, three values wil be returned in response to a + management protocol retrieval operation: 'idle', 'migrating' and + 'rollBackPossible'. That is, when queried, this object can + represent only three migration related states of the ASAM: the + ASAM has no specific migration state, i.e. it is simply operational + (the object has value 'idle'); the ASAM is busy migrating (the + object has value 'migrating'); or, the ASAM has recently migrated + but is still able to rol back to the previous configuration (the + object has value 'rollBackPossible'. Whenever a management station + wishes the ASAM to roll back to its previous configuration it has + to set this object to value 'forceRollBack'. Setting the object to + value 'removeRollBackDatabase' informs the ASAM it has not + support the rollback feature anymore. As a result the ASAM will + perform clean up operations (e.g. free the roll back database). + + Remark: this object is subject to improvement in future releases + (e.g. coupling of data and software upgrade/rollback)." + ::= { asamSystemMigration 1 } + + -- + -- Part 4: Another bunch of system objects. + -- + + asamMibVersion OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..28)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable identifies the version of the management interface + of the ASAM, i.e. it uniquely identifies the complete set of MIBs + that together constitute the management interface. The version + is a string of the form dccdddddcccc_Vx.x.x.y.z, with d representing + a decimal digit, c representing an uppercase character, and x, y, z + representing a decimal number between 0 and 99. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { asamSystemMIB 13 } + +-- asamEthernetShapingRate OBJECT-TYPE +-- SYNTAX INTEGER (128..2000) +-- ACCESS read-write +-- STATUS mandatory +-- DESCRIPTION +-- "Ethernet frame shaping rate in kbit/s. +-- +-- This object is only meaningful for a system with an Ethernet based +-- management interface, which is always the case for the ISAM. +-- In such a case, the system will shape the outgoing Ethernet frames +-- on its management interface to the configured rate. +-- +-- ALCATEL NOTE: +-- SUPPORT: YES INSRVMOD: YES RANGE: 128..2000 +-- PERSIST: YES DEFVALUE: 128 UNITS: kbit/s" +-- ::= { asamSystemMIB 14 } + + asamSystemInitProgress OBJECT-TYPE + SYNTAX INTEGER (0..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Progress of the system initialization indicated as a percentage. + + When the system starts its initialization, it will at first not be + reachable for SNMP managers. However, as soon as the initialization + has progressed far enough, the system will allow Get requests from + managers on this object. From then on, managers can poll the value + of this variable to monitor the progress of the initialization. Get + requests on other objects and all Set requests will still be refused + by the system. When the progress has reached 100% (initialization + complete), the system will allow all SNMP access. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0..100 + PERSIST: NO DEFVALUE: NA UNITS: percent" + ::= { asamSystemMIB 15 } + + asamPnPEnable OBJECT-TYPE + SYNTAX INTEGER { + enabled (1), + disabled (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable allows the manager to enable/disable the Plug-and-Play + functionality. When enabled, the ASAM will, upon installation, start + up autonomously without intervention of a local craftsman. Otherwise, + a Craft Terminal is required to provide the necessary configuration + to the ASAM so that it can start up and set up communication with the + manager. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: YES RANGE: 1..2 + PERSIST: YES DEFVALUE: enabled (1) UNITS: -" + ::= { asamSystemMIB 16 } + + -- + -- Part 6: Objects related with license key management. + -- + + asamLicenseNumberOfChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wrap around counter for the number of changes of the licenseCounter + object. The counter is incremented each time the licenseCounter is + incremented for one of the features. Not persistent data. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: see above + PERSIST: NO DEFVALUE: NA UNITS: -" + + ::= { asamSystemLicenseMgmt 1 } + + asamSystemLicenseMgmtTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamSystemLicenseMgmtEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The license key management table." + ::= { asamSystemLicenseMgmt 2 } + + asamSystemLicenseMgmtEntry OBJECT-TYPE + SYNTAX AsamSystemLicenseMgmtEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the asamSystemLicenseMgmtTable." + INDEX {licenseFeatureIndex} + ::= {asamSystemLicenseMgmtTable 1} + + AsamSystemLicenseMgmtEntry ::= + SEQUENCE { + licenseFeatureIndex INTEGER, + licenseCounter INTEGER + } + + licenseFeatureIndex OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + " This object is used by the asamSystemLicenseMgmtTable to identify a + row of this table. Each row corresponds to a system feature that is + monitored to support license management at the manager. + Following integer values are defined: + 1. ADSL2+ + 2. READSL2 + 3. IGMP + 4. BVB + 5. Annex-M + 6. IP-Forwarding + 7. PPPoX Relay + 8. PPPoX Termination + 9. 802.1x + 10. SELT + 11. reserved + 12. reserved + 13. IPOA-CC and IPOA-RB + 14. UPBO Policing + 15. XDSL-PerLine-Overrule + 16. Impulse Noise Sensor + 17. ADSL1/2 PSD Shaping + 18. Annex-J + 19. SyncE Clock source + 20. 2.5 Gbps enabled LT + 21. NT load sharing + redundancy + 22. SHDSL cross-talk cancellation + 23. SRA on VDSL2 + 24. ARQ + 25. 10 Gbps enabled LT + 26. 20 Gbps enabled LT + 27. Gxr + 28. IPv6 security + 29. Lawful Intercept + 30. Vectoring crosstalk + 31. Green DSL L2 mode + 32. Ethernet OAM Advanced Monitoring Functions + 33. MPLS Advanced Resiliency + 34. 40 Gpbs enabled LT + 35. Type-B protection + 36. Vectoring Legacy FEXT cancellation + 37. Vlan Translation Table Extended Usage + 38. Ethernet OAM Y1731 Performance Monitoring Functions + 39. Vplus + 40. GFast + 41. VULA + 42. Multi-vsg + 43. Ethernet Ring Protection Switching + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..43 + PERSIST: NO DEFVALUE: NA UNITS: -" + + ::= {asamSystemLicenseMgmtEntry 1} + + + + licenseCounter OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the monitoring of the feature that + corresponds to the licenseFeatureIndex value. + + 1. For ADSL2+, the counter indicates the number of XDSL lines for which + an ADSL2+ operational mode (POTS and/or ISDN) is enabled in its + configuration and supported by the LT board and for which + the XDSL board is equipped. + + 2. For READSL2, the counter indicates the number of XDSL lines for which + a READSL2 operational mode (US mode 1 and/or US mode2) is enabled in + its configuration and supported by the LT board and for which the + XDSL board is equipped.. + + 3. For IGMP, the counter indicates the number of DSL subscriber lines + for which an IGMP control channel has been configured. + + 4. For BVB, the counter indicates whether BVB is enabled (value 1) or + Disabled (value 0) in the ASAM and in ISAM this item is reserved. + + 5. For xDSL Annex-M, the counter indicates the number of DSL subscriber + line which is configured for Annex-M. + + 6. For IP-Forwarding, the counter indicates the number of DSL subscriber + lines configured for Layer-3, such as IP forwarding, RFC1483R/Br with + virtual routers, Layer-3 QoS features, IP anti-spoofing, IP filters. + + 7. For PPPoX Relay, the counter indicates the number of DSL subscriber + lines for which PPP CrossConnect has been configured. + + 8. For PPPoX Termination, the counter indicates the number of DSL + subscriber line for which PPPoE termination or PPPoA termination has + been configured. + + 9. For 802.1x, the counter indicates the number of DSL subscriber lines + for which 802.1x has been configured as 'enabled' + + 10. For SELT, the counter indicates the number of DSL subscriber lines + configured for G.selt usage and enables the collection of line test + data. + + 11. (reserved) + 12. (reserved) + + 13. For IPoA-CC and IPoA-RB, the counter indicates the number of DSL + subscriber lines which are configured for IPoA cross connect or IPoA + with ehanced i-bridge mode. + + 14. For UPBO Policing, the counter indicates the number of XDSL lines for + which a VDSL2 opmode has been selected, for which UPBO Policing pbo + mode has been enabled in its configuration and supported by the + LT board and for which the XDSL board is equipped. + The counter is decremented when one + of these conditions is not met anymore. + + 15. For XDSL-Perline-Overrule, the counter indicates the number of XDSL + lines for which the per-line overrule data has been used in its + configuration and for which the XDSL board is equipped. + The counter is decremented when one of these conditions is not + met anymore. + + 16. For Impulse Noise Sensor, the counter indicates the number of XDSL + lines for which the Impulse Noise Sensor is enabled (insEnable + set to 1 in the Line Conf Table) and for which the XDSL board is + equipped. The counter is decremented if the XDSL line is unconfigured + ( once the INS feature has been enabled, it cannot be disabled anymore + unless the line is unconfigured ). + + 17. For ADSL1/2 PSD Shaping, the counter indicates the number of XDSL + lines for which ADSL1 or ADSL2 opMode is enabled with DBPO shaping + in its configuration. The counter is incremented when a XDSL line + has its operating mode enabled for ADSL1 or ADSL2 and a DPBO profile + is assigned to that line (DPBO board profile or a line profile) and + the respective board is equipped and planned and supports ADSL1/2 PSD + Shaping. + The counter is decremented when the DPBO profile (DPBO board or line + profile) of a xDSL line is unassigned or a xDSL line has its + operating mode disabled for ADSL1 or ADSL2. + + 18. For xDSL Annex-J, the counter indicates the number of DSL subscriber + line which is configured for Annex-J. + + 19. For syncE clock source, the counter indicates the number of + Synchronous Ethernet ports are configured as a clock source. + + 20. For 2.5 Gbps enabled LT, the counter indicates the number of LTs + that have an uplink that is running at 2.5 Gbps speed. + + 21. When NT load sharing + redundancy is supported, the counter indicates + 1, else the counter indicates 0. + + 22. For SHDSL CTC, the counter indicates actual the number of SHDSL + subscriber lines for which cross-talk cancellation (CTC) is enabled and + for which the SHDSL board is equipped. + In current, this key isn't used, and the counter always keep as zero. + + 23. For SRA on VDSL2, the counter indicates the number of XDSL lines + for which a VDSL2 opmode has been selected, for which SRA mode has been + enabled in its configuration and supported by the LT board and for + which the XDSL board is equipped. + The counter is decremented when one of these conditions is not met + anymore. + + 24. For ARQ, the counter indicates the number of XDSL lines for which + ARQ is enabled in the configuration, supported by the LT board and + for which the XDSL board is equipped. + + 25. For 10 Gbps enabled LT, the counter indicates the number of LTs + that have an uplink that is running at 10 Gbps speed. + + 26. For 20 Gbps enabled LT, the counter indicates the number of LTs + that have an uplink that is running at 20 Gbps speed. + + 27. For Gxr, the counter indicates the number of lines that are + enabled for resource control via Diameter Gxr interface. + + 28. For IPv6 security, the counter indicates the number of access lines + (DSL, Ethernet or ONT UNI) where one or more IPv6 security features are + activated. + + 29. For Higig NT, the counter indicates whether lawful intercept is + enabled (value 1) or Disabled (value 0). + + 30. For Vectoring crosstalk, the counter indicates the number of XDSL + lines on which a vectoring profile has been assigned to by configuration, + supported by the LT board and for which the XDSL board is equipped. + + 31. For Green DSL L2 mode, the counter indicates the number + of xDSL lines which are equipped and configured with L2 mode + enabled. + + 32. For Ethernet OAM Advanced Monitoring Functions, the counter indicates + the numberof MEPS which can send and/or receive CFM Continuity Check + Messages. + + 33. For Higig NT, the counter indicates whether MPLS-FRR or MPLS LSR + is being used (value 1) or not used (value 0).The counter is only valid + on NANT-E and FANT-F boards. For other NTs, the value should always be 0, + as MPLS-FRR and MPLS LSR are not supported. + + 34. For 40 Gbps enabled LT, the counter indicates the number of LTs + that have an uplink that is running at 40 Gbps speed. + + 35. For Type-B protection, the counter indicates the number of protection + groups in the system that are configured by the operator. The counter is + only valid on NANT-E and FANT-F boards. For other NTs, the value should + always be 0, as protection group creation is not allowed. The value is + between 0 (no protection group) and 62 (maximum allowed by the system). + + 36. For Vectoring Legacy FEXT Cancellation, the counter indicates the + number of XDSL lines on which one of the Legacy FEXT Cancellation methods + has been enabled by configuration, supported by the LT board and for + which the XDSL board is equipped. + + 37. For Vlan Translation Table Extended Usage, the counter indicates the + number of line cards making use of Vlan Translation Resources in + an extended way. + + 38. For Ethernet OAM Y1731 Performance monitoring functions, the counter + indicates the number of MEPs in the system in which Y1731 performance + monitoring functions have been enabled. + + 39. For Vplus, the counter indicates the number of XDSL lines for which + a vplus opmode has been selected by configuration and supported by + the LT board and for which the XDSL board is equipped. + The counter is decremented when this condition is not met anymore. + + 40. For GFast, the counter indicates the number of XDSL lines for which + 41. For VULA, the counter indicates the number of FELT-B planned as uplink mode + 42. For Multiple SG, the counter indicates the number of SIP terminations created in the local access node + the G.fast operational mode is enabled by the configuration, + supported by the LT board and for which the LT board is equipped. + 43. For Ethernet Ring Protection Switching, the counter indicates whether Ethernet Ring + Protection Switching is enabled (value 1) or Disabled (value 0). + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: see above + PERSIST: NO DEFVALUE: NA UNITS: -" + + ::= {asamSystemLicenseMgmtEntry 2} + + systemMaxLtLinkSpeed OBJECT-TYPE + SYNTAX INTEGER + { + onegbps(1), + twodot5gbps (2), + tengbps(10), + twentygbps(20), + fortygbps(40) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An enum indicating high capacity is enabled. Applicable for high capacity + NT's. This object is not applicable to ISAM 7367 SX / 7363 MX systems (Standalone + Single-board Vectoring Box and NGVR). + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: 1,2,10,20 or 40 + PERSIST: YES DEFVALUE: onegbps UNITS: NA" + + ::= { asamSystemLicenseMgmt 3 } + +--OID 18..21 are reserved for ASAM applications + + systemMac OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(6)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "On ISAM FD with SHUB: Specifies MAC address of the LANX interface(100baseT) of the NT + This field should/must only be modified when the shelf does not support the SMAS functionality. + On ISAM 7367 SX/ 7363 MX systems (Standalone Single-board Vectoring Box and NGVR) + this object is read only. It allows to get the MAC address of the system (e.g used for IP communication) + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= { asamSysMacAdresses 1 } + + lanxBaseMac OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(6)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Identifies the LANX MAC start adress. This field should/must only be + modified when the shelf does not support the SMAS functionality. This + object is not applicable to ISAM 7367 SX / 7363 MX systems (Standalone + Single-board Vectoring Box and NGVR) + + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { asamSysMacAdresses 2 } + + lanxRangeMac OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Specifies the range of MAC adresses on LANX. The LANX MAC address + range is currently equal to 24(number of LANX interfaces). This field + should/must only be modified when the shelf does not support the SMAS + functionality. This object is not applicable to ISAM 7367 SX/ 7363 MX systems + (Standalone Single-board Vectoring Box and NGVR) + + SUPPORT: YES INSRVMOD: NA RANGE: 0..65535 + PERSIST: YES DEFVALUE: 24 UNITS: -" + ::= { asamSysMacAdresses 3 } + + outbandManMac OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(6)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Specifies Outband Management MACAddress. This field + should/must only be modified when the shelf does not support the SMAS + functionality. This object is not applicable to ISAM 7367 SX/ 7363 MX systems + (Standalone Single-board Vectoring Box and NGVR) + + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { asamSysMacAdresses 4 } + + asamSuperuserAuthByRadius OBJECT-TYPE + SYNTAX INTEGER { + enabled (1), + disabled (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The TL1/CLI user ID SUPERUSER/isadmin is optionally authenticated by + RADIUS based on this object. When disabled, SUPERUSER/isadmin is always + authenticated by the local user database. When enabled, SUPERUSER/ + isadminauthentication is initially attempted with RADIUS, but the + authentication will fall back to the local TL1/CLI user database, if + all RADIUS servers are disabled, or the RADIUS servers are not + responding successfully to the authentication request. + + ALCATEL NOTE: + SUPPORT: YES + PERSIST: YES + INSRVMOD: NA + RANGE: 1..2 + DEFVALUE: 2 + UNITS: NA" + DEFVAL { disabled } + ::= { asamSystemMIB 20 } + + timeZoneOffset OBJECT-TYPE + SYNTAX INTEGER (-780..840) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object allows a manager to set the Time Zone Offset of the + system. + ALCATEL NOTE: + SUPPORT: YES + PERSIST: YES + INSRVMOD: NA + RANGE: -780...840 + DEFVALUE: 0 + UNITS: minutes" + ::= { asamSystemMIB 24 } + + asamCraftLoginStatus OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Specifies whether user has been logged in or not + 1-user logged in + 0-no user logged in. + + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { asamCraftLogin 1 } + + + asamPortNumberingMethodSystem OBJECT-TYPE + SYNTAX INTEGER { + logicalSlotId (1), + positionBasedSlotId (2), + typeBasedSlotId (3), + legacyPositionBasedSlotId (4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object defines the Line ID format at the system level. + logicalSlotId (1) is a numbering method defined for equipment + identification in the MIB. + positionBasedSlotId (2) numbers all boards from left to rightor + from bottom to top starting from 1. + typeBasedSlotId (3) numbers -per slot-type- as indicated on + the shelf, in case there is no indication on the shelf it numbers + -per slot-type- from left to right or from bottom to top starting + with 1. + legacyPositionBasedSlotId (4) is identical to position-based + numbering except for aram-b/d where the numbering corresponds with + the logicalSlotId based numbering plus 1. + + ALCATEL NOTE: + SUPPORT: YES + PERSIST: YES + INSRVMOD: NA + RANGE: see above + DEFVALUE: 1 + UNITS: NA" + ::= { asamAccessLoopIdSyntax 1 } + + + asamAccessLoopAtmBasedDslSyntax OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..80)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable defines the syntax for generating a loop id + for ATM based DSL lines terminated by DSL LT. + It is a string to define a specified format at system level. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: UNITS: -" + ::= { asamAccessLoopIdSyntax 3 } + + asamAccessLoopEthBasedDslSyntax OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..80)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable defines the syntax for generating a loop id + for Ethernet based DSL lines terminated by DSL LT and + for Ethernet lines terminated by Ethernet LT. + It is a string to define a specified format at system level. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: UNITS: -" + ::= { asamAccessLoopIdSyntax 4 } + + asamAccessLoopEthBasedPonSyntax OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..80)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable defines the syntax for generating a loop id for Ethernet + based DSL line terminated by GPON ONTs, and for Ethernet lines terminated + by GPON ONTs. GPON ONTs are connected to the system via a GPON + transmission technology. + It is a string to define a specified format at the system level. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: UNITS: -" + ::= { asamAccessLoopIdSyntax 5 } + + asamAccessLoopEthBasedEPonSyntax OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..80)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable defines the syntax for generating a loop id for Ethernet + based DSL line terminated by EPON ONTs, and for Ethernet lines terminated + by EPON ONTs. EPON ONTs are connected to the system via an EPON + transmission technology. + It is a string to define a specified format at the system level. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: UNITS: -" + ::= { asamAccessLoopIdSyntax 6 } + +asamAccessLoopEthBasedNgpon2Syntax OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..80)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable defines the syntax for generating a loop id for Ethernet + based DSL line terminated by NGPON2 ONTs, and for Ethernet lines + terminated by NGPON2 ONTs. NGPON2 ONTs are connected to the system via a + NGPON2 transmission technology. + It is a string to define a specified format at the system level. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: UNITS: -" + ::= { asamAccessLoopIdSyntax 7 } + + asamAccessLoopNtPortSyntax OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..80)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable defines the syntax for generating a access loop id + for NT ports. + It is a string to define a specified format at system level. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: UNITS: -" + ::= { asamAccessLoopIdSyntax 8 } + + environmentMonitorRelayMode OBJECT-TYPE + SYNTAX INTEGER { + enabled (1), + disabled (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " This variable allows the manager to enable/disable the environment + monitoring relay functionality. When enabled, the environment data + will be relayed between monitoring box and supervision server. + Otherwise, it will stop the relay. + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: YES RANGE: 1..2 + PERSIST: YES DEFVALUE: disable (2) UNITS: -" + ::= {environmentMonitorRelay 1} + + swEtsiVersion OBJECT-TYPE +-- SYNTAX DisplayString(SIZE(0..50)) +-- Use no DisplayString instead of OCTET STRING + SYNTAX OCTET STRING(SIZE(0..50)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " This object holds the Software version for ETSI market. + (e.g. R4.1). It will be empty if not supported for ETSI market. + To ease parsing by AMS, the format of this string is constrained as to + be Rn.n*.n* where n is any integer value, and * is any string of ASCII + character only containing alphabetic [a-zA-Z] characters combined + with _ and -. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NA INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= {swVersion 1} + + swAnsiVersion OBJECT-TYPE +-- SYNTAX DisplayString(SIZE(0..50)) +-- Use no DisplayString instead of OCTET STRING + SYNTAX OCTET STRING(SIZE(0..50)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " This object holds the Software version for ANSI market. + (such as FGN4.1.0). It will be empty if not supported for ANSI market. + To ease parsing by AMS, the format of this string is constrained as to + be Rn.n*.n* where n is any integer value, and * is any string of ASCII + character only containing alphabetic [a-zA-Z] characters combined + with _ and -. + Examples: R4.5.02c, R4.8b, R04.07.10 ... + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NA INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= {swVersion 2} + + cpuLoadTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpuLoadEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The CPU load monitor table. + ALCATEL NOTE: + TABLESIZE: max nmbr of slots " + ::= { systemMonitor 1 } + + asamRelayAtmBasedDslSyntax OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..80)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable defines the syntax for generating a relay id + for Atm based DSL lines terminated by DSL LT. + It is a string to define a specified format at system level. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: UNITS: -" + ::= { asamRelayIdSyntax 1 } + + asamRelayEthBasedDslSyntax OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..80)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable defines the syntax for generating a relay id + for Ethernet based DSL lines terminated by DSL LT and + for Ethernet lines terminated by Ethernet LT. + It is a string to define a specified format at system level. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: UNITS: -" + ::= { asamRelayIdSyntax 2 } + + asamRelayNtPortSyntax OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..80)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable defines the syntax for generating a relay id + for NT ports. + It is a string to define a specified format at system level. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: UNITS: -" + ::= { asamRelayIdSyntax 3 } + + cpuLoadEntry OBJECT-TYPE + SYNTAX CpuLoadEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the cpuLoadTable. The index of the entry is slotId. + An entry represents the CPU load of the board in the slot. + The CPU load includes detail value and average value respectively. + The slot can be NT slot or LT slot. + Row creation : An entry is created by the system when a board + is planning + Row deletion : An entry is deleted by the system when a board + is unplanning. + Index usage : the index is the slot id. + Note that entries will be presented to the SNMP manager in full + lexicographical order." + INDEX { slotId } + ::= { cpuLoadTable 1} + + CpuLoadEntry ::= + SEQUENCE { + slotId INTEGER (1..65535), + startMonitorTime NetworkTimeInSeconds, + cpuLoadDetail OCTET STRING(SIZE(180)), + cpuLoadAverage Gauge, + operateStatus INTEGER + } + + slotId OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " the slotId has the same value as eqptSlotId of ASAM-EQUIP-MIB. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: 0 + UNITS: NA SPARSE: NO + DESCR: NA" + ::= { cpuLoadEntry 1} + + startMonitorTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The start timestamp of CPU load monitor is the network + time in seconds. + It indicates the start time of last 3 minutes or less monitoring. + The startMonitorTime is the time at which the last CPU load + detail & average was computed - reset every second after + 3 minutes from monitor start time. + The startMonitorTime is the monitor task start time if the interval + time between start and stop is less than 3 minutes. The + startMonitorTime is (stop monitor task time - 3 minutes) if the + interval time between start and stop is larger than 3 minutes. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: 0 + UNITS: NA SPARSE: NO + DESCR: NA" + ::= { cpuLoadEntry 2} + + cpuLoadDetail OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(180)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " The cpuLoadDetail object represents the CPU load percent value + (x100%) in detail for 180 measurement points. + The length of this object is always 180 octets. One octet represents + one CPU load value of one measurement. One measurement generates one + sample value. The measure time of a sample is a second. The maximum + measure time is 180 seconds. So the maximum number of samples is 180. + The interval time between start and stop (or show) operation may be + less 180 seconds. So the sample number may be less than 180. The left + octet will be padded with H'FF if the sample number is less than 180 + and keeps the octet length always 180. + The type of cpuLoadDetail variable is OCTET STRING. Each octet can + be intepreted as a double-digit (binary ecoded value) integer. + The cpuLoadDetail indicates 180 double-digit (binary value) integers. + Each integer indicates the CPU load percent value of a measurement. + The order of measurement value is: + In case of the measurement time is >= 180 seconds, only the last 180 + samples are keeped; the 1st octet is the 1st measurement value of the + last 180 sample; the 2nd octet is the 2nd measurement value of the + last 180 sample; the 180th octet is the 180th measurement value of + the last 180 sample. A wrap around buffer will be used to store the + measurement values. + In case of the measurement time is < 180 seconds, the samples are + less than 180, the 1st octet is the measurement value of 1st sample; + the 2nd octet is the measurement value of 2nd sample; the left + octet will be padded with H'FF; so the 180th octet is H'FF. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: 'FFh' + UNITS: NA SPARSE: NO + DESCR: NA" + ::= { cpuLoadEntry 3} + + cpuLoadAverage OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + " The average value of CPU load. It is percent value (x100%). + It is the average of detail CPU load value. + One sample is generated for each second during CPU load measurement + time. The maximum measurement time is 180 seconds. + The maximum sample number is 180. + cpuLoadAverage is average of all 180 sample values if the monitoring + time is equal or longer than 180 seconds. It should be the average + of sample values measured in the time between start monitor and + stop monitor if the interval time between start and stop is less + than 180 seconds. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..100 DEFVALUE: 0 + UNITS: percentage SPARSE: NO + DESCR: NA" + ::= { cpuLoadEntry 4} + + + operateStatus OBJECT-TYPE + SYNTAX INTEGER{ + start(1), + stop(2), + proceeding(3), + idle(4), + not-operational(5) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The operate status for start/stop CPU load monitoring operation. + The maximum measurement time is 180 seconds. + One sample is generated for a second. + The maximum sample number is 180. Only the latest 180 sample values + are kept. The previous value beyond 180 is overwritten. + The operator should start monitor firstly, then show the CPU load + and stop monitor. + The and are for operation (action). The + , , and + indicate the states of the monitor. + =================== =============== + | not-operational | --- board planning ===> | idle | + =================== =============== + =================== =============== + | idle | --- start monitor ===> | proceeding | + =================== =============== + =================== =============== + | proceeding | --- stop monitor ===> | idle | + =================== =============== + =================== ================== + | idle,proceeding | --- board unplanning ===> |not-operational | + =================== ================== + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: YES + RANGE: NA DEFVALUE: idle + UNITS: NA SPARSE: NO + DESCR: NA" + ::= { cpuLoadEntry 5} + + + memUsageTable OBJECT-TYPE + SYNTAX SEQUENCE OF MemUsageEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The memory usage monitor table." + ::= { systemMonitor 2 } + + memUsageEntry OBJECT-TYPE + SYNTAX MemUsageEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the memUsageTable. The index of the entry is slotId. + An entry represents the memory usage of the board in the slot. + The memory usage includes total size and used size respectively. + The solt can be NT slot or LT slot." + INDEX { slotId } + ::= { memUsageTable 1} + + MemUsageEntry ::= + SEQUENCE { + totalMemSize Gauge, + memAbsoluteUsage Gauge + } + + totalMemSize OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total memory size on board. It just indicates the size of + total semi and dynamical memory. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: NA + PERSIST: NO DEFVALUE: NA UNITS: Mbyte" + ::= { memUsageEntry 1} + + memAbsoluteUsage OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The used memory size in absolute value. It indicates total used + size of semi and dynamical memory. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: NA + PERSIST: NO DEFVALUE: NA UNITS: Mbyte" + ::= { memUsageEntry 2} + +-- OID 30..32 are reserved for other applications. +-- (7342 FTTU, 7354 FTTB, LiteSpan ANIT-A) + + asamSystemAccessOperatorID OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Access Operator ID is a unique identifier representing an operator. + This identifier is randomly generated by ALU, then assigned to an + operator. + + The identifier is configured at the operator's premises. + + A value of ZERO signifies that an access operator ID has not been + configured. Decimal values 1 to 15 are reserved for future use. + + ALCATEL NOTE: + ACCESS: NA + USAGE: NA + PERSIST: YES + INSRVMOD: YES + RANGE: 0..65535 + DEFVALUE: 0 + UNITS: NA + SPARSE: NA + DESCR: NA" + ::= { asamSystemMIB 33 } + + asamSystemActivatedCDE OBJECT-TYPE + SYNTAX INTEGER (1..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Activated CDE is a bitmap listing the CDE features that are active. + + CDE features are activated during system startup only, and are + based on the configured Access Operator ID. + + This field can display upto 32 bits (big endian) + + Following list specifies which CDE feature is defined for each bit: + + 1 NASPortIDWithTwoDigits + 2 VRRPProxyForEiBridge + 3 MgntVLANpbit6 + 4 IgmpAntiSpoofingDisabled + 5 TL1UdpModifiedBehaviour + 6 vMACPortIdFromLine + 7 IsdnBATextBasedIID + 8 MCTransparencyForiBridge + 9 ActivateStdConfForIhubNT + 10 TransactionManagement + 11 MACAddressMobility + 12 UniversalSFP + 13 ShdslCTC + 14 UpLoopAttenuationOffset + 15 L2DslLtSwARPRelay + 16 MigrationNVLTDtoNDLTGAllowed + 17 pre-R35PPPQoSHandling + 18 XdslAutoswitchSupported + 19 IsSFPReassignmentAllowed + 20 IsVMACLogicalSlotidSupported + 21 ShdslParametersNotReportedWhenPairCut + 22 DualXfpAllowedNCNCH + 23 GPONRemoteDSTagsTreatment + 24 XdslDefaultProfileModelTR165 + 25 IsIpv6LightLlaIpantispoofingSupport + 26 MultipleExternalSFTPServers + 27 IsdnBaPermanentL2Agw + 28 EmopOnuMulticastProvision + 29 IsCodetelLegacyModeSupport + 30 IsRtpDelayInMsecSupported + 31 TL1pre-R4010Behaviour + 32 DSPSyncDelaySupported + + ALCATEL NOTE: + ACCESS: NA + USAGE: NA + PERSIST: NA + INSRVMOD: NA + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NA + DESCR: NA" + ::= { asamSystemMIB 34 } + + asamSystemPortAddressingMode OBJECT-TYPE + SYNTAX INTEGER { + sequential (1), + slotBased (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object allows the manager to configure the faceplate port + addressing mode used by operators in CLI and TL1. + With the mode set to , the operator must specify the port + as a sequential number that span the various cards in the system. + With the mode set to , the operator must specify the + ports as a combination of card type, rack/slot, port type + and faceplate port number. + In the current release this object is still read only, in future + releases the default mode for legacy ports and systems + can be changed to . + New systems with non-legacy ports (overlapping port numbers, XFPs), + this object is set to and cannot be changed. + The default for this object is on legacy systems and + on new systems. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: 1..2 + PERSIST: YES DEFVALUE: see above UNITS: -" + ::= { asamSystemMIB 35 } + + peripheralMgntMacFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF PeripheralMgntMacFilterEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The peripheral management mac filter table. + + For enhanced security in remote cabinets, it is possible to restrict + allowed destination MAC addresses in upstream Ethernet traffic on the + peripheral port to a white-list of 20 allowed MAC address ranges. + + Each entry of this list consists of an Original manufacturer Unique + Identifier (OUI) value, covering the 3 Most Significant Bytes (MSB) + of the public MAC address. + + A begin and end value of a single consecutive range of MAC addresses + for the above OUI covers at maximum the full 3 Least Significant + Bytes (LSB) of the public MAC address. + + ALCATEL NOTE: + TABLESIZE: 20 + DESCR: NA" + + ::= { asamSystemMIB 36 } + + peripheralMgntMacFilterEntry OBJECT-TYPE + SYNTAX PeripheralMgntMacFilterEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A filter entry in the management mac filter table. + On the NRCD-B the filter is a filter on the destination mac address of + the frames received over this port. + On other cards/systems, the + filter is a filter on the source mac address of the frames received + over this port. + + Unused filter entries have a start and end MAC address of + 00.00.00.00.00.00, which is the default. + + A special filter entry 7F.FF.FF.00.00.00 - 7F.FF.FF.FF.FF.FF is + provided to always match with any mac address. Adding + this entry therefore disables the MAC filter. + + Both MAC addresses in a single filter entry always have the same OUI. + " + + INDEX { peripheralMgntMacFilterIndex } + ::= { peripheralMgntMacFilterTable 1} + + PeripheralMgntMacFilterEntry ::= + SEQUENCE { + peripheralMgntMacFilterIndex INTEGER (1..20), + peripheralMgntMacFilterMacRangeFirst MacAddress, + peripheralMgntMacFilterMacRangeLast MacAddress + } + + peripheralMgntMacFilterIndex OBJECT-TYPE + SYNTAX INTEGER (1..20) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The index for the peripheralMgntMacFilter table. A maximum of 20 mac + filters is supported. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: 1..20 + PERSIST: YES DEFVALUE: NA UNITS: NA" + + ::= { peripheralMgntMacFilterEntry 1} + + peripheralMgntMacFilterMacRangeFirst OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Specifies the first MAC address of the allowed range. + Default value 00.00.00.00.00.00 + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 0 UNITS: -" + + ::= { peripheralMgntMacFilterEntry 2 } + + peripheralMgntMacFilterMacRangeLast OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Specifies the last MAC address of the allowed range. + At least the OUI part should match the OUI of the + peripheralMgntMacFilterMacRangeFirst MAC address. + Default value 00.00.00.00.00.00 + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: YES DEFVALUE: 0 UNITS: -" + + ::= { peripheralMgntMacFilterEntry 3 } + +asamLiSeparate OBJECT-TYPE + SYNTAX INTEGER + { + disabled (0), + enabled (1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " + Parameter used to create a separate LI management plane; i.e to + restrict creation/modification of operators that can access lawful + intercept data. This object is not applicable to ISAM 7367 SX / 7363 MX + systems (Standalone Single-board Vectoring Box and NGVR). + + 'disabled': + CLI user with security privileges can: + -set li-user,li-admin user privileges + -create a LI view + -attach a LI view to a usergroup + -modify a LI view + SNMP user with view on USM,VACM MIB's can: + -create a LI view + -attach a LI view to a usergroup + -modify a LI view + + 'enabled': + CLI user with security and li-admin user privilege can: + -set li-user,li-admin user privileges + -create a LI view + -attach a LI view to a usergroup + -modify a LI view + SNMP user with view on USM,VACM and IHUB LI ADMIN MIB's can: + -create a LI view + -attach a LI view to a usergroup + -modify a LI view + + Notes: + LI view= view with access on IHUB LI MIB and/or IHUB LI ADMIN MIB + Before setting this value to enabled make sure that: + - a CLI user exist with li-admin privilege. + - a SNMP user exist with access to IHUB LI ADMIN MIB + + ALCATEL NOTE: Applicable to higig NTs + SUPPORT: YES INSRVMOD: NA RANGE: NA + PERSIST: YES DEFVALUE: disabled UNITS: NA + + " + DEFVAL { disabled } + ::= { asamSystemMIB 37 } + +asamSystemALSState OBJECT-TYPE + SYNTAX INTEGER + { + disabled (1), + enabled (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Parameter used to enable / disable ALS (Automatic Laser Shutdown) system wide. + ALS enable / disable will be applied only for NT & NTIO xFPs. + + 'disabled': + System wide ALS is disabled + + 'enabled': + System wide ALS is enabled + + Notes: + Applicable to + xFP type : Optical only + NTs : NANT-D, FANT-F xFPs + NTIOs : NCNC-B/C/D/E/F/H xFPs + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: NA + PERSIST: YES DEFVALUE: enabled UNITS: NA + + " + DEFVAL { enabled } + ::= { asamSystemMIB 41 } + +asamSystemCustomerId OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A textual string identifying the customer assigned in system level. + Default value is 'available', which means system customer id is + not configured. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: NA + PERSIST: YES DEFVALUE: available UNITS: -" + ::= { asamSystemMIB 43 } + +asamSystemAutoSwitchAtmPtm OBJECT-TYPE + SYNTAX INTEGER + { + enable (1), + disable (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This parameter allows the manager to enable or disable an Auto-Switching + between ATMoADSLx and PTMoVDSLx at system wide. + The supported values are, + 1 (enable) - enables auto-switching between ATM and PTM at system wide. + 2 (disable) - disables auto-switching between ATM and PTM at system wide. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: NA + PERSIST: YES DEFVALUE: disable UNITS: NA + + " + DEFVAL { disable } + ::= { asamSystemMIB 44 } + +asamSystemAutoSwitchVdslStepUpDelay OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This parameter allows the manager to set delay time (in seconds) for + auto-switch stepup to VDSL service. The auto-switch step-up request for + VDSL service will be considered for the xdsl line failure (LOS/LPR) which + received after this delay time from the time of fallback to ATMoADSLx + service. + The supported values are 0 to 65535. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: 0..65535 + PERSIST: YES DEFVALUE: 3600 UNITS: seconds " + + DEFVAL { 3600 } + ::= { asamSystemMIB 45 } + +asamSystemUplinkMode OBJECT-TYPE + SYNTAX INTEGER + { + auto (1), + ptp (2), + gpon (3), + bonded (4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Parameter used to configure uplink mode. + Notes: + After changing uplink-mode, new value only takes effect after system reboot. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: NA + PERSIST: YES DEFVALUE: auto UNITS: NA " + DEFVAL { auto } + ::= { asamSystemMIB 46 } + + + asamSystemCurrentUplinkMode OBJECT-TYPE + SYNTAX INTEGER + { + ptp (1), + gpon (2), + bonded (3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Parameter used to current uplink mode. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: NA + PERSIST: YES DEFVALUE: NA UNITS: NA " + ::= { asamSystemMIB 47 } + + asamSystemVoiceOswp OBJECT-TYPE + SYNTAX INTEGER { + novoice (0), + h248 (1), + sip (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The voice software when system startup. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: 0..2 + PERSIST: YES DEFVALUE: sip(2) UNITS: -" + DEFVAL { sip } + ::= { asamSystemMIB 48 } + + asamSystemActivatedCDEExtended OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(32)) + + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Activated CDE is a bitmap listing the CDE features that are active. + + CDE features are activated during system startup only, and are + based on the configured Access Operator ID. + This field can display upto 256 bits (big endian) + + Following list specifies which CDE feature is defined for each bit: + + 1 NASPortIDWithTwoDigits + 2 VRRPProxyForEiBridge + 3 MgntVLANpbit6 + 4 IgmpAntiSpoofingDisabled + 5 TL1UdpModifiedBehaviour + 6 vMACPortIdFromLine + 7 IsdnBATextBasedIID + 8 MCTransparencyForiBridge + 9 ActivateStdConfForIhubNT + 10 TransactionManagement + 11 MACAddressMobility + 12 UniversalSFP + 13 ShdslCTC + 14 UpLoopAttenuationOffset + 15 L2DslLtSwARPRelay + 16 MigrationNVLTDtoNDLTGAllowed + 17 pre-R35PPPQoSHandling + 18 XdslAutoswitchSupported + 19 IsSFPReassignmentAllowed + 20 IsVMACLogicalSlotidSupported + 21 ShdslParametersNotReportedWhenPairCut + 22 DualXfpAllowedNCNCH + 23 GPONRemoteDSTagsTreatment + 24 XdslDefaultProfileModelTR165 + 25 IsIpv6LightLlaIpantispoofingSupport + 26 MultipleExternalSFTPServers + 27 IsdnBaPermanentL2Agw + 28 EmopOnuMulticastProvision + 29 IsCodetelLegacyModeSupport + 30 IsRtpDelayInMsecSupported + 31 TL1pre-R4010Behaviour + 32 DSPSyncDelaySupported + 33 DhcpOption82Transparent + 34 AutomaticPMCollection + 35 LineIdDisplayPANIHeader + 36 ANCP-RFC6320CompliantentProtocolSupported + 37 CVlanPBitBasedSchedulingDS + 38 IsLineShaperEnabled + 39 CVLANRangeBasedCtrlProtocolAwareness + 40 FourQueuesUpstreamCatan + 41 CMCCInteroperabilityNPBridgeFiltering + 42 IsPTMLineShaperDisabled + 43 PopulateDHCPOption82.2InHex + 44 L3Multicast + 45 IGMPMarkPriorityBitToValue6 + 46 ItfSubnetScale32 + 47 IsAutoPortResetSupported + 48 ReducedDsObcPolicer + 49 EponUniDimensionScaleup + 50 EontPerformanceMonitorOptimization + 51 EponQuickPonCutover + 52 PppDhcpTlv90Tlv91OptionAdd + 53 SwPoliceNdMldProtoAt100Pps + 54 IsPPPOEDownstreamRelayEnabled + 55 UseSpecificHoldOffTime + 56 HguTr069Configuration + 57 MaskParityError + 58 DisableSfpAlcatelStringCheckPtpLt + 59 IsQosMarkerProfInnerPbitSupported + 60 QosBandwidtProfileConfigOnUni + 61 QosQueuesAggrConfigSupport + 62 ModifyNbrOfPortsOnOntCardAllowed + 63 LtBootPriority + 64 NetworkItfMtuDefault + 65 RemovePasswordSpecialCharReq + 66 CpuFilterPortRange + 67 ReducedPresenceIndicationTimeout + 68 LldpSubtypeInterfaceName + 69 MigrationRDLTCtoRDLTDAllowed + 70 MigrationNDLTFtoNDLTJAllowed + 71 MigrationNDLTGtoNDLTKAllowed + 72 IsStunnelMipSupported + 73 SupportRemoteShelfOnLtPort + 74 RemoveDhcpSessionIfPortAdminDown + 75 VvplsUnknownMcDrop + 76 GponIsSupportingRunTimeSetMcPbit + 77 ArpPollingAndSnooping + 78 CablePairIdentificationEnhancement + 79 ArpRemoteIdCheckDisable + 80 VplusVectLowspectrumOnlySupported + 81 IsMegacoLawfulInterceptSupported + 82 MiiUniversalBbServSupport + 83 SupportNotTodOntClockSync + 84 EfmOamOrgSpecOlidSupport + 85 DtagAlarmsForClockDefects + 86 MigrationNDLTCtoNDLTKAllowed + 87 IsSipSelfRingingSupported + 88 PmCdrCount5Min + 89 FwWatchdogFeatureForL2PlusLt + 90 LimitedTL1ForXGSPON + 91 IsAttAricentOntSupported + 92 IsSipQuickLinetestSupported + 93 IsMegacoQuickLinetestSupported + 94 SupportIgmpRowidSyncByMibReset + 95 OnuProvisioningBasedOnOnuType + 96 IfNameIncludesAidInfo + 97 CrossVlanPolicerSharing + 98 StunnelCvlanPbitRemark + 99 MaxMacPerUplinkMx + 100 OperatorSpecificTrapsSupported + 101 DhcpTransparency + 105 DropStandbyLinkTraffic + + + ALCATEL NOTE: + ACCESS: NA + USAGE: NA + PERSIST: NA + INSRVMOD: NA + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NA + DESCR: NA" + ::= { asamSystemMIB 49 } + + asamSuperuserAuthByTacacsPlus OBJECT-TYPE + SYNTAX INTEGER { + enabled (1), + disabled (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The TL1/CLI user ID SUPERUSER/isadmin is optionally authenticated by + Tacacs+ based protocol on this object. When disabled, SUPERUSER/isadmin + is always authenticated by the local user database. When enabled, + SUPERUSER/isadmin authentication is initially attempted with Tacacs+,but + the authentication will fall back to the local TL1/CLI user database, if + all Tacacs+ servers are disabled, or the Tacacs+ servers are not + responding successfully to the authentication request. + Note that Tacacs+ is applicable only for CLI user from R5.2 onwards. + + ALCATEL NOTE: + SUPPORT: YES + PERSIST: YES + INSRVMOD: NA + RANGE: 1..2 + DEFVALUE: 2 + UNITS: NA" + DEFVAL { disabled } + ::= { asamSystemMIB 50 } + + asamExternalLedsStatus OBJECT-TYPE + SYNTAX INTEGER { + enabled (1), + disabled (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This MIB object is used to administratively turn off LEDs which are visible from the + outside on some equipment practices like sealed remotes. By default, LEDs are enabled which + means they are working normally and represent the actual status of the concerned item. If + LEDs are disabled, they won't show any light even though an error status should be reported. + + This MIB object is only supported on some equipment practices. If not supported this + MIB object will return enabled when read. + + ALCATEL NOTE: + SUPPORT: YES + PERSIST: YES + INSRVMOD: NA + RANGE: 1..2 + DEFVALUE: 1 + UNITS: NA" + DEFVAL { enabled } + ::= { asamSystemMIB 51 } + + asamSystemMirrorVoice OBJECT-TYPE + SYNTAX INTEGER + { + disabled(1), + ingress(2), + egress(3), + both(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Enable/disable voice mirror of ingress/egress/both voice packets. + Default value is Disabled + ALCATEL NOTE: + ACCESS: NA USAGE: OPT + PERSIST: YES INSRVMOD: YES + RANGE: 1..4 DEFVALUE: 1[disabled] + UNITS: NA SPARSE: NA + DESCR: NA" + DEFVAL { disabled } + ::= { asamSystemMIB 52 } + + -- ================================================================== + -- | START TECH SUPPORT OBJECTS | + -- ================================================================== + + + techSupport OBJECT IDENTIFIER ::= { asamSystemMIB 53 } + + asamTechSupportEnableDisable OBJECT-TYPE + SYNTAX INTEGER { + disabled (1), + enabled (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Enable/disable the techSupport functionality + This attribute is only available on equipment practices + that support this feature. + When not supported noSuchName will be returned. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..2 + PERSIST: NO DEFVALUE: enabled (2) UNITS: NA" + DEFVAL { enabled } + ::= { techSupport 1 } + + TechSupportSessionId ::= INTEGER (0..65535) + + TechSupportSessionType ::= INTEGER { + crashLog(1), + boardOnDemand(2), + ifIndexOnDemand(3) + } + + + + + asamTechSupportPurgeFiles OBJECT-TYPE + SYNTAX INTEGER + { + noAction(1), + purge (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is a button-like object and is used to clear all + collected TechSupport files. Next to the Tech Support files + related to board crashes, also all on-demand files wil be + removed. + Setting this object with value noAction will be accepted but + has no effect. + Value noAction will be returned when read. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..2 + PERSIST: YES DEFVALUE: 1 UNITS: NA" + DEFVAL { noAction } + ::= { techSupport 2 } + + asamTechSupportOnDemandFreeSessionId OBJECT-TYPE + SYNTAX TechSupportSessionId + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object provides a free session id that can be used for launching + an on demand Tech Support file session via asamTechSupportActionTable + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0..65535 + PERSIST: NO DEFVALUE: NA UNITS: NA" + ::= { techSupport 3 } + + asamTechSupportActionTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamTechSupportActionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The TechSupport Action Table + Use this table to launch On Demand Tech Support File generation" + ::= { techSupport 4 } + + asamTechSupportActionEntry OBJECT-TYPE + SYNTAX AsamTechSupportActionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the asamTechSupportSessionTable." + INDEX { asamTechSupportActionId} + ::= {asamTechSupportActionTable 1} + + AsamTechSupportActionEntry ::= + SEQUENCE { + asamTechSupportActionId INTEGER, + asamTechSupportActionEvent INTEGER, + asamTechSupportActionSessionId TechSupportSessionId, + asamTechSupportActionType TechSupportSessionType, + asamTechSupportActionObject INTEGER, + asamTechSupportActionServerIP IpAddress, + asamTechSupportActionFile OCTET STRING(SIZE(1..255)) + } + + asamTechSupportActionId OBJECT-TYPE + SYNTAX INTEGER (1..1) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The index of the Tech Support Action Table Session + Entry with id 1 exists and is to be used for creating + new tech support on demand requets. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: 0..65535 + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamTechSupportActionEntry 1} + + asamTechSupportActionEvent OBJECT-TYPE + SYNTAX INTEGER + { + generate (1), + clear (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Indicate which action to trigger. + The Following scenarios are possible: + - Generate an On Demand TS File + A set with the below fields specified will generate an on-demand + Tech Support file generation for a dedicated board. + It will result in the creation of a row in the + asamTechSupportSessionTable by which the progress of the generation + can be followed. When the Session goes into done state, then the + corresponding file can be retrieved from /pub/TS/ONDEMAND + The Mandatory fields to be set in one PDU are + asamTechSupportActionEvent : MUST be generate (1) + asamTechSupportActionType : MUST be boardOnDemand (2) + asamTechSupportActionObject : Equipment Slot ID + asamTechSupportActionFile : filename to write + In case a dedicated SessionId is wanted, it can be set via the following + optional field: + asamTechSupportActionSessionId : requested session id + asamTechSupportActionServerIP is also an optional fields which if + set should be fixed to value 0 + - Clear an On Demand TS File + A set with the below fields will results in the removal of the entry + from the asamTechSupportSessionTable and the corresponding file from disk. + The Mandatory fields to e set in 1 PDU are + asamTechSupportActionEvent : MUST be clear(2) + asamTechSupportActionSessionId : SessionId to remove + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..2 + PERSIST: YES DEFVALUE: 1 UNITS: NA" + DEFVAL { generate } + ::= { asamTechSupportActionEntry 2 } + + asamTechSupportActionSessionId OBJECT-TYPE + SYNTAX TechSupportSessionId + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Specify this value in case a dedicated session ID is + to be used for this request. To find a good unique session-id, a read + can be done to asamTechSupportOnDemandFreeSessionId. If a value of 0 is + given, then the system will automatically select a session Id. + + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: 0..65535 + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamTechSupportActionEntry 3} + + asamTechSupportActionType OBJECT-TYPE + SYNTAX TechSupportSessionType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The type corresponding to the stored or requested Tech Support File. + - crashLog : type for auto generated crashlog TS files for boards + - boardOnDemand : type for requesting an on-demand TS file for boards + - ifIndexOnDemand : type for requesting an on-demand TS file for a specific ifIndex + + Currently only boardOnDemand is supported. The other values will be rejected. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: 2 or 3 + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { asamTechSupportActionEntry 4 } + + + asamTechSupportActionObject OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Identifier that indicates for which object that the Tech Support File was + generated or requested. + For a boardOnDemand(2) request, the asamTechSupportSessionObject needs to be set to + the Equipment Slot Id of the board for which the Tech Support file is to be generated. + For a ifIndexOnDemand(3) request, the asamTechSupportSessionObject needs to be set to + the if-index corresponding to the PON or ONT. + + Currently only boardOnDemand(2) requests are supported, hence the value for + this field needs to be populated with the Equipment Slot Id. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: see above + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamTechSupportActionEntry 5} + + asamTechSupportActionServerIP OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The IP address of the server where the Tech Support File will be uploaded to. + or 0.0.0.0 in case the file needs to be stored locally on the node. + + Currently only a value of 0 is accepted as input. + This field is an optional field, but if specified, then it must be set to 0. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: see above + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamTechSupportActionEntry 6} + + asamTechSupportActionFile OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The filename that identifies the Tech Support File. + 2 restrictions apply + - For storing locally on the Node + identified via asamTechSupportActionServerIP = 0 + size of asamTechSupportActionFile is max 13 characters + structure : filename (only ._- allowed as special characters) + - For storing on a remote server + server is identified via asamTechSupportActionServerIP = a.b.c.d + allowed length of asamTechSupportActionFile is max 255 chars + structure : path/filename + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: see above + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamTechSupportActionEntry 7} + + asamTechSupportSessionTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamTechSupportSessionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The TechSupport Session Table" + ::= { techSupport 5 } + + asamTechSupportSessionEntry OBJECT-TYPE + SYNTAX AsamTechSupportSessionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the asamTechSupportSessionTable." + INDEX { asamTechSupportSessionId} + ::= {asamTechSupportSessionTable 1} + + AsamTechSupportSessionEntry ::= + SEQUENCE { + asamTechSupportSessionId TechSupportSessionId, + asamTechSupportSessionType TechSupportSessionType, + asamTechSupportSessionObject INTEGER, + asamTechSupportSessionServerIP IpAddress, + asamTechSupportSessionFile OCTET STRING(SIZE(1..255)), + asamTechSupportSessionStatus INTEGER, + asamTechSupportSessionError INTEGER, + asamTechSupportSessionSize INTEGER, + asamTechSupportSessionTime NetworkTimeInSeconds + } + asamTechSupportSessionId OBJECT-TYPE + SYNTAX TechSupportSessionId + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A unique value to identify a Tech Support Session + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: 0..65535 + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamTechSupportSessionEntry 1} + + asamTechSupportSessionType OBJECT-TYPE + SYNTAX TechSupportSessionType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type corresponding to the stored or requested Tech Support File. + - crashLog : type for auto generated crashlog TS files for boards + - boardOnDemand : type for requesting an on-demand TS file for boards + - ifIndexOnDemand : type for requesting an on-demand TS file for a specific ifIndex + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: 1,2 or 3 + PERSIST: YES DEFVALUE: NA UNITS: -" + ::= { asamTechSupportSessionEntry 2 } + + + asamTechSupportSessionObject OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identifier that indicates for which object that the Tech Support File was + generated or requested. + 2 cases exist: + - asamTechSupportSessionObject = slotId + for asamTechSupportSessionType crashLog or boardOnDemand + - asamTechSupportSessionObject = ifIndex + for asamTechSupportSessionType ifIndexOnDemand + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: see above + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamTechSupportSessionEntry 3} + + asamTechSupportSessionServerIP OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The IP address of the server where the Tech Support File will be uploaded to. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: see above + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamTechSupportSessionEntry 4} + + asamTechSupportSessionFile OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The filename that identifies the Tech Support File. + format + - filename [max 13 characters] + - fileserver:path/filename [ max 255 chars] + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: see above + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamTechSupportSessionEntry 5} + + asamTechSupportSessionStatus OBJECT-TYPE + SYNTAX INTEGER { + busy(1), + failed(2), + done(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object shows the status for a session-entry. + The initial status is busy(1). + When the generation completes successfully, then it goes to done(3). + In case of an error, then it goes to failed(2) state and the failure + reason can be found by reading the asamTechSupportSessionError field. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: see above + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamTechSupportSessionEntry 6} + + asamTechSupportSessionError OBJECT-TYPE + SYNTAX INTEGER { + no-error(1), + conv-error(2), + send-ping(3), + ts-not-avail(4), + inv-ping-resp(5), + send-gen(6), + gen-timeout(7), + inv-gen-resp(8), + send-info(9), + info-timeout(10), + inv-info-resp(11), + request-data(12), + data-timeout(13), + inv-data-resp(14), + res-acquiring(15), + res-acq-timeout(16), + incomplete(17), + res-not-avai(18), + disk-file-error(19), + encrytion-error(20) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object shows error information for a failed session-entry. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: see above + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamTechSupportSessionEntry 7} + + asamTechSupportSessionSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object shows the size of the collected TS file + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: see above + PERSIST: YES DEFVALUE: NA UNITS: -" + + ::= {asamTechSupportSessionEntry 8} + + asamTechSupportSessionTime OBJECT-TYPE + SYNTAX NetworkTimeInSeconds + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Shows the Time in seconds from 1900 when the TS-entry was + collected. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: see above + PERSIST: NO DEFVALUE: NA UNITS: -" + + ::= {asamTechSupportSessionEntry 9} + + -- ================================================================== + -- | END TECH SUPPORT OBJECTS | + -- ================================================================== + + + asamSystemScalingMode OBJECT-TYPE + SYNTAX INTEGER + { + l2plus(1), + l3plusHost(2), + l3plusLPM(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An enum indicating configured scaling mode of BroadCom switch. Applicable for FX next generation NT(FANT-G). + l2plus-Mode with L2 FDB table having higher scaling of 256K with l3 scaling as in legacy FANT-F ( L3 host -16K + L3 LPM- 16K) + l3plusHost-Mode with L3 host/ARP table having higher scaling of 16K -IPv4 + 32K - IPv6 + 4K -IPMC with L2 FDB - 96K & L3 LPM -16K as in legacy FANT-F + l3plusLPM-Mode with L3 LPM/route table having higher scaling of 16K - IPv4 + 24K - IPv6 with L2 FDB - 32K & L3 host as in l3plus_host mode + This object is not applicable to ISAM 7367 SX/ 7363 MX systems (Standalone Single-board Vectoring Box and NGVR). + + ALCATEL NOTE: + + SUPPORT: YES INSRVMOD: NO RANGE: 1..3 + PERSIST: YES DEFVALUE: 1 UNITS: NA" + + ::= { asamSystemMIB 54 } + + asamSystemOperationalScalingMode OBJECT-TYPE + SYNTAX INTEGER + { + l2plus(1), + l3plusHost(2), + l3plusLPM(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An enum indicating operational scaling mode of BroadCom switch. Applicable for FX next generation NT(FANT-G). + l2plus-Mode with L2 FDB table having higher scaling of 256K with l3 scaling as in legacy FANT-F ( L3 host -16K + L3 LPM- 16K) + l3plusHost-Mode with L3 host/ARP table having higher scaling of 16K -IPv4 + 32K - IPv6 + 4K -IPMC with L2 FDB - 96K & L3 LPM -16K as in legacy FANT-F + l3plusLPM-Mode with L3 LPM/route table having higher scaling of 16K - IPv4 + 24K - IPv6 with L2 FDB - 32K & L3 host as in l3plus_host mode + This object is not applicable to ISAM 7367 SX/ 7363 MX systems (Standalone Single-board Vectoring Box and NGVR). + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: 1..3 + PERSIST: NO DEFVALUE: 1 UNITS: NA" + + ::= { asamSystemMIB 55 } + + asamSystemZTPState OBJECT-TYPE + SYNTAX INTEGER + { + disabled (1), + enabled (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " Enable/disable the ZTP (Zero Touch Provision) functionality + This attribute is only available on equipment practices + that support this feature. + If not supported this MIB object will return disabled when read. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: NA + PERSIST: YES DEFVALUE: disabled (1) UNITS: NA + + " + DEFVAL { disabled } + ::= { asamSystemMIB 56 } + + asamSystemRFOverlayModule OBJECT-TYPE + SYNTAX INTEGER + { + disabled (1), + enabled (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This MIB object is used to enable or disable the RF Overlay Module (SX-8F and SX-16F only). + This MIB object is only supported on some equipment practices. + If not supported this MIB object will return disabled when read. + + ALCATEL NOTE: + SUPPORT: YES + PERSIST: YES + INSRVMOD: NA + RANGE: 1..2 + DEFVALUE: 1 + UNITS: NA + " + DEFVAL { disabled } + ::= { asamSystemMIB 57 } + + asamSystemArpPollingInterval OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value of the object asamSystemArpPollingInterval specifies ARP polling interval. The range of the value is from 120s to 1096s.The default polling interval is 120s. + ALCATEL NOTE: + ACCESS: RW USAGE: MAND + PERSIST: YES INSRVMOD: NO + RANGE: 120..1096 DEFVALUE: 120 + UNITS: NA SPARSE: NA + DESCR: NA + " + DEFVAL { 120 } + ::= { asamSystemMIB 59 } + + asamUplinkOutbandMgntIpAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This MIB object is used to save uplink based out-band manangement IP. + This MIB object is only supported on 7363 MX and 7367 8F/16F/48U SX (Spumante based IWF). + + ALCATEL NOTE: + SUPPORT: YES + PERSIST: YES + INSRVMOD: YES + RANGE: NA + DEFVALUE: 0.0.0.0 + UNITS: NA + " + DEFVAL { 120 } + ::= { asamSystemMIB 60 } + + asamUplinkOutbandMgntNetMask OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This MIB object is used to save uplink based out-band manangement IP's netmask. + This MIB object is only supported on 7363 MX and 7367 8F/16F/48U SX (Spumante based IWF). + + ALCATEL NOTE: + SUPPORT: YES + PERSIST: YES + INSRVMOD: YES + RANGE: NA + DEFVALUE: 0.0.0.0 + UNITS: NA + " + ::= { asamSystemMIB 61 } + + asamDstRecurringConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamDstRecurringConfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The asamDstRecurringConfTable has an entry for each daylight saving time + zone information with the specified week and weekday repeatedly. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: NA + PERSIST: YES DEFVALUE: NA UNITS: NA" + ::= { asamSystemMIB 62 } + + + asamDstRecurringConfEntry OBJECT-TYPE + SYNTAX AsamDstRecurringConfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each row entry contains information about a daylight saving time + zone. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: NA + PERSIST: YES DEFVALUE: NA UNITS: NA" + INDEX {asamDstRecurringZoneIndex} + ::= { asamDstRecurringConfTable 1 } + + AsamDstRecurringConfEntry ::= + SEQUENCE { + asamDstRecurringZoneIndex INTEGER, + asamDstConfStartWeekDay INTEGER, + asamDstConfStartWeek INTEGER, + asamDstConfStartMonth INTEGER, + asamDstConfStartHour INTEGER, + asamDstConfStartMinute INTEGER, + asamDstConfEndWeekDay INTEGER, + asamDstConfEndWeek INTEGER, + asamDstConfEndMonth INTEGER, + asamDstConfEndHour INTEGER, + asamDstConfEndMinute INTEGER, + asamDstRecurringAdjustment INTEGER, + asamDstRecurringIsAffectedSrc TruthValue, + asamDstRecurringRowStatus RowStatus + } + + asamDstRecurringZoneIndex OBJECT-TYPE + SYNTAX INTEGER (-780..840) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This represents a daylight saving time zone. This index must be unique + amongst the table entries. + Because snmp index can't recognise negative integer,so we shift the zone range to [0...1620] as a workaround + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: -780..840 + PERSIST: YES DEFVALUE: NA UNITS: NA" + ::= { asamDstRecurringConfEntry 1 } + + asamDstConfStartWeekDay OBJECT-TYPE + SYNTAX INTEGER { + sunday(0), + monday(1), + tuesday(2), + wednesday(3), + thursday(4), + friday(5), + saturday(6) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The starting day of the week when the summer time will + take effect. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0..6 + PERSIST: YES DEFVALUE: sunday(0) UNITS: NA" + DEFVAL { sunday } + ::= { asamDstRecurringConfEntry 2 } + + asamDstConfStartWeek OBJECT-TYPE + SYNTAX INTEGER { + first(0), + second(1), + third(2), + fourth(3), + last(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The starting week of the month when the summer time will + take effect. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0..4 + PERSIST: YES DEFVALUE: first(0) UNITS: NA" + DEFVAL { first } + ::= { asamDstRecurringConfEntry 3 } + + asamDstConfStartMonth OBJECT-TYPE + SYNTAX INTEGER { + january(0), + february(1), + march(2), + april(3), + may(4), + june(5), + july(6), + august(7), + september(8), + october(9), + november(10), + december(11) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The starting month of the year when the summer time will + take effect. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0..11 + PERSIST: YES DEFVALUE: january(0) UNITS: NA" + DEFVAL { january } + ::= { asamDstRecurringConfEntry 4 } + + asamDstConfStartHour OBJECT-TYPE + SYNTAX INTEGER (0..23) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The hour at which the summer time will take effect. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0..23 + PERSIST: YES DEFVALUE: 0 UNITS: hours" + DEFVAL { 0 } + ::= { asamDstRecurringConfEntry 5 } + + asamDstConfStartMinute OBJECT-TYPE + SYNTAX INTEGER (0..59) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of minutes after the hours defined by + asamDstConfStartHour when the summer time will + take effect. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0..59 + PERSIST: YES DEFVALUE: 0 UNITS: minutes" + DEFVAL { 0 } + ::= { asamDstRecurringConfEntry 6 } + + asamDstConfEndWeekDay OBJECT-TYPE + SYNTAX INTEGER { + sunday(0), + monday(1), + tuesday(2), + wednesday(3), + thursday(4), + friday(5), + saturday(6) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The day of the week when the summer time setting will + end. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0..6 + PERSIST: YES DEFVALUE: sunday(0) UNITS: NA" + DEFVAL { sunday } + ::= { asamDstRecurringConfEntry 7 } + + asamDstConfEndWeek OBJECT-TYPE + SYNTAX INTEGER { + first(0), + second(1), + third(2), + fourth(3), + last(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The week of the month when the summer time setting will + end. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0..4 + PERSIST: YES DEFVALUE: first(0) UNITS: NA" + DEFVAL { first } + ::= { asamDstRecurringConfEntry 8 } + + asamDstConfEndMonth OBJECT-TYPE + SYNTAX INTEGER { + january(0), + february(1), + march(2), + april(3), + may(4), + june(5), + july(6), + august(7), + september(8), + october(9), + november(10), + december(11) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The month of the year when the summer time setting will + end. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0..11 + PERSIST: YES DEFVALUE: january(0) UNITS: NA" + DEFVAL { january } + ::= { asamDstRecurringConfEntry 9 } + + asamDstConfEndHour OBJECT-TYPE + SYNTAX INTEGER (0..23) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The hour at which the summer time will stop taking effect. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0..23 + PERSIST: YES DEFVALUE: 0 UNITS: hours" + DEFVAL { 0 } + ::= { asamDstRecurringConfEntry 10 } + + asamDstConfEndMinute OBJECT-TYPE + SYNTAX INTEGER (0..59) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of minutes after the hours defined by + asamDstConfEndHour when the summer time will + stop taking effect. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0..59 + PERSIST: YES DEFVALUE: 0 UNITS: minutes" + DEFVAL { 0 } + ::= { asamDstRecurringConfEntry 11 } + + asamDstRecurringAdjustment OBJECT-TYPE + SYNTAX INTEGER (0..60) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of minutes that will be added to the time + when daylight saving time takes effect. The same number of minutes + will be subtracted from the time when the daylight saving time ends. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0..60 + PERSIST: YES DEFVALUE: 60 UNITS: NA" + DEFVAL { 60 } + ::= { asamDstRecurringConfEntry 12 } + + asamDstRecurringIsAffectedSrc OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of asamDstRecurringIsAffectedSrc indicates whether this + configuration entry match the OLT timezone. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..2 + PERSIST: YES DEFVALUE: 2 UNITS: NA" + DEFVAL { 2 } + ::= { asamDstRecurringConfEntry 13 } + + asamDstRecurringRowStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The row status used to create and delete rows in this table. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: NA + PERSIST: YES DEFVALUE: NA UNITS: NA" + ::= { asamDstRecurringConfEntry 14 } + + asamDstDateConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamDstDateConfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The asamDstDateConfTable has an entry for each daylight saving time + zone information with the specified with the corresponding specified days some year. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: NA + PERSIST: YES DEFVALUE: NA UNITS: NA" + ::= { asamSystemMIB 63 } + + asamDstDateConfEntry OBJECT-TYPE + SYNTAX AsamDstDateConfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each row entry contains information about a daylight saving time + zone. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: NA + PERSIST: YES DEFVALUE: NA UNITS: NA" + INDEX {asamDstDateZoneIndex} + ::= { asamDstDateConfTable 1 } + + AsamDstDateConfEntry ::= + SEQUENCE { + asamDstDateZoneIndex INTEGER, + asamDstConfStartDate Unsigned32, + asamDstConfEndDate Unsigned32, + asamDstDateAdjustment INTEGER, + asamDstDateIsAffectedSrc TruthValue, + asamDstDateRowStatus RowStatus + } + + asamDstDateZoneIndex OBJECT-TYPE + SYNTAX INTEGER (-780..840) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This represents a daylight saving time zone. This index must be unique + amongst the table entries. + Because snmp index can't recognise negative integer,so we shift the zone range to [0...1620] as a workaround + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: -780~840 + PERSIST: YES DEFVALUE: NA UNITS: minutes" + ::= { asamDstDateConfEntry 1 } + + asamDstConfStartDate OBJECT-TYPE + SYNTAX Unsigned32(1..4294967295) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The time when the daylight saving time will + take effect means the number of standard seconds since + 0h on 1 January 1900. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..4294967295 + PERSIST: YES DEFVALUE: NA UNITS: seconds" + ::= { asamDstDateConfEntry 2 } + + asamDstConfEndDate OBJECT-TYPE + SYNTAX Unsigned32(1..4294967295) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The time when daylight saving time will end means the + number of standard seconds since0h on 1 January 1900. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..4294967295 + PERSIST: YES DEFVALUE: NA UNITS: seconds" + ::= { asamDstDateConfEntry 3 } + + asamDstDateAdjustment OBJECT-TYPE + SYNTAX INTEGER (0..60) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of minutes that will be added to the time + when daylight saving time takes effect. The same number of minutes + will be subtracted from the time when the daylight saving time ends. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 0..60 + PERSIST: YES DEFVALUE: 60 UNITS: minutes" + DEFVAL { 60 } + ::= { asamDstDateConfEntry 4 } + + asamDstDateIsAffectedSrc OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of asamDstDateIsAffectedSrc indicates whether this + configuration entry match the OLT timezone. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..2 + PERSIST: YES DEFVALUE: 2 UNITS: NA" + ::= { asamDstDateConfEntry 5 } + + asamDstDateRowStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The row status used to create and delete rows in this table. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: NA + PERSIST: YES DEFVALUE: NA UNITS: NA" + ::= { asamDstDateConfEntry 6 } + + asamDstEnableDisable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This node indicates the status of daylight saving time. + If the value of this node is enable, means that daylight saving time is + enabled. + If the value is disable, means that daylight saving time is disabled. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..2 + PERSIST: YES DEFVALUE: disable(2) UNITS: NA" + DEFVAL { disable } + ::= { asamSystemMIB 64 } + + asamDstIsAffected OBJECT-TYPE + SYNTAX INTEGER + { + affected(1), + notAffected(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This node indicates whether daylight saving time comes into effect or not. + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 1..2 + PERSIST: YES DEFVALUE: notAffected(2) UNITS: NA" + DEFVAL { notAffected } + ::= { asamSystemMIB 65 } + + asamSystemBSNAPState OBJECT-TYPE + SYNTAX INTEGER + { + disabled (1), + enabled (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "BSNAP is a trace mechanism to keep binary snapshot trace of an sw error deteted, and this MIB object is used to enable of disable BSNAP + + ALCATEL NOTE: + SUPPORT: YES + PERSIST: YES + INSRVMOD: NA + RANGE: 1..2 + DEFVALUE: 1 + UNITS: NA + " + DEFVAL {disabled} + ::= { asamSystemMIB 66 } + + asamSystemBSNAPServerIP OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "BSNAP is a trace mechanism to keep binary snapshot trace of an sw error deteted, and this MIB object is used to set the BSNAP server IP + + ALCATEL NOTE: + SUPPORT: YES + PERSIST: YES + INSRVMOD: NA + RANGE: NA + DEFVALUE: 0.0.0.0 + UNITS: NA + " + ::= { asamSystemMIB 67 } + + asamSystemBSNAPServerPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "BSNAP is a trace mechanism to keep binary snapshot trace of an sw error deteted, and this MIB object is used to set the BSNAP server UDP port + + ALCATEL NOTE: + SUPPORT: YES + PERSIST: YES + INSRVMOD: NA + RANGE: NA + DEFVALUE: NA + UNITS: NA + " + ::= { asamSystemMIB 68 } +END diff --git a/mibs/nokia/ASAM-TC-MIB b/mibs/nokia/ASAM-TC-MIB new file mode 100644 index 0000000000..af198af5c8 --- /dev/null +++ b/mibs/nokia/ASAM-TC-MIB @@ -0,0 +1,183 @@ +ASAM-TC-MIB DEFINITIONS ::= BEGIN + +-- ============================================================================= +-- This specification is published by Alcatel under Non-Disclosure +-- Agreement(s) (NDA) with specific parties and has to be considered as +-- Confidential Information as defined in such NDA. +-- Alcatel reserves the right to revise this document for any reason, +-- including but not limited to conformity with standards promulgated by +-- various agencies, utilisation of advances in the state of the technical +-- areas, or the reflection of changes in the design of any equipment, +-- techniques, or procedures described or referred to herein. +-- The product specifications and other technical or performance information +-- contained herein are subject to change without notice. +-- Updates of this document will be issued under the above NDA's. +-- Alcatel makes no representation or warranty, expressed or implied, with +-- respect to the sufficiency, accuracy, or utility of any information or +-- opinion contained herein. Alcatel expressly advises that any use of for +-- any purpose or reliance upon this technical reference is at the risk of +-- the user and that Alcatel shall not be liable for any damage or injury +-- incurred by any person arising out of the sufficiency, accuracy, or +-- utility of any information or opinion contained herein. +-- This document is not to be construed as a suggestion to any manufacturer +-- to modify or change any of its products, nor does this document represent +-- any commitment by Alcatel to sell or purchase any product. +-- Nothing contained herein shall be construed as conferring by implication, +-- estoppel, or otherwise any license or right under any patent, whether or +-- not the use of any information herein necessarily employs an invention of +-- any existing or later issued patent. +-- Alcatel reserves the right not to offer any or all of these products and +-- to withdraw any or all of them at any future time. +-- Copyright (C) 2004, Alcatel. All Rights Reserved. +-- ============================================================================= + +-- MODULE-IDENTITY +-- LAST-UPDATED "200606131200Z" +-- ORGANIZATION "Alcatel" +-- CONTACT-INFO +-- +-- Email: asam.mibsupport@alcatel.be" +-- +-- DESCRIPTION +-- "This MIB module defines Textual Conventions that are shared by +-- Alcatel specified MIB modules. +-- +-- REVISION 200606131200Z +-- DESCRIPTION +-- "Version: 3EC17922EAAA_V3.2.0.0.0 +-- Editor: Marc Van Vlimmeren +-- Changes: Editorial updates" +-- +-- REVISION 200601231200Z +-- DESCRIPTION +-- "Version: 3EC17922EAAA_V2.0.0.0.0 +-- Editor: Bart Bogaert +-- Changes: Implemented BDFhw70643: strict syntax checks (smilint)" +-- +-- REVISION 200007260000Z +-- DESCRIPTION +-- "Version: 3EC17922AAAA_E4.2.0.0 +-- Editor: Rajesh Abbi +-- Changes: Initial Version" +-- +-- ============================================================================= +IMPORTS + asam FROM SYSTEM-MIB + Gauge FROM RFC1155-SMI; + +-- Profile related Textual Conventions +-- =================================== + +-- Profile Index +-- ============= +-- A Profile Index is used to uniquely identify a Profile in a +-- Table. The index must be unique for every profile in a table, +-- and may not be 0. +AsamProfileIndex ::= INTEGER(1..65535) + + +-- Profile Index +-- ============= +-- A Profile Index is used to uniquely identify a Profile in a +-- Table. The index must be unique for every profile in a table, +-- and may be 0. +AsamProfileIndexOrZero ::= INTEGER(0..65535) + + +-- Next Profile Index +-- ================== +-- A Next Profile Index is used by the Agent to inform the Manager +-- of the next available Profile Index that may be used for creating +-- a new Profile. This index must not be in use by an existing entry +-- in the table. A value of 0 indicates no more profiles may be +-- defined in the associated table. +AsamNextProfileIndex ::= INTEGER(0..65535) + +-- Max Profile Index +-- ================== +-- The Max Profile Index is used by the manager to know the maximum number +-- of profiles that can be created. +AsamMaxProfileIndex ::= INTEGER(0..65535) + +-- Profile Pointer +-- =============== +-- A Profile Pointer is a reference to a profile. +-- Its value may be equal to the Profile Index of an existing +-- profile, or 0. The value 0 is treated as a NULL reference - +-- ie: no profile is assumed to be referenced. +AsamProfilePointer ::= INTEGER(0..65535) + +-- Profile Name +-- ============ +-- A Profile Name uniquely identifies a profile in a table. +-- It is a human readable string up to 32 characters long +-- that is NOT case-sensitive, and may only contain following +-- characters : ['a'..'z','A'..'Z','0'..'9', '-', '_', '.']. +AsamProfileName ::= OCTET STRING (SIZE(1..32)) + +-- Profile Scope +-- ============= +-- The Profile Scope identifies the scope of the associated +-- Profile definition. Following scopes are defined: +-- o Local : Only defined for the associated NE (Network Element). +-- o Network : Defined for ALL NEs managed by the EMS. +-- Network Profiles may not be created/modified/deleted via the +-- local Craft Interface at the NE. +AsamProfileScope ::= INTEGER { + localScope (1), + networkScope(2) + } + +-- Profile Reference Count +-- ======================= +-- The Profile Reference Count indicates the number of entities using +-- a particular Profile instance. +-- If the value is 0, then this profile is "not in use", and may be +-- deleted. +-- If the value is greater than 0, then this profile is "in use", and +-- may NOT be deleted. +AsamProfileRefCount ::= INTEGER(0..65535) +AsamProfileRefCount32 ::= INTEGER(0..4294967295) + +-- Logging related Textual Conventions +-- =========================== + +LogLastEntry ::= INTEGER (0..4294967295) + +LogReset ::= INTEGER { + resetCompleted (1), + reset (2)} + +LogBufferSize ::= INTEGER (0..4294967295) + +LogFullAction ::= INTEGER { + wrap (1), + halt (2)} + +LogOverflowed ::= INTEGER { + notoverflowed (1), + overflowed (2)} + +LogIndex ::= INTEGER (0..4294967295) + +-- General Textual Conventions +-- =========================== + +-- SMIv1 does not give an explicit limit on the range of integers. +-- In most cases, the INTEGER range is assumed to be -2147483648 .. 2147483647. +-- This TC simulates an Unsigned32 from SMIv2. + +Uint32 ::= Gauge (0 .. 4294967295) + +-- Type Definitions moved from ASAM_SYSTEM_MIB + + NetworkTimeInSeconds ::= INTEGER (0..4294967295) + -- This type gives the distributed network time in + -- seconds encountered since January 1, 1900. + + NetworkTimeInMiliSeconds ::= INTEGER (0..4294967295) + -- This type gives the distributed network time in + -- miliseconds encountered since January 1, 1900. + + +END diff --git a/mibs/nokia/ITF-MIB b/mibs/nokia/ITF-MIB new file mode 100644 index 0000000000..fad065e4f1 --- /dev/null +++ b/mibs/nokia/ITF-MIB @@ -0,0 +1,1507 @@ +-- =========================================================================== + +-- MODULE IDENTITY +-- LAST-UPDATED "200810151200Z" +-- ORGANIZATION "Alcatel" +-- CONTACT-INFO "email:asam.mibsupport@alcatel.be" +-- DESCRIPTION +-- "IANAifType definitions. +-- Interfaces group and ifMIB from MIB-II (RFC1573)." +-- +-- REVISION "200810151200Z" +-- DESCRIPTION +-- "Version: 3EC15505EAAA E3.4.0.0 +-- Editor: Lucien Marcotte +-- Changes: +-- * ANTmt25551: Changed Alcatel Note to indicate objects #2-13 +-- of the IFxTable are not supported on the IACM." +-- +-- REVISION "201212071200Z" +-- DESCRIPTION +-- "Version: 3EC15505EAAA E4.0.10.3.2 +-- Editor: Vijayakumar KANNIAH +-- Changes: +-- * Implemented ALU01183232: Change SYNTAX definitions of ifXTable items +-- ifHCInOctets, ifHCInUcastPkts, ifHCInMulticastPkts, ifHCInBroadcastPkts, +-- ifHCOutOctets, ifHCOutUcastPkts, ifHCOutMulticastPkts and +-- ifHCOutBroadcastPkts from Counter to OCTET STRING" +-- * Implemented ALU01183232: Change SUPPORT statuses of ifXTable itmes +-- ifHCInOctets, ifHCInUcastPkts, ifHCInMulticastPkts, ifHCInBroadcastPkts, +-- ifHCOutOctets, ifHCOutUcastPkts, ifHCOutMulticastPkts and +-- ifHCOutBroadcastPkts from NO to YES" +-- +-- REVISION "200612191200Z" +-- DESCRIPTION +-- "Version: 3EC15505EAAA E4.2.1.2 +-- Editor: Diankun Zhang +-- Changes: +-- * Implemented BDFhw54921: Change SYNTAX definitions of ifXTable items +-- ifHCInOctets, ifHCInUcastPkts, ifHCInMulticastPkts, ifHCInBroadcastPkts, +-- ifHCOutOctets, ifHCOutUcastPkts, ifHCOutMulticastPkts and +-- ifHCOutBroadcastPkts from Counter64 to Counter" +-- * Implemented BDFhw54921: Change SUPPORT statuses of ifXTable itmes +-- ifHCInOctets, ifHCInUcastPkts, ifHCInMulticastPkts, ifHCInBroadcastPkts, +-- ifHCOutOctets, ifHCOutUcastPkts, ifHCOutMulticastPkts and +-- ifHCOutBroadcastPkts from NO to YES" +-- +-- REVISION "200612181200Z" +-- DESCRIPTION +-- "Version: 3EC15505EAAA E4.2.1.1 +-- Editor: Diankun Zhang +-- Changes: +-- * Implemented BDFhw54921: Change SYNTAX definitions of ifXTable items +-- ifHCInOctets, ifHCInUcastPkts, ifHCInMulticastPkts, ifHCInBroadcastPkts, +-- ifHCOutOctets, ifHCOutUcastPkts, ifHCOutMulticastPkts and +-- ifHCOutBroadcastPkts from Counter to Counter64 for complying with RFC +-- standards" +-- * Implemented BDFhw54921: Change SUPPORT statuses of ifXTable itmes +-- ifHCInOctets, ifHCInUcastPkts, ifHCInMulticastPkts, ifHCInBroadcastPkts, +-- ifHCOutOctets, ifHCOutUcastPkts, ifHCOutMulticastPkts and +-- ifHCOutBroadcastPkts from YES to NO" +-- +-- REVISION "200612051200Z" +-- DESCRIPTION +-- "Version: 3EC15505EAAA E4.2.1.0 +-- Editor: Diankun Zhang +-- Changes: +-- * Implemented BDFhw54921: Change SYNTAX definitions of ifXTable items +-- ifHCInOctets and ifHCOutOctets are commented out for complying with +-- SNMPv1 standards" + +-- REVISION "200601231200Z" +-- DESCRIPTION +-- "Version: 3EC15505EAAA_V2.4.1.0.0 +-- Editor: Bart Bogaert +-- Changes: +-- * Implemented BDFhw70643: strict syntax checks (smilint)" +-- +-- REVISION "200503151200Z" +-- DESCRIPTION +-- "Version: 3EC15505EAAA_E2.2.0.0 +-- Editor: Diane Pholien +-- Changes: +-- * addition of atmBonding(244) ifType value." +-- +-- REVISION "200404101200Z" +-- DESCRIPTION +-- "Version: 3EC15505EAAA_E1.1.0.1 +-- Editor: Rafael Van Driessche +-- Changes: +-- * removed the range in the definition of InterfaceIndex." +-- +-- REVISION "200404081200Z" +-- DESCRIPTION +-- "Version: 3EC15505EAAA_E1.1.0.0 +-- Editor: Rafael Van Driessche +-- Changes: +-- * addition of ifType values; +-- * addition of the range in the definition of InterfaceIndex; +-- * addition of InterfaceIndexOrZero." +-- +-- REVISION "200401121200Z" +-- DESCRIPTION +-- "Version: 3EC15505EAAA_E1.0.0.0 +-- Editor: Rafael Van Driessche +-- Changes: +-- * revision for iSAM with editorial changes; +-- * addition of ifType values." +-- +-- REVISION "200210311200Z" +-- DESCRIPTION +-- "Version: 3EC15505AAAA_E5.0.1.0 +-- Editor: F. Devolder +-- Changes: +-- * Add ifType to support GE-LSM in R5.0.10: hclTransport. +-- * Add ifTypes introduced in other releases: +-- vdsl, interleave, fast, ruemRuFiberLink, virtualTransport." +-- +-- REVISION "200108081200Z" +-- DESCRIPTION +-- "Version: 3EC15505AAAA_E5.0.0.0 +-- Editor: F. Devolder +-- Changes: +-- * Update Description-field of ifAdminStatus and ifOperStatus to +-- indicate that some states are not supported. +-- * Add IMA ifType to IANAifType. +-- * Replace INTEGER (-2147483648..2147483647) by INTEGER." +-- +-- REVISION "200101151200Z" +-- DESCRIPTION +-- "Version: 3EC15505AAAA_E4.2.0.0 +-- Editor: D. Chorafakis +-- Changes: +-- * Add IPGW ifTypes to IANAifType." +-- +-- REVISION "200006291200Z" +-- DESCRIPTION +-- "Version: 3EC15505AAAA_E4.1.0.0 +-- Editor: KGB +-- Changes: +-- * Add VoDSL ifTypes to IANAifType." +-- +-- REVISION "200002231200Z" +-- DESCRIPTION +-- "Version: 3EC15505AAAA_E4.1.0.0 +-- Editor: K. Van Eynde +-- Changes: +-- * Add idsl and hdsl ifTypes to IANAifType." +-- +-- =========================================================================== + +ITF-MIB DEFINITIONS ::= BEGIN + + IMPORTS + AutonomousType, TruthValue, TestAndIncr, RowStatus FROM SNMPv2-TC + PhysAddress, DisplayString, interfaces, mib-2 FROM RFC1213-MIB + OBJECT-TYPE FROM RFC-1212 + TimeTicks, Counter, Gauge FROM RFC1155-SMI + IANAifType FROM IANAifType-MIB; + + -- created from ifMIB (9311082155Z) + + ifMIB OBJECT IDENTIFIER ::= { mib-2 31 } + + ifMIBObjects OBJECT IDENTIFIER ::= { ifMIB 1 } + + OwnerString ::= OCTET STRING + + InterfaceIndex ::= INTEGER + + -- Alcatel note: + -- following definition is not part of RFC1573; + -- it has been added in RFC2233. + + InterfaceIndexOrZero ::= INTEGER (0..2147483647) + + ifNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of network interfaces (regardless of their current + state) present on this system. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { interfaces 1 } + + -- + -- ifTable + -- + + ifTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of interface entries. The number of entries is given by + the value of ifNumber. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP ifNumber." + ::= { interfaces 2 } + + ifEntry OBJECT-TYPE + SYNTAX IfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry containing management information applicable to a + particular interface. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { ifIndex } + ::= { ifTable 1 } + + IfEntry ::= SEQUENCE { + ifIndex InterfaceIndex, + ifDescr DisplayString, + ifType IANAifType, + ifMtu INTEGER, + ifSpeed Gauge, + ifPhysAddress PhysAddress, + ifAdminStatus INTEGER, + ifOperStatus INTEGER, + ifLastChange TimeTicks, + ifInOctets Counter, + ifInUcastPkts Counter, + ifInNUcastPkts Counter, + ifInDiscards Counter, + ifInErrors Counter, + ifInUnknownProtos Counter, + ifOutOctets Counter, + ifOutUcastPkts Counter, + ifOutNUcastPkts Counter, + ifOutDiscards Counter, + ifOutErrors Counter, + ifOutQLen Gauge, + ifSpecific OBJECT IDENTIFIER + } + + ifIndex OBJECT-TYPE + SYNTAX InterfaceIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value, greater than zero, for each + interface. It is recommended that values are assigned + contiguously starting from 1. The value for each + interface sub-layer must remain constant at least from + one re-initialization of the entity's network + management system to the next re-initialization. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifEntry 1 } + + ifDescr OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A textual string containing information about the + interface. This string should include the name of the + manufacturer, the product name and the version of the + interface hardware/software. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifEntry 2 } + + ifType OBJECT-TYPE + SYNTAX IANAifType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of interface. Additional values for ifType + are assigned by the Internet Assigned Numbers + Authority (IANA), through updating the syntax of the + IANAifType textual convention. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifEntry 3 } + + ifMtu OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of the largest packet which can be + sent/received on the interface, specified in octets. + For interfaces that are used for transmitting network + datagrams, this is the size of the largest network + datagram that can be sent on the interface. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: octets" + ::= { ifEntry 4 } + + ifSpeed OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An estimate of the interface's current bandwidth in + bits per second. For interfaces which do not vary in + bandwidth or for those where no accurate estimation + can be made, this object should contain the nominal + bandwidth. If the bandwidth of the interface is + greater than the maximum value reportable by this + object then this object should report its maximum + value (4,294,967,295) and ifHighSpeed must be used to + report the interace's speed. For a sub-layer which + has no concept of bandwidth, this object should be zero. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: bits/second" + ::= { ifEntry 5 } + + ifPhysAddress OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The interface's address at its protocol sub-layer. + The interface's media-specific MIB must define the bit + and byte ordering and format of the value contained by + this object. For interfaces which do not have such an + address (e.g., a serial line), this object should + contain an octet string of zero length. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifEntry 6 } + + ifAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + testing(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The desired state of the interface. The testing(3) + state indicates that no operational packets can be + passed. When a managed system initializes, all + interfaces start with ifAdminStatus in the down(2) + state. As a result of either explicit management + action or per configuration information retained by + the managed system, ifAdminStatus is then changed to + either the up(1) or testing(3) states (or remains in + the down(2) state). + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: 'testing' not supported + PERSIST: YES DEFVALUE: down UNITS: -" + ::= { ifEntry 7 } + + ifOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + testing(3), + unknown(4), + dormant(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current operational state of the interface. The + testing(3) state indicates that no operational packets + can be passed. If ifAdminStatus is down(2) then + ifOperStatus should be down(2). If ifAdminStatus is + changed to up(1) then ifOperStatus should change to + up(1) if the interface is ready to transmit and + receive network traffic; it should change to + dormant(5) if the interface is waiting for external + actions (such as a serial line waiting for an + incomming connection); it should remain in the down(2) + state if and only if there is a fault that prevents if + from going to the up(1) state. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: 'unknown', 'dormant' + not supported + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifEntry 8 } + + ifLastChange OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime at the time the interface + entered its current operational state. If the current + state was entered prior to the last re-initialization + of the local network management subsystem, then this + object contains a zero value. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifEntry 9 } + + ifInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of octets received on the interface, + including framing characters. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: octets" + ::= { ifEntry 10 } + + ifInUcastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were not addressed to a + multicast or broadcast address at this sub-layer. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifEntry 11 } + + ifInNUcastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were addressed to a + multicast or broadcast address at this sub-layer. + This object is deprecated in favour of + ifInMulticastPkts and ifInBroadcastPkts. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifEntry 12 } + + ifInDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of inbound packets which were chosen to be + discarded even though no errors had been detected to + prevent their being deliverable to a higher-layer + protocol. One possible reason for discarding such a + packet could be to free up buffer space. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifEntry 13 } + + ifInErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For packet-oriented interfaces, the number of inbound + packets that contained errors preventing them from + being deliverable to a higher-layer protocol. For + character-oriented or fixed-length interfaces, the + number of inbound transmission units that contained + errors preventing them from being deliverable to a + higher-layer protocol. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifEntry 14 } + + ifInUnknownProtos OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For packet-oriented interfaces, the number of packets + received via the interface which were discarded + because of an unknown or unsupported protocol. For + character-oriented or fixed-length interfaces which + support protocol multiplexing the number of + transmission units received via the interface which + were discarded because of an unknown or unsupported + protocol. For any interface which does not support + protocol multiplexing, this counter will always be 0. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifEntry 15 } + + ifOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of octets transmitted out of the + interface, including framing characters. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: octets" + ::= { ifEntry 16 } + + ifOutUcastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were not + addressed to a multicast or broadcast address at this + sub-layer, including those that were discarded or not sent. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifEntry 17 } + + ifOutNUcastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were + addressed to a multicast or broadcast address at this + sub-layer, including those that were discarded or not sent. + + This object is deprecated in favour of + ifOutMulticastPkts and ifOutBroadcastPkts. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifEntry 18 } + + ifOutDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of outbound packets which were chosen to + be discarded even though no errors had been detected + to prevent their being transmitted. One possible + reason for discarding such a packet could be to free + up buffer space. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifEntry 19 } + + ifOutErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For packet-oriented interfaces, the number of + outbound packets that could not be transmitted because + of errors. For character-oriented or fixed-length + interfaces, the number of outbound transmission units + that could not be transmitted because of errors. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifEntry 20 } + + ifOutQLen OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The length of the output packet queue (in packets). + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: See above + PERSIST: NA DEFVALUE: NA UNITS: packets" + ::= { ifEntry 21 } + + ifSpecific OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "A reference to MIB definitions specific to the + particular media being used to realize the interface. + It is recommended that this value point to an instance + of a MIB object in the media-specific MIB, i.e., that + this object have the semantics associated with the + InstancePointer textual convention defined in RFC + 1443. In fact, it is recommended that the media- + specific MIB specify what value ifSpecific should/can + take for values of ifType. If no MIB definitions + specific to the particular media are available, the + value should be set to the OBJECT IDENTIFIER { 0 0 }. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: See above + PERSIST: NA DEFVALUE: NA UNITS: -" + ::= { ifEntry 22 } + + -- + -- ifXTable + -- + + ifXTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfXEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of interface entries. The number of entries + is given by the value of ifNumber. This table + contains additional objects for the interface table. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP ifNumber." + ::= { ifMIBObjects 1 } + + ifXEntry OBJECT-TYPE + SYNTAX IfXEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry containing additional management information + applicable to a particular interface. + + ALCATEL NOTE: + SUPPORT: YES" + -- AUGMENTS { ifEntry } + INDEX { ifIndex} + ::= { ifXTable 1 } + + IfXEntry ::= SEQUENCE { + ifName DisplayString, + ifInMulticastPkts Counter, + ifInBroadcastPkts Counter, + ifOutMulticastPkts Counter, + ifOutBroadcastPkts Counter, + ifHCInOctets OCTET STRING, + ifHCInUcastPkts OCTET STRING, + ifHCInMulticastPkts OCTET STRING, + ifHCInBroadcastPkts OCTET STRING, + ifHCOutOctets OCTET STRING, + ifHCOutUcastPkts OCTET STRING, + ifHCOutMulticastPkts OCTET STRING, + ifHCOutBroadcastPkts OCTET STRING, + ifLinkUpDownTrapEnable INTEGER, + ifHighSpeed Gauge, + ifPromiscuousMode TruthValue, + ifConnectorPresent TruthValue, + ifAlias DisplayString, + ifCounterDiscontinuityTime INTEGER + } + + ifName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The textual name of the interface. The value of this + object should be the name of the interface as assigned + by the local device and should be suitable for use in + commands entered at the device's `console'. This + might be a text name, such as `le0' or a simple port + number, such as `1', depending on the interface naming + syntax of the device. If several entries in the + ifTable together represent a single interface as named + by the device, then each will have the same value of + ifName. If there is no local name, or this object is + otherwise not applicable, then this object contains a + 0-length string. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifXEntry 1 } + + ifInMulticastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were addressed to a + multicast address at this sub-layer. For a MAC layer + protocol, this includes both Group and Functional + addresses. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifXEntry 2 } + + ifInBroadcastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were addressed to a + broadcast address at this sub-layer. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifXEntry 3 } + + ifOutMulticastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were + addressed to a multicast address at this sub-layer, + including those that were discarded or not sent. For + a MAC layer protocol, this includes both Group and + Functional addresses. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifXEntry 4 } + + ifOutBroadcastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were + addressed to a broadcast address at this sub-layer, + including those that were discarded or not sent. + + ALCATEL NOTE: + SUPPORT: NO INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifXEntry 5 } + + ifHCInOctets OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of octets received on the interface, + including framing characters. This object is a 64-bit + version of ifInOctets. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: octets" + ::= { ifXEntry 6 } + + ifHCInUcastPkts OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were not addressed to a + multicast or broadcast address at this sub-layer. + This object is a 64-bit version of ifInUcastPkts. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifXEntry 7 } + + ifHCInMulticastPkts OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were addressed to a + multicast address at this sub-layer. For a MAC layer + protocol, this includes both Group and Functional + addresses. This object is a 64-bit version of + ifInMulticastPkts. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifXEntry 8 } + + ifHCInBroadcastPkts OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were addressed to a + broadcast address at this sub-layer. This object is a + 64-bit version of ifInBroadcastPkts. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifXEntry 9 } + + ifHCOutOctets OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of octets transmitted out of the + interface, including framing characters. This object + is a 64-bit version of ifOutOctets. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: octets" + ::= { ifXEntry 10 } + + ifHCOutUcastPkts OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were not + addressed to a multicast or broadcast address at this + sub-layer, including those that were discarded or not + sent. This object is a 64-bit version of ifOutUcastPkts. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifXEntry 11 } + + ifHCOutMulticastPkts OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were + addressed to a multicast address at this sub-layer, + including those that were discarded or not sent. For + a MAC layer protocol, this includes both Group and + Functional addresses. This object is a 64-bit version + of ifOutMulticastPkts. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifXEntry 12 } + + ifHCOutBroadcastPkts OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were + addressed to a broadcast address at this sub-layer, + including those that were discarded or not sent. This + object is a 64-bit version of ifOutBroadcastPkts. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: packets" + ::= { ifXEntry 13 } + + ifLinkUpDownTrapEnable OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Indicates whether linkUp/linkDown traps should be + generated for this interface. + + By default, this object should have the value + enabled(1) for interfaces which do not operate on + 'top' of any other interface (as defined in the + ifStackTable), and disabled(2) otherwise. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: YES DEFVALUE: See above UNITS: -" + ::= { ifXEntry 14 } + + ifHighSpeed OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An estimate of the interface's current bandwidth in + units of 1,000,000 bits per second. If this object + reports a value of `n' then the speed of the interface + is somewhere in the range of `n-500,000' to + `n+499,999'. For interfaces which do not vary in + bandwidth or for those where no accurate estimation + can be made, this object should contain the nominal + bandwidth. For a sub-layer which has no concept of + bandwidth, this object should be zero. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: Mbit/second" + ::= { ifXEntry 15 } + + ifPromiscuousMode OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object has a value of false(2) if this interface + only accepts packets/frames that are addressed to this + station. This object has a value of true(1) when the + station accepts all packets/frames transmitted on the + media. The value true(1) is only legal on certain + types of media. If legal, setting this object to a + value of true(1) may require the interface to be reset + before becoming effective. + + The value of ifPromiscuousMode does not affect the + reception of broadcast and multicast packets/frames by + the interface. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NO RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifXEntry 16 } + + ifConnectorPresent OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object has the value 'true(1)' if the interface + sublayer has a physical connector and the value + 'false(2)' otherwise. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifXEntry 17 } + + -- the following ifAlias and ifCounterDiscontinuityTime mib objects are + -- added from lanx/ifmib to have a super mib + + ifAlias OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is an 'alias' name for the interface as + specified by a network manager, and provides a non- + volatile 'handle' for the interface. + + On the first instantiation of an interface, the value + of ifAlias associated with that interface is the + zero-length string. As and when a value is written + into an instance of ifAlias through a network + management set operation, then the agent must retain + the supplied value in the ifAlias instance associated + with the same interface for as long as that interface + remains instantiated, including across all re- + initializations/reboots of the network management + system, including those which result in a change of + the interface's ifIndex value. + + An example of the value which a network manager might + store in this object for a WAN interface is the + (Telco's) circuit number/identifier of the interface. + + Some agents may support write-access only for + interfaces having particular values of ifType. An + agent which supports write access to this object is + required to keep the value in non-volatile storage, + but it may limit the length of new values depending on + how much storage is already occupied by the current + values for other interfaces." + ::= { ifXEntry 18 } + + ifCounterDiscontinuityTime OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime on the most recent occasion at + which any one or more of this interface's counters + suffered a discontinuity. The relevant counters are + the specific instances associated with this interface + of any Counter32 or Counter64 object contained in the + ifTable or ifXTable. If no such discontinuities have + occurred since the last re-initialization of the local + management subsystem, then this object contains a zero + value." + ::= { ifXEntry 19 } + + + -- + -- ifStackTable + -- + + ifStackTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfStackEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table containing information on the relationships between + the multiple sub-layers of network interfaces. + In particular, it contains information on which sub-layers run + 'on top of' which other sub-layers. Each sub-layer corresponds + to a conceptual row in the ifTable. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP." + ::= { ifMIBObjects 2 } + + ifStackEntry OBJECT-TYPE + SYNTAX IfStackEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information on a particular relationship between two + sub-layers, specifying that one sub-layer runs on + 'top' of the other sub-layer. Each sub-layer + corresponds to a conceptual row in the ifTable. + + ALCATEL NOTE: + SUPPORT: YES" + INDEX { ifStackHigherLayer, ifStackLowerLayer } + ::= { ifStackTable 1 } + + IfStackEntry ::= SEQUENCE { + ifStackHigherLayer INTEGER, + ifStackLowerLayer INTEGER, + ifStackStatus RowStatus + } + + ifStackHigherLayer OBJECT-TYPE + SYNTAX INTEGER + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The value of ifIndex corresponding to the higher + sub-layer of the relationship, i.e., the sub-layer + which runs on 'top' of the sub-layer identified by the + corresponding instance of ifStackLowerLayer. If there + is no higher sub-layer (below the internetwork layer), + then this object has the value 0. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifStackEntry 1 } + + ifStackLowerLayer OBJECT-TYPE + SYNTAX INTEGER + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The value of ifIndex corresponding to the lower sub- + layer of the relationship, i.e., the sub-layer which + runs 'below' the sub-layer identified by the + corresponding instance of ifStackHigherLayer. If + there is no lower sub-layer, then this object has the + value 0. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifStackEntry 2 } + + ifStackStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the relationship between two sub-layers. + + Changing the value of this object from 'active' to + 'notInService' or 'destroy' will likely have + consequences up and down the interface stack. Thus, + write access to this object is likely to be + inappropriate for some types of interfaces, and many + implementations will choose not to support write- + access for any type of interface. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifStackEntry 3 } + + -- + -- The Interface Test Table + -- + -- This group of objects is optional. However, a media-specific + -- MIB may make implementation of this group mandatory. + -- + -- This table replaces the ifExtnsTestTable + -- + + ifTestTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfTestEntry + ACCESS not-accessible + STATUS optional + DESCRIPTION + "This table contains one entry per interface. It + defines objects which allow a network manager to + instruct an agent to test an interface for various + faults. Tests for an interface are defined in the + media-specific MIB for that interface. After invoking + a test, the object ifTestResult can be read to + determine the outcome. If an agent can not perform + the test, ifTestResult is set to so indicate. The + object ifTestCode can be used to provide further + test-specific or interface-specific (or even + enterprise-specific) information concerning the + outcome of the test. Only one test can be in progress + on each interface at any one time. If one test is in + progress when another test is invoked, the second test + is rejected. Some agents may reject a test when a + prior test is active on another interface. + Before starting a test, a manager-station must first + obtain 'ownership' of the entry in the ifTestTable for + the interface to be tested. This is accomplished with + the ifTestId and ifTestStatus objects as follows: + + try_again: + get (ifTestId, ifTestStatus) + while (ifTestStatus != notInUse) + /* + * Loop while a test is running or some other + * manager is configuring a test. + */ + short delay + get (ifTestId, ifTestStatus) + } + + /* + * Is not being used right now -- let's compete + * to see who gets it. + */ + lock_value = ifTestId + + if ( set(ifTestId = lock_value, ifTestStatus = inUse, + ifTestOwner = 'my-IP-address') == FAILURE) + /* + * Another manager got the ifTestEntry -- go + * try again + */ + goto try_again; + + /* + * I have the lock + */ + set up any test parameters. + + /* + * This starts the test + */ + set(ifTestType = test_to_run); + + wait for test completion by polling ifTestResult + + when test completes, agent sets ifTestResult + agent also sets ifTestStatus = 'notInUse' + + retrieve any additional test results, and ifTestId + + if (ifTestId == lock_value+1) results are valid + + A manager station first retrieves the value of the + appropriate ifTestId and ifTestStatus objects, + periodically repeating the retrieval if necessary, + until the value of ifTestStatus is 'notInUse'. The + manager station then tries to set the same ifTestId + object to the value it just retrieved, the same + ifTestStatus object to 'inUse', and the corresponding + ifTestOwner object to a value indicating itself. If + the set operation succeeds then the manager has + obtained ownership of the ifTestEntry, and the value of + the ifTestId object is incremented by the agent (per + the semantics of TestAndIncr). Failure of the set + operation indicates that some other manager has + obtained ownership of the ifTestEntry. + + Once ownership is obtained, any test parameters can be + setup, and then the test is initiated by setting + ifTestType. On completion of the test, the agent sets + ifTestStatus to 'notInUse'. Once this occurs, the + manager can retrieve the results. In the (rare) event + that the invocation of tests by two network managers + were to overlap, then there would be a possibility that + the first test's results might be overwritten by the + second test's results prior to the first results being + read. This unlikely circumstance can be detected by a + network manager retrieving ifTestId at the same time as + retrieving the test results, and ensuring that the + results are for the desired request. + + If ifTestType is not set within an abnormally long + period of time after ownership is obtained, the agent + should time-out the manager, and reset the value of the + ifTestStatus object back to 'notInUse'. It is + suggested that this time-out period be 5 minutes. + + In general, a management station must not retransmit a + request to invoke a test for which it does not receive + a response; instead, it properly inspects an agent's + MIB to determine if the invocation was successful. + Only if the invocation was unsuccessful, is the + invocation request retransmitted. + + Some tests may require the interface to be taken off- + line in order to execute them, or may even require the + agent to reboot after completion of the test. In these + circumstances, communication with the management + station invoking the test may be lost until after + completion of the test. An agent is not required to + support such tests. However, if such tests are + supported, then the agent should make every effort to + transmit a response to the request which invoked the + test prior to losing communication. When the agent is + restored to normal service, the results of the test are + properly made available in the appropriate objects. + Note that this requires that the ifIndex value assigned + to an interface must be unchanged even if the test + causes a reboot. An agent must reject any test for + which it cannot, perhaps due to resource constraints, + make available at least the minimum amount of + information after that test completes. + + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP ifNumber." + ::= { ifMIBObjects 3 } + + ifTestEntry OBJECT-TYPE + SYNTAX IfTestEntry + ACCESS not-accessible + STATUS optional + DESCRIPTION + "An entry containing objects for invoking tests on an + interface. + + ALCATEL NOTE: + SUPPORT: YES" + -- AUGMENTS { ifEntry } + INDEX {ifIndex} + ::= { ifTestTable 1 } + + IfTestEntry ::= SEQUENCE { + ifTestId TestAndIncr, + ifTestStatus INTEGER, + ifTestType AutonomousType, + ifTestResult INTEGER, + ifTestCode OBJECT IDENTIFIER, + ifTestOwner OwnerString + } + + ifTestId OBJECT-TYPE + SYNTAX TestAndIncr + ACCESS read-write + STATUS optional + DESCRIPTION + "This object identifies the current invocation of the + interface's test. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifTestEntry 1 } + + ifTestStatus OBJECT-TYPE + SYNTAX INTEGER { + notInUse(1), + inUse(2) + } + ACCESS read-write + STATUS optional + DESCRIPTION + "This object indicates whether or not some manager + currently has the necessary 'ownership' required to + invoke a test on this interface. A write to this + object is only successful when it changes its value + from 'notInUse(1)' to 'inUse(2)'. After completion of + a test, the agent resets the value back to + 'notInUse(1)'. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifTestEntry 2 } + + ifTestType OBJECT-TYPE + SYNTAX AutonomousType + ACCESS read-write + STATUS optional + DESCRIPTION + "A control variable used to start and stop operator- + initiated interface tests. Most OBJECT IDENTIFIER + values assigned to tests are defined elsewhere, in + association with specific types of interface. + However, this document assigns a value for a full- + duplex loopback test, and defines the special meanings + of the subject identifier: + + noTest OBJECT IDENTIFIER ::= { 0 0 } + + When the value noTest is written to this object, no + action is taken unless a test is in progress, in which + case the test is aborted. Writing any other value to + this object is only valid when no test is currently in + progress, in which case the indicated test is + initiated. + + When read, this object always returns the most recent + value that ifTestType was set to. If it has not been + set since the last initialization of the network + management subsystem on the agent, a value of noTest + is returned. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifTestEntry 3 } + + ifTestResult OBJECT-TYPE + SYNTAX INTEGER { + none(1), -- no test yet requested + success(2), + inProgress(3), + notSupported(4), + unAbleToRun(5), -- due to state of system + aborted(6), + failed(7) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "This object contains the result of the most recently + requested test, or the value none(1) if no tests have + been requested since the last reset. Note that this + facility provides no provision for saving the results + of one test when starting another, as could be + required if used by multiple managers concurrently. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifTestEntry 4 } + + ifTestCode OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS optional + DESCRIPTION + "This object contains a code which contains more + specific information on the test result, for example + an error-code after a failed test. Error codes and + other values this object may take are specific to the + type of interface and/or test. The value may have the + semantics of either the AutonomousType or + InstancePointer textual conventions as defined in RFC + 1443. The identifier: + + testCodeUnknown OBJECT IDENTIFIER ::= { 0 0 } + + is defined for use if no additional result code is + available. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: NA RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifTestEntry 5 } + + ifTestOwner OBJECT-TYPE + SYNTAX OwnerString + ACCESS read-write + STATUS optional + DESCRIPTION + "The entity which currently has the 'ownership' + required to invoke a test on this interface. + + ALCATEL NOTE: + SUPPORT: YES INSRVMOD: YES RANGE: See above + PERSIST: NO DEFVALUE: NA UNITS: -" + ::= { ifTestEntry 6 } + +-- Generic Receive Address Table + +-- + +-- This group of objects is mandatory for all types of + +-- interfaces which can receive packets/frames addressed to + +-- more than one address. + +-- + +-- This table replaces the ifExtnsRcvAddr table. The main + +-- difference is that this table makes use of the RowStatus + +-- textual convention, while ifExtnsRcvAddr did not. +ifRcvAddressTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfRcvAddressEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains an entry for each address + (broadcast, multicast, or uni-cast) for which the + system will receive packets/frames on a particular + interface, except as follows: + + - for an interface operating in promiscuous mode, + entries are only required for those addresses for + which the system would receive frames were it not + operating in promiscuous mode. + + - for 802.5 functional addresses, only one entry is + required, for the address which has the functional + address bit ANDed with the bit mask of all functional + addresses for which the interface will accept frames. + + A system is normally able to use any unicast address + which corresponds to an entry in this table as a + source address." + ::= { ifMIBObjects 4 } + +ifRcvAddressEntry OBJECT-TYPE + SYNTAX IfRcvAddressEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of objects identifying an address for which + the system will accept packets/frames on the + particular interface identified by the index value + ifIndex." + INDEX {ifIndex,ifRcvAddressAddress} + ::= { ifRcvAddressTable 1 } + +IfRcvAddressEntry ::= SEQUENCE { + ifRcvAddressAddress PhysAddress, + ifRcvAddressStatus RowStatus, + ifRcvAddressType INTEGER + } + +ifRcvAddressAddress OBJECT-TYPE + SYNTAX PhysAddress (SIZE(6)) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An address for which the system will accept + packets/frames on this entry's interface." + ::= { ifRcvAddressEntry 1 } + +ifRcvAddressStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is used to create and delete rows in the + ifRcvAddressTable." + ::= { ifRcvAddressEntry 2 } + +ifRcvAddressType OBJECT-TYPE + SYNTAX INTEGER { + other (1), + volatile (2), + nonVolatile (3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object has the value nonVolatile(3) for those + entries in the table which are valid and will not be + deleted by the next restart of the managed system. + Entries having the value volatile(2) are valid and + exist, but have not been saved, so that will not exist + after the next restart of the managed system. Entries + having the value other(1) are valid and exist but are + not classified as to whether they will continue to + exist after the next restart." + DEFVAL { volatile } + ::= { ifRcvAddressEntry 3 } + +END diff --git a/mibs/nokia/ITF-MIB-EXT b/mibs/nokia/ITF-MIB-EXT new file mode 100644 index 0000000000..4e323b10d2 --- /dev/null +++ b/mibs/nokia/ITF-MIB-EXT @@ -0,0 +1,1703 @@ +ITF-MIB-EXT DEFINITIONS ::= BEGIN + +-- =========================================================================== +-- This specification is published by Alcatel under Non-Disclosure +-- Agreement(s) (NDA) with specific parties and has to be considered as +-- Confidential Information as defined in such NDA. +-- Alcatel reserves the right to revise this document for any reason, +-- including but not limited to conformity with standards promulgated by +-- various agencies, utilisation of advances in the state of the technical +-- areas, or the reflection of changes in the design of any equipment, +-- techniques, or procedures described or referred to herein. +-- The product specifications and other technical or performance information +-- contained herein are subject to change without notice. +-- Updates of this document will be issued under the above NDA's. +-- Alcatel makes no representation or warranty, expressed or implied, with +-- respect to the sufficiency, accuracy, or utility of any information or +-- opinion contained herein. Alcatel expressly advises that any use of for +-- any purpose or reliance upon this technical reference is at the risk of +-- the user and that Alcatel shall not be liable for any damage or injury +-- incurred by any person arising out of the sufficiency, accuracy, or +-- utility of any information or opinion contained herein. +-- This document is not to be construed as a suggestion to any manufacturer +-- to modify or change any of its products, nor does this document represent +-- any commitment by Alcatel to sell or purchase any product. +-- Nothing contained herein shall be construed as conferring by implication, +-- estoppel, or otherwise any license or right under any patent, whether or +-- not the use of any information herein necessarily employs an invention of +-- any existing or later issued patent. +-- Alcatel reserves the right not to offer any or all of these products and +-- to withdraw any or all of them at any future time. +-- Copyright (C) 2004, Alcatel. All Rights Reserved. +-- =========================================================================== + +-- MODULE IDENTITY +-- LAST-UPDATED "201609160000Z" +-- ORGANIZATION "Alcatel-Lucent" +-- CONTACT-INFO "email:asam.mibsupport@alcatel-lucent.com" +-- DESCRIPTION +-- "Alcatel proprietary extensions to the Interface MIB." +-- +-- REVISION "201709210000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Reason for change: RCR ALU02361918 - BT - timer on the relay of the RFLT-E +-- Change: +-- asamLluRelayActionTimer: must have range 0..864000 +-- +-- +-- REVISION "201709130000Z" +-- DESCRIPTION +-- Editor: Marita Saveyn +-- Reason for change: RCR ALU02361918 - BT - timer on the relay of the RFLT-E +-- Change: +-- 1. asamLluRelayActionTime: must have range 0..864000, and default 50 +-- +-- REVISION "201708180000Z" +-- DESCRIPTION +-- Editor: Alfredo Alvarez +-- Reason for change: RCR ALU02361918 - BT - timer on the relay of the RFLT-E +-- Change: +-- 1. Added asamLluRelayActionTimer +-- +-- REVISION "201707200000Z" +-- DESCRIPTION +-- Editor: Alfredo Alvarez +-- Reason for change: RCR ALU02361918 - BT - timer on the relay of the RFLT-E +-- Change: +-- 1. Added 'disconnectTimed' to the list of possible relay status +-- 2. Added asamLluRelayOperStatus and asamLluRelayActionTime +-- +-- REVISION "201609160000Z" +-- DESCRIPTION +-- Version: 3EC36485EDAA_V5.6.0.0.0 +-- Editor : Ravichandran P +-- Reason for Change: RCR ALU02254841- NNI support on NDLT-G +-- Change : Added New Table asamIfPortTypeTable. +-- +-- REVISION "201510150000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V5.3.0.0.0 +-- Editor: Rommy Volders +-- Reason for change: ALU02136586 +-- Change: Add extra value for asamLluRelayStatus. +-- +-- REVISION "201410080000Z" +-- DESCRIPTION +-- Editor: Siva Sankar +-- Reason for change: Updated based on review comments for REVISION "201410030000Z" +-- Change: 1. Changed the order of new tables asamIfIndexToExtIfIndexMappingTable +-- and asamExtIfIndexToIfIndexMappingTable. +-- 2. Gauge type is used instead of INTEGER for ExtIfIndex identifiers. +-- +-- REVISION "201410030000Z" +-- DESCRIPTION +-- Editor: Siva Sankar +-- Reason for change: 3HH-11754-AGAB-DFZZA, Extended Inteface Index Support +-- Change: Added new Tables asamIfIndexToExtIfIndexMappingTable +-- and asamExtIfIndexToIfIndexMappingTable +-- +-- REVISION "201304250000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.6.0.0.0 +-- Editor: Balagopal Velusamy +-- Reason for change: ALU00204502, EFM Inteface Counter Support +-- Change: Added new Table asamIfExtCounterSupportTable +-- Indicates supported counters for an Interface. +-- +-- REVISION "201304250000Z" +-- DESCRIPTION +-- "Version: 3EC36485EDAA_V4.6.0.0.0 +-- Editor: Karel Meijfroidt +-- Reason for change: ALU01815260, Alarm Mechanism Improvement +-- Change: change the RANGE in the description of +-- the asamIfExtAlmReportingSeverityDefault. +-- +-- REVISION "2012101111200Z" +-- DESCRIPTION +-- "Version: 3EC15505EAAA_V4.5.0.0.0 +-- Editor: Ludwig Pauwels +-- Changes: +-- * Remove LLU Relay Status Table. +-- +-- REVISION "201206071200Z" +-- DESCRIPTION +-- "Version: 3EC15505EAAA_V4.4.4.0.0 +-- Editor: Ludwig Pauwels +-- Changes: +-- * Addition of LLU Relay Status Table. +-- +-- REVISION "20080108200Z" +-- DESCRIPTION +-- "Version: 3EC15506EAAA_V3.5.0.0.0 +-- Editor: Xia Hui +-- Changes: Add one values for asamItfMetallicTestTypes and four values for asamItfMetallicTestCodes +-- *asamItfMetallicTestResetTimer +-- *asamItfLineAdminOperAbnormal +-- *asamItfLineAnotherLineTestInProgress +-- *asamItfTestNotPossible +-- *asamItfLineBusy +-- +-- REVISION "20060621200Z" +-- DESCRIPTION +-- "Version: 3EC15506EAAA_V3.5.0.0.0 +-- Editor: Liu Jie +-- Changes: Add two values for asamItfMetallicTestTypes +-- * asamItfMetallicTestInwardOnly +-- * asamItfMetallicTestOutwardOnly +-- +-- REVISION "20060529200Z" +-- DESCRIPTION +-- "Version: 3EC15506EAAA_V3.2.0.0.0 +-- Editor: Sven Dhuyvetter +-- Changes: BDFhw36810: Open SNMP +-- +-- REVISION "20060323200Z" +-- DESCRIPTION +-- "Version: 3EC15505EAAA_V3.1.0.0.0 +-- Editor: Ma liya +-- Changes: +-- * Extend Customer Id length to support a maximum of 64 characters." +-- +-- REVISION "200601231200Z" +-- DESCRIPTION +-- "Version: 3EC15506EAAA_V2.4.0.0.0 +-- Editor: Bart Bogaert +-- Changes: Implemented BDFhw70643: strict syntax checks (smilint)" +-- +-- REVISION "200506151200Z" +-- DESCRIPTION +-- "Version: 3EC15505EAAA_V2.3.1.0.0 +-- Editor: Pradeep Hosaritthi +-- Changes: +-- * Addition of LLU Relay Status Table." +-- +-- REVISION "200404081200Z" +-- DESCRIPTION +-- "Version: 3EC15506EAAA_E1.1.0.0 +-- Editor: Rafael Van Driessche +-- Changes: addition of asamIfExtIfSpecific." +-- +-- REVISION "200401121200Z" +-- DESCRIPTION +-- "Version: 3EC15506EAAA_E1.0.0.0 +-- Editor: Rafael Van Driessche +-- Changes: revision for iSAM with only editorial changes." +-- +-- REVISION "200205131200Z" +-- DESCRIPTION +-- "Version: 3EC15506AAAA_E5.0.0.1 +-- Editor: Frank Devolder +-- Changes: +-- * object asamPhyItfChangeOccurredTrapEnable obsoleted (BDFaa44804)." +-- +-- REVISION "200106031200Z" +-- DESCRIPTION +-- "Version: 3EC15506AAAA_E5.0.0.0 +-- Editor: Frank Devolder +-- Changes: +-- * add asamShelfPhyItfSummaryTable to support hierarchical summary +-- bitmaps for physical interfaces and make ASAM-level interface +-- bitmaps obsolete." +-- +-- REVISION "200011161200Z" +-- DESCRIPTION +-- "Version 3EC15506AAAA_E4.2.0.0 +-- Editor: Dominic Chorafakis +-- Changes: +-- * Documenting MAX_PIF size for R4.2: 24 line boards with IMA." +-- +-- REVISION "200007111200Z" +-- DESCRIPTION +-- "Version: TBC +-- Editor: H. Dedecker +-- Changes: +-- * ITF_MIB_EXT extended with line test (BDFaa26075)." +-- +-- REVISION "199907081200Z" +-- DESCRIPTION +-- "Version: 3EC15506AAAA_R2.0.1 +-- Editor: K. Van Eynde +-- Changes: +-- * AsamItfSeverityFilterType extended with noAlarms (BDFaa18947)." +-- +-- REVISION "199904301200Z" +-- DESCRIPTION +-- "Version: 3EC15506AAAA_R2.0.0 +-- Editor: K. Van Eynde +-- Changes: updates to supporte severity per line feature: +-- * define new type AsamItfSeverityFilterType +-- * extend AsamIfExtEntry with new column asamIfExtAlmReportingSeverity +-- * add table asamIfExtAlmReportingSeverityDefaultTable for default +-- severity per interface type." + +-- =========================================================================== + + IMPORTS OBJECT-TYPE FROM RFC-1212 + DisplayString FROM RFC1213-MIB + Counter, Gauge FROM RFC1155-SMI + asam FROM SYSTEM-MIB + ifIndex, InterfaceIndex FROM ITF-MIB + IANAifType FROM IANAifType-MIB + AsamAlarmSeverityType FROM ASAM-ALARM-MIB + eqptHolderId FROM ASAM-EQUIP-MIB; + + + AsamItfSeverityFilterType ::= INTEGER { + indeterminate (1), -- Not a definite known severity + warning (2), -- Just to inform as a warning + minor (3), -- Not service affecting + major (4), -- Service affecting + critical (5), -- Service breaking + noAlarms (254), -- do not report alarm + default (255) -- take default as specified in + -- asamIfExtAlmReportingSeverityDefaultTable + } + + asamItfMIB OBJECT IDENTIFIER ::= { asam 6 } -- Extensions to MIB-II + + asamPhyItfOperStatus OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS obsolete + DESCRIPTION + "The bitmap for the operational status of the physical interfaces. + + MAX_PIF: the maximum number of interface per board + SLOTS: the number of slots in the system + + Layout: 1..MAX_PIF 1..MAX_PIF ... 1..MAX_PIF + ========== ========== ========== + 0 1 ... SLOTS-1 + + Up = 1, Down = 0 + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NA INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: This object is not supported." + ::= {asamItfMIB 1} + + asamPhyItfBitmap OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS obsolete + DESCRIPTION + "The bitmap for the physical interfaces. + + MAX_PIF: the maximum number of interface per board + SLOTS: the number of slots in the system + + Layout: 1..MAX_PIF 1..MAX_PIF ... 1..MAX_PIF + ========== ========== ========== + 0 1 ... SLOTS-1 + + Present = 1, Not present = 0 + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NA INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: This object is not supported." + ::= {asamItfMIB 2} + + asamPhyItfChangeOccurredTrapEnable OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + ACCESS read-write + STATUS obsolete + DESCRIPTION + "Boolean indicating wether the changeOccurredTrap should be sent + or not. The trap will not be sent if the linkUpDownTrap was already + sent (regardless of the value asamChangeOccurredTrapEnable). + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NA INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: This object is not supported." + ::= {asamItfMIB 3} + + asamPhyItfNumberChangeOccurred OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is a counter indicating the number of state changes of the + physical line. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: 0 + UNITS: NA SPARSE: NA + DESCR: NA" + ::= {asamItfMIB 4} + + asamIfExtTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamIfExtEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An extension to the ifTable defined in ITF-MIB. + + ALCATEL NOTE: + TABLESIZE: DEP same size as the ifTable." + ::= {asamItfMIB 5} + + asamIfExtEntry OBJECT-TYPE + SYNTAX AsamIfExtEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry containing management information applicable to a + particular interface." + INDEX { ifIndex } + ::= {asamIfExtTable 1} + + AsamIfExtEntry ::= SEQUENCE { + asamIfExtCustomerId DisplayString, + asamIfExtAlmReportingSeverity AsamItfSeverityFilterType, + asamIfExtIfSpecific OBJECT IDENTIFIER + } + + asamIfExtCustomerId OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A textual string identifying the customer assigned to this + interface. Following strings have a special meaning: + 'reserved' : the interface is reserved by an operator; + 'faulty' : the interface is indicated by an operator + as being faulty; + 'available': the interface has no customer assigned to it. + This object is only supported for physical interfaces. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + DEFVAL {"available"} + ::= {asamIfExtEntry 1} + + asamIfExtAlmReportingSeverity OBJECT-TYPE + SYNTAX AsamItfSeverityFilterType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This objects specifies for a certain physical interface and all + interface above in the interface hierarchy the minimal severity for + an alarm to be reported. If no value is provided for this object, + it will obtain the value 'default', which means the actual value is + as specified in the asamIfExtAlmReportingSeverityDefaultTable. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: NA DEFVALUE: 'default' + UNITS: NA SPARSE: NA + DESCR: NA" + ::= {asamIfExtEntry 2} + + asamIfExtIfSpecific OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A reference to MIB definitions specific to the particular media + being used to realize the interface. + If no MIB definitions specific to the particular media are + available, the value should be set to the OBJECT IDENTIFIER { 0 0 }. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= {asamIfExtEntry 3} + + asamNextAvailablePortType OBJECT-TYPE + SYNTAX IANAifType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object contains the ifType for which the next available + physical interface can be retrieved. Only values of ifType that + represent physical interfaces are allowed. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: YES + RANGE: NA DEFVALUE: xdslLine + UNITS: NA SPARSE: NA + DESCR: NA" + ::= {asamItfMIB 6} + + asamNextAvailablePort OBJECT-TYPE + SYNTAX InterfaceIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object gives the next available physical interface for which + the ifType is as specified in asamNextAvailablePortType. A physical + interface is considered available if its asamIfExtCustomerId has + the value 'available' and its internal ASAM state is 'reachable'. + If no interface of the desired type is available an error (genErr) + is returned when a get-request is issued for this object. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= {asamItfMIB 7} + + asamIfExtAlmReportingSeverityDefaultTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamIfExtAlmReportingSeverityDefaultEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table specifying for each of the supported interface types + for asamIfExtAlmReportingSeverity its default minimal severity. + + ALCATEL NOTE: + TABLESIZE: DEP number of supported interface types." + ::= {asamItfMIB 8} + + asamIfExtAlmReportingSeverityDefaultEntry OBJECT-TYPE + SYNTAX AsamIfExtAlmReportingSeverityDefaultEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry of the asamIfExtAlmReportingSeverityDefaultTable. + " + INDEX { asamIfExtIfType } + ::= {asamIfExtAlmReportingSeverityDefaultTable 1} + + AsamIfExtAlmReportingSeverityDefaultEntry ::= SEQUENCE { + asamIfExtIfType IANAifType, + asamIfExtAlmReportingSeverityDefault AsamAlarmSeverityType + } + + asamIfExtIfType OBJECT-TYPE + SYNTAX IANAifType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of the interface. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtAlmReportingSeverityDefaultEntry 1 } + + asamIfExtAlmReportingSeverityDefault OBJECT-TYPE + SYNTAX AsamAlarmSeverityType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The default minimal severity for an alarm to be reported that will + be used for interfaces of the type specified in asamIfExtIfType. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: YES + RANGE: 1-5 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + DEFVAL {major} + ::= { asamIfExtAlmReportingSeverityDefaultEntry 2 } + + asamItfTest OBJECT IDENTIFIER ::= {asamItfMIB 9} + -- Extension to EXT MIB-II for line test + + asamItfMetallicTestGroup OBJECT IDENTIFIER ::= {asamItfTest 1} + -- First subgroup identifying metallic test group + + asamItfMetallicTestTypes OBJECT IDENTIFIER ::= {asamItfMetallicTestGroup 1} + -- First subgroup identifying metallic test types + + asamItfMetallicTestLimited OBJECT IDENTIFIER ::= + {asamItfMetallicTestTypes 1} + + asamItfMetallicTestTapLooped OBJECT IDENTIFIER ::= + {asamItfMetallicTestTypes 2} + + asamItfMetallicTestMonitor OBJECT IDENTIFIER ::= + {asamItfMetallicTestTypes 3} + + asamItfMetallicTestSplitAccess OBJECT IDENTIFIER ::= + {asamItfMetallicTestTypes 4} + + asamItfMetallicTestInwardOnly OBJECT IDENTIFIER ::= + {asamItfMetallicTestTypes 5} + + asamItfMetallicTestOutwardOnly OBJECT IDENTIFIER ::= + {asamItfMetallicTestTypes 6} + + asamItfMetallicTestResetTimer OBJECT IDENTIFIER ::= + {asamItfMetallicTestTypes 7} + + + asamItfMetallicTestCodes OBJECT IDENTIFIER ::= {asamItfMetallicTestGroup 2} + -- Second subgroup identifying metallic test codes + + asamItfLineNotReachable OBJECT IDENTIFIER ::= + {asamItfMetallicTestCodes 1} + + asamItfPreparingMetallicTest OBJECT IDENTIFIER ::= + {asamItfMetallicTestCodes 2} + + asamItfAnotherMetallicTestInProgress OBJECT IDENTIFIER ::= + {asamItfMetallicTestCodes 3} + + asamItfTestAppliqueNotReachable OBJECT IDENTIFIER ::= + {asamItfMetallicTestCodes 4} + + asamItfPotsSplitterNotReachable OBJECT IDENTIFIER ::= + {asamItfMetallicTestCodes 5} + + asamItfWcapNotReachable OBJECT IDENTIFIER ::= + {asamItfMetallicTestCodes 6} +-- reserved for ASAM + + asamItfLineBusy OBJECT IDENTIFIER ::= + {asamItfMetallicTestCodes 7} +-- To indicate the line status is not in either idle or power down or parking mode. Currently only for narrowband MTA + + asamItfLineAdminOperAbnormal OBJECT IDENTIFIER ::= + {asamItfMetallicTestCodes 8} +-- To indicate the line is either admin lock or oper disable +-- Crrently only for narrowband MTA + + asamItfLineAnotherLineTestInProgress OBJECT IDENTIFIER ::= + {asamItfMetallicTestCodes 9} + -- To indicate another line test is in progress. Currently only for NB MTA + + asamItfTestNotPossible OBJECT IDENTIFIER ::= + {asamItfMetallicTestCodes 10} + + + + asamShelfPhyItfSummaryTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamShelfPhyItfSummaryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Shelf summary table, summarizing status information of physical + interfaces of boards which can be equipped within the + corresponding shelf. + + ALCATEL NOTE: + TABLESIZE: DEP number of shelves." + ::= { asamItfMIB 10 } + + asamShelfPhyItfSummaryEntry OBJECT-TYPE + SYNTAX AsamShelfPhyItfSummaryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry of the shelf physical interface summary table. + " + INDEX { eqptHolderId } + ::= { asamShelfPhyItfSummaryTable 1 } + + AsamShelfPhyItfSummaryEntry ::= SEQUENCE { + asamShelfPhyItfNumberChangeOccurred Counter, + asamShelfPhyItfOperStatus OCTET STRING, + asamShelfPhyItfBitmap OCTET STRING + } + + asamShelfPhyItfNumberChangeOccurred OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is a counter indicating the number of state changes + of physical lines, equipped on boards within this shelf. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: 0 + UNITS: state change SPARSE: NA + DESCR: NA" + ::= { asamShelfPhyItfSummaryEntry 1 } + + asamShelfPhyItfOperStatus OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The bitmap for the operational status of the physical interfaces + of boards which can be equipped within this shelf. + + MAX_PIF: the maximum number of physical interfaces per board + (lines + IMA). + SLOTS: the maximum number of slots within a shelf + + Layout: 1..MAX_PIF 1..MAX_PIF ... 1..MAX_PIF + ========== ========== ========== + 0 1 ... SLOTS-1 + + Up = 1, Down = 0. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: DEP: #slots*#interfaces per board + DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamShelfPhyItfSummaryEntry 2 } + + asamShelfPhyItfBitmap OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The bitmap for the presence of the physical interfaces of boards + which can be equipped within this shelf. + + MAX_PIF: the maximum number of physical interfaces per board + (lines + IMA). + SLOTS: the maximum number of slots within a shelf + + Layout: 1..MAX_PIF 1..MAX_PIF ... 1..MAX_PIF + ========== ========== ========== + 0 1 ... SLOTS-1 + + Present = 1, Not present = 0. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: DEP: #slots*#interfaces per board + DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamShelfPhyItfSummaryEntry 3 } + +-- ========================================================= +-- the following table is supported from R5.3 onwards (e.g. 7367 ISAM SX-16P) +-- ========================================================= + + asamLluTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamLluEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The Local Loop Unbundling Table. + + ALCATEL NOTE: + TABLESIZE: DEP same size as the ifTable" + ::= {asamItfMIB 11} + + asamLluEntry OBJECT-TYPE + SYNTAX AsamLluEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the asamLluTable. There will be an entry + for each physical interface line (xdslLine) if the corresponding + board is configured/planned and if the corresponding board + supports LLU, i.e. no entries are auto-created in the MIB + - for boards that are not planned, + - for boards that are planned but for which the HW does + not support LLU. + the operator cannot create an entry nor delete an entry in this + table" + + INDEX { ifIndex } + ::= { asamLluTable 1} + + AsamLluEntry ::= SEQUENCE { + asamLluRelayStatus AsamLluRelayStatus, + asamLluRelayActionTime Gauge, + asamLluRelayOperStatus AsamLluRelayStatus, + asamLluRelayActionTimer Gauge + } + + AsamLluRelayStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Handling of relay for Local Loop Unbundling. + unbundle (1),-- unbundling LLU relay on the particular physical line + mentioned by a valid physical interface ifIndex. + If LLURelay is unbundled, then the line is + throughconnected to an external connector allowing + to connect the line to another exchange. + connect(2), -- connecting LLU relay on the particular physical line + mentioned by a valid physical interface ifIndex. + If LLURelay state of a particular line is connected + then the line is served by the LT. + For a DSL line this means it will pass to the card + its low and high pass filter. The effect is that + DSL signal is supported by the card, the POTS/ISDN signal is + brought to an external connector. + connectForMelt(3), -- connecting LLU relay for Melt on the particular + physical line mentioned by a valid physical interface ifIndex. + If LLURelay state of a particular line is connected + with Melt then the line is served by the LT and the MELT test block can be used. + For a DSL line this means it will pass to the card + its low and high pass filter and a MELT measurement can be performed. The effect is that + DSL signal is supported by the card, the POTS/ISDN signal is + not connected. + disconnect(4), -- disconnecting LLU relay on the particular physical line + mentioned by a valid physical interface ifIndex. + If LLURelay state of a particular line is disconnected: + -the line is open ended at the LT side + -the MELT test block(if present) on LT is throughconnected to an external connector + This particular state allows for two types of testing: + -an open ended measurement can be performed at end user side + -future: a MELT measurement can be performed for the external link + towards another exchange(if MELT test block present) + disconnectTimed(5), -- Temporarily disconnect LLU relay. After a timeout specified by + asamLluRelayActionTime, the relay goes back to 'connect'" + SYNTAX INTEGER { + unbundle (1), + connect (2), + connectForMelt (3), + disconnect (4), + disconnectTimed (5) + } + + asamLluRelayStatus OBJECT-TYPE + SYNTAX AsamLluRelayStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Configured administrative status of the relay. This value is kept persistent + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: NA + RANGE: NA DEFVALUE: unbundle + UNITS: NA SPARSE: NA + DESCR: NA" + ::= {asamLluEntry 1} + + asamLluRelayActionTime OBJECT-TYPE + SYNTAX Gauge + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The delay in tenths of seconds during which the relay will be in disconnected state before + switching to connected state after asamLluRelayStatus is configured to 'disconnectTimed' + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..864000 DEFVALUE: 50 + UNITS: s/10 SPARSE: NA + DESCR: NA" + ::= {asamLluEntry 2} + + asamLluRelayOperStatus OBJECT-TYPE + SYNTAX AsamLluRelayStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Operational status of the relay. This represents the actual status of the relay at + any time. The value 'disconnectTimed' does not apply in this context + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= {asamLluEntry 3} + + asamLluRelayActionTimer OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Time in tenths of seconds remaining before switching to connected state after + asamLluRelayStatus is configured to 'disconnectTimed'. 0 means that the + timer associated with disconnectTimed is not active. This can happen when: + - asamLluRelayStatus has never been configured to 'disconnectTimed' + - The timer has been configured with asamLluRelayActionTime = 0 + - The timer has expired + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..864000 DEFVALUE: 0 + UNITS: s/10 SPARSE: NA + DESCR: NA" + ::= {asamLluEntry 4} + + asamIfExtCounterSupportTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamIfExtCounterSupportEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A Table listing the supported counters for a particular interface . + + ALCATEL NOTE: + TABLESIZE: DEP number of supported interface types." + ::= {asamItfMIB 12 } + + asamIfExtCounterSupportEntry OBJECT-TYPE + SYNTAX AsamIfExtCounterSupportEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry containing list of supported counter information applicable to a + particular interface." + INDEX { asamIfExtCounterIndex } + ::= {asamIfExtCounterSupportTable 1} + + AsamIfExtCounterSupportEntry ::= SEQUENCE { + asamIfExtCounterIndex IANAifType, + asamifTblifDescr INTEGER, + asamifTblifMtu INTEGER, + asamifTblifSpeed INTEGER, + asamifTblifPhysAddress INTEGER, + asamifTblifAdminStatus INTEGER, + asamifTblifOperStatus INTEGER, + asamifTblifLastChange INTEGER, + asamifTblifInOctets INTEGER, + asamifTblifInUcastPkts INTEGER, + asamifTblifInNUcastPkts INTEGER, + asamifTblifInDiscards INTEGER, + asamifTblifInErrors INTEGER, + asamifTblifInUbknownProtos INTEGER, + asamifTblifOutOctets INTEGER, + asamifTblifOutUcastPkts INTEGER, + asamifTblifOutNUcastPkts INTEGER, + asamifTblifOutDiscards INTEGER, + asamifTblifOutErrors INTEGER, + asamifxTblifName INTEGER, + asamifxTblifInMulticastPkts INTEGER, + asamifxTblifInBroadcastPkts INTEGER, + asamifxTblifOutMulticastPkts INTEGER, + asamifxTblifOutBroadcastPkts INTEGER, + asamifxTblifHCInOctets INTEGER, + asamifxTblifHCInUcastPkts INTEGER, + asamifxTblifHCInMulticastPkts INTEGER, + asamifxTblifHCInBroadcastPkts INTEGER, + asamifxTblifHCOutOctets INTEGER, + asamifxTblifHCOutUcastPkts INTEGER, + asamifxTblifHCOutMulticastPkts INTEGER, + asamifxTblifHCOutBroadcastPkts INTEGER, + asamifxTblifLinkUpDownTrapEnable INTEGER, + asamifxTblifHighSpeed INTEGER, + asamifxTblifPromiscuousMode INTEGER, + asamifxTblifConnectorPresent INTEGER, + asamifxTblifAlias INTEGER, + asamifxTblifCounterDiscontinuityTime INTEGER + } + asamIfExtCounterIndex OBJECT-TYPE + SYNTAX IANAifType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique non-zero value representing an interface . + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + + ::= { asamIfExtCounterSupportEntry 1 } + + asamifTblifDescr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 2 } + asamifTblifMtu OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 3 } + asamifTblifSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 4 } + + asamifTblifPhysAddress OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 5 } + + asamifTblifAdminStatus OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 6 } + asamifTblifOperStatus OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 7 } + asamifTblifLastChange OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 8 } + + + asamifTblifInOctets OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 9 } + asamifTblifInUcastPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 10 } + asamifTblifInNUcastPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 11 } + asamifTblifInDiscards OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 12 } + asamifTblifInErrors OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 13 } + asamifTblifInUbknownProtos OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 14 } + asamifTblifOutOctets OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 15 } + + asamifTblifOutUcastPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 16 } + + asamifTblifOutNUcastPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 17 } + + asamifTblifOutDiscards OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 18 } + + asamifTblifOutErrors OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 19 } + + asamifxTblifName OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 20 } + + asamifxTblifInMulticastPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 21 } + + asamifxTblifInBroadcastPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 22 } + + asamifxTblifOutMulticastPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 23 } + + asamifxTblifOutBroadcastPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 24 } + + asamifxTblifHCInOctets OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 25 } + + asamifxTblifHCInUcastPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 26 } + + asamifxTblifHCInMulticastPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 27 } + + asamifxTblifHCInBroadcastPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 28 } + + asamifxTblifHCOutOctets OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 29 } + + asamifxTblifHCOutUcastPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 30 } + + + asamifxTblifHCOutMulticastPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 31 } + + asamifxTblifHCOutBroadcastPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 32 } + + asamifxTblifLinkUpDownTrapEnable OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 33 } + asamifxTblifHighSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 34 } + asamifxTblifPromiscuousMode OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 35 } + asamifxTblifConnectorPresent OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 36 } + asamifxTblifAlias OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 37 } + + asamifxTblifCounterDiscontinuityTime OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + " A value of 1 indicates that this parameter is supported for the specified interface + A value of 0 indicates that this parameter is not supported for the specified interface . + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: 0..1 DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfExtCounterSupportEntry 38 } + +-- ********************************************* +-- +-- IF-INDEX TO EXTENDED IF-INDEX MAPPING TABLE +-- +-- This table is a helper table. +-- +-- It contains the mapping of the ifIndex to extended ifIndex +-- of all interfaces that have a linear value +-- +-- ********************************************* + + asamIfIndexToExtIfIndexMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamIfIndexToExtIfIndexMappingEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "ifIndex to extended ifIndex Mapping Table. + + ALCATEL NOTE: + TABLESIZE: DEP same size as the ifTable." + ::= { asamItfMIB 13 } + + asamIfIndexToExtIfIndexMappingEntry OBJECT-TYPE + SYNTAX AsamIfIndexToExtIfIndexMappingEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry containing mapping from ifIndex to extended + ifIndex of interfaces." + + INDEX { ifIndex } + ::= { asamIfIndexToExtIfIndexMappingTable 1 } + + AsamIfIndexToExtIfIndexMappingEntry ::= SEQUENCE { + asamExtIfIndexId1 Gauge, + asamExtIfIndexId2 Gauge, + asamExtIfIndexId3 Gauge + } + + asamExtIfIndexId1 OBJECT-TYPE + SYNTAX Gauge (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the first indentifier of the extended-ifIndex + INTEGER.xxxx.xxxx. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: Gauge DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfIndexToExtIfIndexMappingEntry 1 } + + asamExtIfIndexId2 OBJECT-TYPE + SYNTAX Gauge (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the second indentifier of the extended-ifIndex + xxxx.INTEGER.xxxx. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: Gauge DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfIndexToExtIfIndexMappingEntry 2 } + + asamExtIfIndexId3 OBJECT-TYPE + SYNTAX Gauge (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the third indentifier of the extended-ifIndex + xxxx.xxxx.INTEGER. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: Gauge DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamIfIndexToExtIfIndexMappingEntry 3 } + +-- ********************************************* +-- +-- EXTENDED IF-INDEX TO IF-INDEX MAPPING TABLE +-- +-- This table is a helper table. +-- +-- It contains the mapping of the extended-ifIndex to ifIndex +-- of all interfaces that have a linear value +-- +-- ********************************************* + + asamExtIfIndexToIfIndexMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamExtIfIndexToIfIndexMappingEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Extended-ifIndex to ifIndex Mapping Table. + + ALCATEL NOTE: + TABLESIZE: DEP same size as the ifTable." + ::= { asamItfMIB 14 } + + asamExtIfIndexToIfIndexMappingEntry OBJECT-TYPE + SYNTAX AsamExtIfIndexToIfIndexMappingEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry containing mapping from extended-ifIndex to ifIndex + of interfaces." + +-- Type : INTEGER.INTEGER.INTEGER (total 96 bit) +-- asamExtIfIndexId1 -> INTEGER.xxxx.xxxx +-- asamExtIfIndexId2 -> xxxx.INTEGER.xxxx +-- asamExtIfIndexId3 -> xxxx.xxxx.INTEGER + INDEX { asamExtIfIndexId1, asamExtIfIndexId2, asamExtIfIndexId3 } + + ::= { asamExtIfIndexToIfIndexMappingTable 1 } + + AsamExtIfIndexToIfIndexMappingEntry ::= SEQUENCE { + asamIfIndex InterfaceIndex + } + + asamIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the ifIndex of the interface. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: ifIndex DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA" + ::= { asamExtIfIndexToIfIndexMappingEntry 1 } + + asamIfPortTypeTable OBJECT-TYPE + SYNTAX SEQUENCE OF AsamIfPortTypeEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "EFM Interface PortType Table. + + ALCATEL NOTE: + TABLESIZE: Entry will be equivalent to number of EFM interfaces exist." + ::= { asamItfMIB 15 } + + asamIfPortTypeEntry OBJECT-TYPE + SYNTAX AsamIfPortTypeEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry appears in this table for each EFM interface exist in the system." + INDEX { ifIndex } + ::= { asamIfPortTypeTable 1 } + + AsamIfPortTypeEntry ::= SEQUENCE { + asamIfPortType INTEGER + } + + asamIfPortType OBJECT-TYPE + SYNTAX INTEGER { + uni(1), + nni(2), + huni(3), + uplink(4), + lemi(5) + + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object identifies the whole network service model based + on this interface. + User Network Interface (UNI) is an interface which + specifies one untrust subscriber is connected. + Network to Network Interface (NNI) is an interface which + specifies one trust networks in connected. + Hicap User Network Interface (HUNI) is an interface which + specifies one untrust subscriber is connected, but with hicapacity + services. + Uplink specifies the interface is at the upside of the ISAM, i.e. + connecting the ISAM to the network. + Lemi is a local ethernet management interface. It is supported only + on a restricted set of systems/cards. + + ALCATEL NOTE: + ACCESS : NA USAGE : NA + PERSIST: YES INSRVMOD: NA + RANGE : NA DEFVALUE: uni + UNITS : NA SPARSE : NA + DESCR : This Object is supported only for few LTs.Setting of portType is not allowed for native ethernet interfaces.Setting portType as UNI is allowed for all interfaces except native ethernet.Setting portType as NNI is allowed only for EFM intefaces on supported LTs.For ethernet interfaces (native Ethernet) get command will display the portType from extendEtherPortCtrlTable" + ::= { asamIfPortTypeEntry 1 } + +END diff --git a/mibs/nokia/SFP-MIB b/mibs/nokia/SFP-MIB new file mode 100644 index 0000000000..6c0aa58a5c --- /dev/null +++ b/mibs/nokia/SFP-MIB @@ -0,0 +1,6138 @@ +-- SFP-MIB + +-- ====================================================================== +-- This specification is published by Alcatel-Lucent under Non-Disclosure +-- Agreement(s) (NDA) with specific parties and has to be considered as +-- Confidential Information as defined in such NDA. +-- Alcatel-Lucent reserves the right to revise this document for any reason, +-- including but not limited to conformity with standards promulgated by +-- various agencies, utilisation of advances in the state of the technical +-- areas, or the reflection of changes in the design of any equipment, +-- techniques, or procedures described or referred to herein. +-- The product specifications and other technical or performance information +-- contained herein are subject to change without notice. +-- Updates of this document will be issued under the above NDA's. +-- Alcatel-Lucent makes no representation or warranty, expressed or implied, with +-- respect to the sufficiency, accuracy, or utility of any information or +-- opinion contained herein. Alcatel-Lucent expressly advises that any use of for +-- any purpose or reliance upon this technical reference is at the risk of +-- the user and that Alcatel-Lucent will not be liable for any damage or injury +-- incurred by any person arising out of the sufficiency, accuracy, or +-- utility of any information or opinion contained herein. +-- This document is not to be construed as a suggestion to any manufacturer +-- to modify or change any of its products, nor does this document represent +-- any commitment by Alcatel-Lucent to sell or purchase any product. +-- Nothing contained herein will be construed as conferring by implication, +-- estoppel, or otherwise any license or right under any patent, whether or +-- not the use of any information herein necessarily employs an invention of +-- any existing or later issued patent. +-- Alcatel-Lucent reserves the right not to offer any or all of these products and +-- to withdraw any or all of them at any future time. +-- Copyright (C) 2005-2009, Alcatel-Lucent. All Rights Reserved. +-- =========================================================================== + +-- MODULE-IDENTITY +-- LAST-UPDATED ""20120213260000Z"" +-- ORGANIZATION "Alcatel" +-- CONTACT-INFO +-- +-- "Email: asam.mibsupport@alcatel-lucent.be" +-- +-- REVISION "20170307" +-- DESCRIPTION +-- Editor : hao.d.lu@alcatel-sbell.com.cn +-- Changes: +-- Update sfpInvSpecificalType with 1 new type: +-- cPlusPlusI(66) +-- +-- REVISION "20161104" +-- DESCRIPTION +-- Editor : hao.d.lu@alcatel-sbell.com.cn +-- Changes: +-- Update sfpInvSpecificalType with 2 new types: +-- base1000-ZR-CWDM(57), +-- base10G-ZR(58) +-- +-- REVISION "20151110" +-- DESCRIPTION +-- Editor : qiong.k.wu@alcatel-sbell.com.cn +-- Changes: +-- SfpDiagTable,SfpInventoryTable and SfpRSSIProfileTable are updated +-- for CFP4 introduced with FANT-G." +-- +-- REVISION "20120620" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V4.4.0.3.1 +-- Editor : vanapatla ramana +-- Changes: +-- Alcatel notes updated for Atttributes dsx1SfpGenConfigTributary1, +-- dsx1SfpGenConfigTributary2,dsx1FramerAlarmStatus and +-- dsx1SfpClkAlarmState as Not Supported." +-- +-- REVISION "20120607" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V4.4.0.3.0 +-- Editor : vanapatla ramana +-- Changes: +-- Added SGMIII loop back support and corrected the range of GenConfigMarket." +-- +-- REVISION "20120525" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V4.4.0.2.8 +-- Editor : vanapatla ramana +-- Changes: +-- Added ALCATEL NOTES." +-- +-- REVISION "20120524" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V4.4.0.2.5 +-- Editor : vanapatla ramana +-- Reason for change: ALU01794407 +-- Range of supported values for dsx1SfpLIUTxConfig is changed from 0-11 +-- changed to 1-12 " +-- +-- REVISION "20120213" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V4.4.0.2.0 +-- Editor : vanapatla ramana +-- Reason for change: ALU01279245, ALU01750853 : +-- Augmented tables dsx1GeneralConfigTable, dsx1PWTDMinterfaceTable +-- from dsx1ClockConfigTable.Augmented tables dsx1FramerTable, +-- dsx1LineInterfaceunitTable from dsx1PWTDMConfigTable. Fields " +-- +-- DESCRIPTION + +-- "The SFP MIB contains twelve tables: +-- 1. The host SFP configuration table +-- 2. The host SFP configuration extension table +-- 3. The host SFP status table. +-- 4. The expansion shelf SFP status table. +-- 5. The SFP diagnostics table. +-- 6. The SFP Inventory Table. +-- 7. The dsx1 General Configuration Table. +-- 8. The dsx1 Clock Configuration Table. +-- 9. The dsx1 Line Interface Unit Table. +-- 10. The dsx1 Framer Table. +-- 11. The dsx1 pseudo wire configuration Table. +-- 12. The dsx1 pseudo wire protocol Table. +-- 13. The dsx1 pseudo wire TDM interface Table." +-- +-- REVISION "20120108" + +-- REVISION "20120108" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V4.4.0.2.0 +-- Editor : Janakiraman/Vanapatla Ramana +-- Reason for change: "ALU01279245 : Management Integration of 2xE1/DS1- SFP in ISAM" +-- Introduced dsx1GeneralConfigTable, dsx1ClockConfigTable, +-- dsx1LineInterfaceunitTable, dsx1FramerTable, dsx1PWTDMConfigTable, +-- dsx1PWprotocolEngineTable and dsx1PWTDMinterfaceTable for 2xE1/DS1 SFP" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V4.0.0.1.1 +-- Editor : Marita Saveyn +-- Reason for change: ALU01336169 : +-- expSfpType, bit 16 (65536): 2500BASE-SX +-- expSfpType, bit 17 (131072): 2500BASE-LX" +-- expSfpType, bit 18 (262144): 2500BASE-BX" +-- +-- REVISION "20110208" +-- DESCRIPTION +-- "Version: To be updated +-- Editor : Deepak Rajaram/Gurusamy Dharmaraj +-- Reason for change: weblib comments for 3HH-01154-DDAA-PBZZA" +-- +-- REVISION "20110131" +-- DESCRIPTION +-- "Version: To be updated +-- Editor : Deepak Rajaram/Gurusamy Dharmaraj +-- Reason for change: ALU00122060/ALU00123022 : +-- Introduced sfpInventoryTable and updated +-- new parameters in sfpDiagTable" +-- +-- REVISION "20101004" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V4.0.0.0.5 +-- Editor : Marita Saveyn +-- Reason for change: ALU00805501 : +-- hostSfpType, bit 18 (262144): 2500BASE-BX" +-- +-- REVISION "20100426" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V4.0.0.0.4 +-- Editor : Marita Saveyn +-- Reason for change: ALU00303338 : +-- hostSfpType, bit 16 (65536): 2500BASE-SX +-- hostSfpType, bit 17 (131072): 2500BASE-LX" +-- +-- REVISION "20100331" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V4.0.0.0.3 +-- Editor : Marita Saveyn +-- Reason for change: correct type 2500GBASE into 2500BASE." +-- +-- REVISION "20091214" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V4.0.0.0.2 +-- Editor : Marita Saveyn +-- Reason for change: add sfp type 2500GBASE." +-- +-- REVISION "20090414" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V4.0.0.0.0 +-- Editor : Bakri Aboukarr +-- Reason for change: support newer SFP types." +-- +-- REVISION "20080923" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V3.7.1.1.0 +-- Editor : Tom Van Peteghem +-- Reason for change: +-- update for IHUB mib changes." +-- +-- REVISION "20080606" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V3.7.0.0.0 +-- Editor : Bakri Aboukarr +-- Reason for change: weblib comments made on 3HH-01154-CHAA-PBZZA. +-- Changes: +-- 1. Remove all smart quotes +-- 2. Change 0.00 mW to No Power." +-- +-- REVISION "20071005" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V3.6.0.0.1 +-- Editor : Larry Boone +-- Reason for change: weblib comments made on 3HH-01154-CGAA-PBZZA. +-- Changes: +-- 1. Revise the DESCRIPTION text for the 'Invalid' display string, +-- to match the wording in MIB versions for prior releases. +-- 2. Change the DESCRIPTION text for sfpDiagSfpFaceplateNumber - cages +-- numbered zero on the faceplate are indexed using +-- sfpDiagSfpFaceplateNumber = 0." +-- +-- REVISION "20070930" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V3.6.0.0.0 +-- Editor : Larry Boone +-- Reason for change: ANTms33137, 'SFP Digital Diagnostics (2nd part)'. +-- Changes: +-- 1. Move SFP Diagnostics assembly and release details from the +-- sfpDiagTable ASN.1 DESCRIPTION fields to the non-ASN.1 text. That change +-- was requested in weblib comment 408170 (3HH-01154-CEAA-PBZZA), and was +-- agreed with Raf van Driessche 2-Jul-2007. +-- 2. Port the (minor) ASN.1 DESCRIPTION changes for ANTms59215 from +-- 3HH-01154-CEAA-PBZZA to this version. In summary, set the sfpDiagTxPower +-- and sfpDiagRxPower DisplayStrings to 'Invalid' if erroneous external +-- calibration constants yields a negative value, in milliWatts. Similarly, +-- set the sfpDiagTxBiasCurrent and sfpDiagSupplyVoltage DisplayStrings to +-- 'Invalid', rather than display negative values (in mA and VDC, +-- respectively). +-- 3. Undo name changes for hostSfpDownlinkStatus code points (e.g. change +-- devNotPresent back to sfpNotPresent), as requested by AMS." +-- +-- +-- REVISION "20070720" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V3.5.0.0.2 +-- Editor : Larry Boone +-- Reason for change: ANTms02125, 'Remotes Aggregator' (ERAM-A). +-- Changes: +-- 1. Fix minor MIB syntax problems. +-- 2. Make the ALCATEL NOTE RANGE values for the +-- hostSfpCableToSlot and hostSfpCabledToSlot objects the same." +-- +-- REVISION "20070713" +-- DESCRIPTION +-- "Version: 3FE25209EAAA_V3.5.0.0.1 +-- Editor : Larry Boone +-- Reason for change: ANTms02125, 'Remotes Aggregator' (ERAM-A). +-- Changes: +-- 1. Add support for XFP Type (e.g. 10GBASE_LR) by increasing the range +-- of hostSfpType. +-- 2. Define a new numbering plan for XFP cages in hostSfpStatusTable. +-- 3. Revise the SFP-specific code point names in hostSfpDownlinkStatus +-- to make them applicable to XFPs as well. +-- 4. Correct the PERSIST value for hostStatusSfpFaceplateNumber." + +-- REVISION "20070601" +-- DESCRIPTION +-- "Version: 3FE25209AAAA_V3.5.0.0.0 +-- Editor: Bo Liu +-- Changes: updated for FDT591 - remote aggregator. +-- The sizes are extended for: +-- - hostSfpConfigTable +-- - hostSfpConfigExtTable +-- - hostSfpStatusTable +-- - expSfpStatusTable +-- - lanxPortNumber +-- The ranges of xxxSfpFaceplateNumbers are extended." +-- +-- REVISION "20070516" +-- DESCRIPTION +-- "Version: 3FE25209AAAA_V3.4.0.0.3 +-- Editor: Larry Boone +-- Changes: change the DESCRIPTION of the sfpDiagTemperature +-- DisplayString object - the format of the typical object +-- value is now '-128.00 degrees Celsius' (was '-128.00 C')." +-- +-- REVISION "20070423" +-- DESCRIPTION +-- "Version: 3FE25209AAAA_V3.4.0.0.2 +-- Editor: Larry Boone +-- Changes: correct the DESCRIPTION of the sfpDiagTxBiasCurrent +-- object - two decimal places of precision are required." +-- +-- REVISION "20070420" +-- DESCRIPTION +-- "Version: 3FE25209AAAA_V3.4.0.0.1 +-- Editor: Larry Boone +-- Changes: +-- a) Change the indexing of the two SFP cages of an FD-REM in the +-- sfpDiagTable (BDFhw64555) from +-- , +-- +-- to +-- , +-- . +-- Only DESCRIPTION fields are affected. +-- b) Delete swError from the sfpDiagAvailable enum. If a software error +-- occurs when retrieving SFP diagnostics, return the SNMP error code +-- 'genError' in the SNMP error-status field. +-- c) Rename the object sfpDiagCageNum to sfpDiagSfpFaceplateNumber, for +-- consistency with hostConfigSfpFaceplateNumber, +-- hostConfigExtSfpFaceplateNumber, and hostStatusSfpFaceplateNumber." +-- +-- REVISION "20070308" +-- DESCRIPTION +-- "Version: 3FE25209AAAA_V3.4.0.0.0 +-- Editor: Larry Boone +-- Changes: Added the sfpDiagTable (BDFhw64555) +-- Change the size of the hostSfpConfigTable (ANTms30627)" +-- +-- REVISION "20061012" +-- DESCRIPTION +-- "Version: 3FE25209AAAA_E3.3.0.0 +-- Editor: John Chuah +-- Changes: Added hostSfpCablingMismatch and +-- hostSfpCabledToPhysAddress to HostSfpStatusEntry. +-- Increased the maximum rack value from 6 to 7 +-- and the maximum shelf value from 3 to 4." +-- +-- REVISION "20060915" +-- DESCRIPTION +-- "Version: 3FE25467AAAA_V3.2.0.3.0 +-- Editor: Zhu Jianhua +-- Changes: +-- update the ranges of hostStatusSfpFaceplateNumber, +-- hostSfpFaceplateNumber, hostConfigExtSfpFaceplateNumber, +-- hostConfigSfpFaceplateNumber for 7330FD +-- Added 0 to the ranges of rack, shelf and slot." +-- +-- REVISION "20060505" +-- DESCRIPTION +-- "Version: 3FE25209AAAA_V3.2.0.0.0 +-- Editor: Bo Liu, Marc Van Vlimmeren +-- Changes: +-- Added ALCATEL NOTES." +-- +-- REVISION "20051121" +-- DESCRIPTION +-- "Version: 3FE25209AAAA_E3.0.0.0 +-- Editor: Vairamuthu Karuppiah +-- Changes: Updated for equipment dimensioning changes to 6 +-- racks and 4 shelves" +-- +-- REVISION "20050815" +-- DESCRIPTION +-- "Version: 3FE25209AAAA_E2.3.1.3 +-- Editor: Bo Liu +-- Changes: update the document based on CRs / comments in Weblib." +-- +-- REVISION "20050614" +-- DESCRIPTION +-- "Version: 3FE25209AAAA_E2.3.1.2 +-- Editor: Bo Liu +-- Changes: update after review (based on comments in Weblib)." +-- +-- REVISION "20050513" +-- DESCRIPTION +-- "Version: 3FE25209AAAA_E2.3.1.1 +-- Editor: Bo Liu +-- Changes: update after review (based on comments in Weblib)." +-- +-- REVISION "20050509" +-- DESCRIPTION +-- "Version: 3FE25209AAAA_E2.3.1.0 +-- Editor: Bo Liu +-- Changes: update after review (based on comments in Weblib)." +-- +-- REVISION "20050502" +-- DESCRIPTION +-- "Version: 3FE25209AAAA_E2.3.0.1 +-- Editor: Bo Liu +-- Changes: update after review (based on comments in Weblib)." +-- +-- REVISION "20050421" +-- DESCRIPTION +-- "Version: 3FE25209AAAA_E2.3.0.0 +-- Editor: Bo Liu +-- Changes: creation of the MIB" +-- ============================================================================ + + +SFP-MIB DEFINITIONS ::= BEGIN + + +IMPORTS + + Counter, TimeTicks + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + PhysAddress + FROM RFC1213-MIB + ifIndex + FROM ITF-MIB + AsamProfileIndex FROM ASAM-TC-MIB + AsamProfilePointer FROM ASAM-TC-MIB + AsamProfileName FROM ASAM-TC-MIB + AsamProfileRefCount FROM ASAM-TC-MIB + eqptSlotId, + EqptSlotIndex FROM ASAM-EQUIP-MIB + RowStatus + FROM SNMPv2-TC + + DisplayString FROM SNMPv2-TC + MacAddress FROM BRIDGE-MIB + + asam FROM SYSTEM-MIB; + +-- type definitions + +AsamNextProfileIndex ::= INTEGER(0..65535) +AsamMaxProfileIndex ::= INTEGER(0..65535) + +SfpDiagTCAStatus ::= INTEGER + { + notAvailable(1), + normal(2), + exceededLowWarning(3), + exceededLowAlarm(4), + exceededHighWarning(5), + exceededHighAlarm(6) + } + +-- TEXTUAL-CONVENTION +-- STATUS current +-- DESCRIPTION +-- "Diagonostics Threshold Crossing Alert status for temperature / +-- voltage / RX power / TX power / bias current, available in +-- SFP/SFP+/XFP EEPROM +-- Note : Two thresholds (warning and alarm level) are preset in +-- SFP/SFP+/XFP EEPROM during manufactor. Changing the threshold by +-- operator is not supprted +-- Possible values : +-- notAvailable : This value will be set when sfpDiagAvailable is set +-- other than noError, ie, retrieval of diagnostics is failed +-- Following values are applicable only when sfpDiagAvailable is +-- set to noError, ie, retrieval of diagnostics is success +-- normal : No threshold crossing, present value is within the threshold +-- exceededLowWarningThreshold : Present value is greater than the low +-- warning level threshold +-- exceededLowAlarmThreshold : Present value is greater than the low +-- alarm level threshold +-- exceededHighWarningThreshold : Present value is greater than the high +-- warning level threshold +-- exceededHighAlarmThreshold : Present value is greater than the high +-- alarm level threshold" + +sfpMIB OBJECT IDENTIFIER ::= {asam 56} + + +-- SFP MIB + +-- ================================================================== +-- | Start of Host SFP Configuration Table | +-- ================================================================== + +hostSfpConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF HostSfpConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the host shelf SFP direction configuration + information. + ALCATEL NOTE: + TABLESIZE: 8 + " +::= {sfpMIB 1} + +hostSfpConfigEntry OBJECT-TYPE + SYNTAX HostSfpConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry consists of a list of host shelf SFP configuration parameters." + INDEX {hostConfigSfpFaceplateNumber} +::= {hostSfpConfigTable 1} + +HostSfpConfigEntry ::= + SEQUENCE { + hostConfigSfpFaceplateNumber INTEGER, + hostSfpDirection INTEGER + } + +hostConfigSfpFaceplateNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is host shelf SFP number on the faceplate. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 1..17 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {hostSfpConfigEntry 1} + +hostSfpDirection OBJECT-TYPE + SYNTAX INTEGER { + uplink (1), + downlink (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The host shelf SFP can be configured as downlink or uplink. The default + is uplink. + ALCATEL NOTE: + ACCESS: NA + USAGE: OPT + PERSIST: YES + INSRVMOD: YES + RANGE: NA + DEFVALUE: uplink + UNITS: NA + SPARSE: NO + DESCR: NA + " +-- DEFVAL {1} +::= {hostSfpConfigEntry 2} + +-- ================================================================== +-- | Start of Host SFP Configuration Extension Table | +-- ================================================================== + +hostSfpConfigExtTable OBJECT-TYPE + SYNTAX SEQUENCE OF HostSfpConfigExtEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the host shelf SFP configuration information + additional to the host SFP direction configuration. + WARNING This table is now deprecated. ltHostSfpConfigExtTable should be used instead. + ALCATEL NOTE: + TABLESIZE: 24 + " +::= {sfpMIB 2} + +hostSfpConfigExtEntry OBJECT-TYPE + SYNTAX HostSfpConfigExtEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry consists of a list of host shelf SFP configuration + parameters which supplements the parameters in hostSfpConfigTable. + WARNING This table is now deprecated. ltHostSfpConfigExtTable should be used instead." + + INDEX {hostConfigExtSfpFaceplateNumber} +::= {hostSfpConfigExtTable 1} + +HostSfpConfigExtEntry ::= + SEQUENCE { + hostConfigExtSfpFaceplateNumber INTEGER, + hostSfpCableToRack INTEGER, + hostSfpCableToShelf INTEGER, + hostSfpCableToSlot INTEGER + } + +hostConfigExtSfpFaceplateNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the host shelf SFP number on the faceplate. + WARNING This table is now deprecated. ltHostSfpConfigExtTable should be used instead. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 1..24 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {hostSfpConfigExtEntry 1} + +hostSfpCableToRack OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the Rack ID of the expansion shelf LSM which the host shelf SFP + is planned to cable to. Value 0 means that no rack is specified. + WARNING This table is now deprecated. ltHostSfpConfigExtTable should be used instead. + ALCATEL NOTE: + ACCESS: NA + USAGE: OPT + PERSIST: YES + INSRVMOD: YES + RANGE: 0..7 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {hostSfpConfigExtEntry 2} + +hostSfpCableToShelf OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the Shelf ID of the expansion shelf LSM which + the host shelf SFP is planned to cable to. + Value 0 means that no shelf is specified. + WARNING This table is now deprecated. ltHostSfpConfigExtTable should be used instead. + ALCATEL NOTE: + ACCESS: NA + USAGE: OPT + PERSIST: YES + INSRVMOD: YES + RANGE: 0..4 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: The shelf identified by hostSfpCableToRack and + hostSfpCableToShelf must already be planned. + " +::= {hostSfpConfigExtEntry 3} + +hostSfpCableToSlot OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the Slot ID of the expansion shelf LSM which + the host shelf SFP is planned to cable to. + Value 0 means that no slot is specified. + WARNING This table is now deprecated. ltHostSfpConfigExtTable should be used instead. + ALCATEL NOTE: + ACCESS: NA + USAGE: OPT + PERSIST: YES + INSRVMOD: YES + RANGE: DEP / depends on the shelf type. + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {hostSfpConfigExtEntry 4} + +-- ================================================================== +-- | Start of Host SFP Status Table | +-- ================================================================== + +hostSfpStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF HostSfpStatusEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the host shelf SFP or XFP status information. + WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead. + + ALCATEL NOTE: + TABLESIZE: 26 + " +::= {sfpMIB 3} + +hostSfpStatusEntry OBJECT-TYPE + SYNTAX HostSfpStatusEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry consists of a list of SFP or XFP status parameters. + WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead." + INDEX {hostStatusSfpFaceplateNumber} +::= {hostSfpStatusTable 1} + +HostSfpStatusEntry ::= + SEQUENCE { + hostStatusSfpFaceplateNumber INTEGER, + lanxPortNumber INTEGER, + hostSfpDownlinkStatus INTEGER, + hostSfpCabledToRack INTEGER, + hostSfpCabledToShelf INTEGER, + hostSfpCabledToSlot INTEGER, + hostSfpType INTEGER, + hostSfpCablingMismatch INTEGER, + hostSfpCabledToPhysAddress PhysAddress + } + +hostStatusSfpFaceplateNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the host shelf SFP or XFP cage number. + For an SFP cage, it is the faceplate number of the SFP cage (e.g. 1). + For an XFP cage, it is 256 + (the faceplate number of the XFP cage). For + example, if the XFP cage has faceplate label X1, + hostStatusSfpFaceplateNumber == 257. + WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 1..258 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {hostSfpStatusEntry 1} + +lanxPortNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " This is the Physical LANX or IHUB port to which the SFP or XFP is + connected to. For an SHUB system, the lanxPortNumber here corresponds + to lanxInterfaceIndex in the LANX MIB. For an IHUB system, the + lanxPortNumber to the TmnxPortID to be used in the Timetra Port MIB. + For IHUB this is an 32 bit encoded number for which the structure is + defined in Timetra-TC-MIB. + WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 1..26 for SHUB / 32 Bit Encoded number for IHUB + DEFVALUE: DEP / depends on the hostStatusSfpFaceplateNumber. + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {hostSfpStatusEntry 2} + +hostSfpDownlinkStatus OBJECT-TYPE + SYNTAX INTEGER { + ok (1), + sfpNotPresent (2), + los (3), + txFail (4), + invalidAlcatelId (5), + unknown (6), + sfpControlFail (7), + notApplicable (8), + txFailAndLos (9), + sfpPlanDetectMismatch (10) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the host shelf SFP or XFP status. + ok (1): The SFP or XFP is operational. + sfpNotPresent (2): The SFP or XFP cage is empty. + los (3): The SFP or XFP has detected Loss of Signal. + txFail (4): The SFP or XFP has detected Transmitter + Fail. + invalidAlcatelId (5): The SFP or XFP does not contain + a valid Alcatel-Lucent ID. + unknown (6): The host expansion card is planned but + not inserted. + sfpControlFail (7): The SFP or XFP is not responding, or the + I2C read failed. + notApplicable (8): Retrieval of status information from the + SFP or XFP cage is not supported. + txFailAndLos (9): The SFP or XFP has detected both + Transmitter Fail and Loss of Signal. + sfpPlanDetectMismatch (10): Not used - superseded by the + hostSfpCablingMismatch object. + WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: NA + DEFVALUE: 6 / status is unknown + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {hostSfpStatusEntry 3} + +hostSfpCabledToRack OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the Rack ID of the expansion shelf LSM to which the host shelf SFP + is cabled to. + Value 0 means that SFP is not cabled to any expansion shelf LSM. + WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 0..7 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {hostSfpStatusEntry 4} + +hostSfpCabledToShelf OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the Shelf ID of the expansion shelf LSM which the host shelf + SFP is cabled to. + Value 0 means that SFP is not cabled to any expansion shelf LSM. + WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 0..4 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {hostSfpStatusEntry 5} + +hostSfpCabledToSlot OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the Slot ID of the expansion shelf LSM which the host shelf SFP + is cabled to. + Value 0 means that SFP is not cabled to any expansion shelf LSM. + WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: DEP / depends on the shelf type. + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {hostSfpStatusEntry 6} + +hostSfpType OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the type of the SFP or XFP, as read from the + device. + It is a bitmap represented as a sum, therefore, it can represent + multiple types (combination of types) simultaneously. + The SFP type bits (0..7) are as defined in standard SFF-8472. + The XFP type bits (8..15) are as defined in standard INF-8077_v4.5. + The SFP octet and the XFP octet are mutually exclusive (i.e. at least + one of the two octets is always zero). + The various bit positions are: + bit 0 (1): 1000BASE-SX + bit 1 (2): 1000BASE-LX + bit 2 (4): 1000BASE-CX + bit 3 (8): 1000BASE-T + bit 4 (16): 100BASE-LX/LX10 + bit 5 (32): 100BASE-FX + bit 6 (64): BASE-BX10 + bit 7 (128): BASE-PX + bit 8 (256): reserved for a future XFP type, INF-8077 + bit 9 (512): 10GBASE-EW + bit 10 (1024): 10GBASE-LW + bit 11 (2048): 10GBASE-SW + bit 12 (4096): 10GBASE-LRM + bit 13 (8192): 10GBASE-ER + bit 14 (16384): 10GBASE-LR + bit 15 (32768): 10GBASE-SR + bit 16 (65536): 2500BASE-SX + bit 17 (131072): 2500BASE-LX + bit 18 (262144): 2500BASE-BX + If the hostSfpType is unknown or not specified, hostSfpType = 0. + WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 0..65535 + DEFVALUE: 0 / hostSfpType unknown + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {hostSfpStatusEntry 7} + +hostSfpCablingMismatch OBJECT-TYPE + SYNTAX INTEGER { + noMismatch(1), + unexpectedRemoteLt(2), + assignmentMismatch(3), + incompatibleShelf(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the host shelf SFP cabling mismatch status: + noMismatch(1): no cabling mismatch is detected. + unexpectedRemoteLt(2): a remote LT is detected at an unassigned + downlink SFP port. + assignmentMismatch(3): the detected remote LT does not match + the LT assigned to this host SFP. + incompatibleShelf(4): the detected remote LT is in a shelf + type which is not the planned shelf type. + WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: NA + DEFVALUE: 1 / noMismatch + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {hostSfpStatusEntry 8} + +hostSfpCabledToPhysAddress OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The physical (MAC) address of the remote interface that is + cabled to this host shelf SFP. + If the remote interface does not have such an address or + the address is not yet discovered, this object would + contain an octet string of zero length. + WARNING This table is now deprecated. ltHostSfpStatusTable should be used instead. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {hostSfpStatusEntry 9} + +-- ================================================================== +-- | Start of Expansion Shelf SFP Status Table | +-- ================================================================== + +expSfpStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF ExpSfpStatusEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the expansion shelf SFP status information. + ALCATEL NOTE: + TABLESIZE: 312 (24 + 288) + " +::= {sfpMIB 4} + +expSfpStatusEntry OBJECT-TYPE + SYNTAX ExpSfpStatusEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry consists of the expansion shelf SFP status." + INDEX {expSfpRack,expSfpShelf,expSfpSlot} +::= {expSfpStatusTable 1} + +ExpSfpStatusEntry ::= + SEQUENCE { + expSfpRack INTEGER, + expSfpShelf INTEGER, + expSfpSlot INTEGER, + expSfpStatus INTEGER, + hostSfpFaceplateNumber INTEGER, + expSfpType INTEGER, + hostSfpLogSlotId EqptSlotIndex + } + +expSfpRack OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the Rack ID of the expansion shelf SFP (actually its + corresponding LSM). + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 1..7 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {expSfpStatusEntry 1} + +expSfpShelf OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the Shelf ID of the expansion shelf SFP (actually + its corresponding LSM). + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 1..4 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {expSfpStatusEntry 2} + +expSfpSlot OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the Slot ID of the expansion shelf SFP (actually its + corresponding LSM). + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: DEP / depends on the shelf type. + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {expSfpStatusEntry 3} + +expSfpStatus OBJECT-TYPE + SYNTAX INTEGER { + ok (1), + sfpNotPresent (2), + los (3), + txFail (4), + invalidAlcatelId (5), + unknown (6), + sfpControlFail (7), + txFailAndLos (8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the status of the expansion shelf SFP: + ok (1): the expansion shelf SFP is operational. + sfpNotPresent (2): no SFP present. + los (3): LOS is detected by the expansion shelf SFP. + txFail (4): the expansion shelf TX failed. + invalidAlcatelId (5): the expansion shelf SFP plugged does not + have a valid Alcatel ID. + unknown (6): the status is not available or cannot + be retrieved. + sfpControlFail (7): SFP not responding or I2C failure. + txFailAndLos (8): the expansion shelf TX failed and LOS is + detected by the expansion shelf SF + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: NA + DEFVALUE: 6 / unknown + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {expSfpStatusEntry 4} + +hostSfpFaceplateNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the faceplate number of the host shelf SFP which the expansion + shelf SFP is cabled to. If an expansion shelf SFP is not cabled to any + host shelf SFP, the value of the corresponding hostSfpFaceplateNumber + is set to 0. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 0..24 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {expSfpStatusEntry 5} + +expSfpType OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the type of the SFP. It is a bitmap represented + as a sum, therefore, it can represent multiple types (combination + of types) simultaneously. The various bit positions are: + bit 0 (1): 1000BASE-SX + bit 1 (2): 1000BASE-LX + bit 2 (4): 1000BASE-CX + bit 3 (8): 1000BASE-T + bit 4 (16): 100BASE-LX/LX10 + bit 5 (32): 100BASE-FX + bit 6 (64): BASE-BX10 + bit 7 (128): BASE-PX + bit 16 (65536): 2500BASE-SX + bit 17 (131072): 2500BASE-LX + bit 18 (262144): 2500BASE-BX + If the expSfpType is unknown or not specified, expSfpType = 0. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: NA + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {expSfpStatusEntry 6} + +hostSfpLogSlotId OBJECT-TYPE + SYNTAX EqptSlotIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the LogSlotId of the host LT which the expansion + shelf SFP is cabled to. If an expansion shelf SFP is not cabled to any + host shelf SFP, the value of the corresponding hostSfpLogSlotId + is set to 0. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: see above + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {expSfpStatusEntry 7} + + +-- ================================================================== +-- | Start of SFP Diag Table | +-- ================================================================== + +-- sfpDiagTable definition + +sfpDiagTable OBJECT-TYPE + SYNTAX SEQUENCE OF SfpDiagEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The primary purpose of this read-only table: allow the SNMP + manager to read real-time diagnostic measurements (e.g. the + SFP's received optical power level) from the A2 bank of a + manager-specified SFP. The A2 bank and content are defined in + the SFF-8472 standard (available at ftp.seagate.com). + + The table is indexed to allow support for any SFP cage in + the system. + + In a particular release, SFP diagnostics support for a + particular assembly may or may not be provided, and support for + all the cages on a supported assembly may or may not be + provided. If an assembly has any supported SFP cages, a row will be + present in this table for each of its SFP cages. + + A row is present whether or not the SFP cage contains an SFP, + and whether or not the SFP supports diagnostics. If the SFP + cage contains an SFP, some status information (e.g. LOS and + TxFault status) is available in the row. An enumerated object + (sfpDiagAvailable) is used to indicate the condition/error + (or no error) encountered when attempting to read the + diagnostics information for the specified cage (e.g. cage + empty, or A2 checksum failed). + + Details are documented with the individual objects. + + The following table size field is set to 'not applicable', + since it does not make sense for the SNMP manager to cache the + values in this table. The values will be different each time + they are read from agent. + + ALCATEL NOTE: + TABLESIZE: NA + DESCR: NA + " +::= {sfpMIB 5} + +-- List the two index columns of the sfpDiagTable. + +sfpDiagEntry OBJECT-TYPE + SYNTAX SfpDiagEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The index for the sfpDiagTable identifies an SFP cage + using two fields: the logicalSlotId of the card associated + with the SFP cage (normally the card with the cages on its + faceplate), and the SFP cage number." + INDEX {sfpDiagLogicalSlot, sfpDiagSfpFaceplateNumber} +::= {sfpDiagTable 1} + +-- List all the columns in the sfpDiagTable. + +SfpDiagEntry ::= + SEQUENCE { + sfpDiagLogicalSlot INTEGER, + sfpDiagSfpFaceplateNumber INTEGER, + sfpDiagAvailable INTEGER, + sfpDiagLOS INTEGER, + sfpDiagTxFault INTEGER, + sfpDiagTxPower DisplayString, + sfpDiagRxPower DisplayString, + sfpDiagTxBiasCurrent DisplayString, + sfpDiagSupplyVoltage DisplayString, + sfpDiagTemperature DisplayString, + sfpDiagTCAStatusTemperature SfpDiagTCAStatus, + sfpDiagTCAStatusVoltage SfpDiagTCAStatus, + sfpDiagTCAStatusBiasCurrent SfpDiagTCAStatus, + sfpDiagTCAStatusTxPower SfpDiagTCAStatus, + sfpDiagTCAStatusRxPower SfpDiagTCAStatus, + sfpDiagRSSIProfileId INTEGER, + sfpDiagRSSIState INTEGER, + sfpDiagRSSIRxPowerAlmLow DisplayString, + sfpDiagRSSIRxPowerAlmHigh DisplayString, + sfpDiagRSSIRxPowerWarnLow DisplayString, + sfpDiagRSSIRxPowerWarnHigh DisplayString, + sfpDiagRSSITxPowerAlmLow DisplayString, + sfpDiagRSSITxPowerAlmHigh DisplayString, + sfpDiagRSSITxPowerWarnLow DisplayString, + sfpDiagRSSITxPowerWarnHigh DisplayString, + sfpDiagRSSITemperatureAlmLow DisplayString, + sfpDiagRSSITemperatureAlmHigh DisplayString, + sfpDiagRSSITemperatureWarnLow DisplayString, + sfpDiagRSSITemperatureWarnHigh DisplayString, + sfpDiagRSSIBiasAlmLow DisplayString, + sfpDiagRSSIBiasAlmHigh DisplayString, + sfpDiagRSSIBiasWarnLow DisplayString, + sfpDiagRSSIBiasWarnHigh DisplayString, + sfpDiagRSSIVoltageAlmLow DisplayString, + sfpDiagRSSIVoltageAlmHigh DisplayString, + sfpDiagRSSIVoltageWarnLow DisplayString, + sfpDiagRSSIVoltageWarnHigh DisplayString, + sfpDiagRSSIExtRxPowerAlmLow DisplayString, + sfpDiagRSSIExtRxPowerAlmHigh DisplayString, + sfpDiagRSSIExtRxPowerWarnLow DisplayString, + sfpDiagRSSIExtRxPowerWarnHigh DisplayString, + sfpDiagRSSIExtTxPowerAlmLow DisplayString, + sfpDiagRSSIExtTxPowerAlmHigh DisplayString, + sfpDiagRSSIExtTxPowerWarnLow DisplayString, + sfpDiagRSSIExtTxPowerWarnHigh DisplayString, + sfpDiagRSSIExtBiasAlmLow DisplayString, + sfpDiagRSSIExtBiasAlmHigh DisplayString, + sfpDiagRSSIExtBiasWarnLow DisplayString, + sfpDiagRSSIExtBiasWarnHigh DisplayString, + sfpDiagRSSIExtTemperatureAlmLow DisplayString, + sfpDiagRSSIExtTemperatureAlmHigh DisplayString, + sfpDiagRSSIExtTemperatureWarnLow DisplayString, + sfpDiagRSSIExtTemperatureWarnHigh DisplayString +} + +-- Define the first index column of the sfpDiagTable. + +sfpDiagLogicalSlot OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the first index of the sfpDiagTable. + + Normally, this object contains the Logical Slot ID (as defined in + the Equipment MIB) of the card which has the SFP cage of interest + on its faceplate. + If that card does not have a Logical Slot ID, the Logical Slot ID + of a related card is used. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: 1..65535 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {sfpDiagEntry 1} + +-- Define the second (and final) index column of the sfpDiagTable. + +sfpDiagSfpFaceplateNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the second index of the sfpDiagTable. + It is the number of the SFP cage, as shown on the card + faceplate. If the faceplate cage number is zero, + sfpDiagSfpFaceplateNumber=0 is used (i.e. zero is not a + special case). + For an SFP cage, it is the faceplate number of the SFP cage + (e.g. 1). + For an SFP+/XFP cage, it is 256 + the faceplate number + of the XFP cage. For example, if the SFP+/XFP cage has + faceplate label X1, sfpInvFaceplateNumber = 257. + For an QSFP cage, it is 512 + the faceplate number + of the QSFP cage. For example, if the QSFP cage has + faceplate label Q1, sfpInvFaceplateNumber = 513. + For a CFP4 cage, it is 768 + the faceplate number + of the CFP4 cage. For example, if the CFP4 cage has + faceplate label C1, sfpInvFaceplateNumber = 769. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: 0..769 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {sfpDiagEntry 2} + +-- Define a non-index column of the sfpDiagTable. + +sfpDiagAvailable OBJECT-TYPE + SYNTAX INTEGER { + noError (1), + cageDoesNotSupportDiag(2), + cageEmpty (3), + cageDoesNotSupportA2 (4), + a0ReadFailed (5), + a0ChecksumFailed (6), + sfpDoesNotSupportA2 (7), + a2ReadFailed (8), + a2ChecksumFailed (9) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpDiagTable, with the following code points. + + noError - valid values for all objects in this row (e.g. + sfpDiagRxPower) were obtained from the SFP in the specified + cage. + cageDoesNotSupportDiag - the specified cage does not support + reading LOS, TxFault, or A2 measurements. All subsequent values in the + row have notAvailable or 'Not Available' values. + cageEmpty - the specified SFP cage does not contain an SFP. + All subsequent values in the row have notAvailable or + 'Not Available' values. + cageDoesNotSupportA2 - the specified SFP cage does not support + access to the SFP A2 bank (e.g. because of limitations in + FPGA support on the host card). sfpDiagLOS and + sfpDiagTxFault have valid values (since they are implemented + using external signals, not SFP EEPROM values). + a0ReadFailed - the attempt to read the A0 bank of the + specified SFP failed. A0 is read to determine if A2 is + supported, so no attempt was made to read the A2 + information. sfpDiagLOS and sfpDiagTxFault have valid + values (since they are implemented using external signals, + not SFP EEPROM values). + a0ChecksumFailed - the A0 bank of the SFP EEPROM is + corrupted. sfpDiagLOS and sfpDiagTxFault have valid values + (since they are implemented using external signals, not SFP + EEPROM values). + sfpDoesNotSupportA2 - the A0 bank of the SFP EEPROM indicates + A2 is not supported. sfpDiagLOS and sfpDiagTxFault have + valid values (since they are implemented using external + signals, not SFP EEPROM values). + a2ReadFailed - the attempt to read the A2 bank of the + specified SFP failed. sfpDiagLOS and sfpDiagTxFault have + valid values (since they are implemented using external + signals, not SFP EEPROM values). + a2ChecksumFailed - the A2 bank of the SFP EEPROM is + corrupted. sfpDiagLOS and sfpDiagTxFault have valid values + (since they are implemented using external signals, not SFP + EEPROM values). + + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpDiagEntry 3} + +-- Define a non-index column of the sfpDiagTable. + +sfpDiagLOS OBJECT-TYPE + SYNTAX INTEGER { + los (1), + noLos (2), + notAvailable (3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpDiagTable, with the following code + points. + + los - the SFP in the specified SFP cage has detected Loss of + Signal (on its receiver). + noLos - the SFP in the specified SFP cage has detected a + received signal with a suitable power level. + notAvailable - the status of the received signal for the + specified SFP cage cannot be determined (e.g. because the + cage is empty - see sfpDiagAvailable). + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpDiagEntry 4} + +-- Define a non-index column of the sfpDiagTable. + +sfpDiagTxFault OBJECT-TYPE + SYNTAX INTEGER { + txFault (1), + noTxFault (2), + notApplicable (3), + notAvailable (4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpDiagTable, with the following code + points. + + txFault - the SFP in the specified SFP cage has detected a + TxFault error (as defined in SFF-8472). + noTxFault - the SFP in the specified SFP cage has not detected + a TxFault error. + notApplicable - the SFP is electrical, so TxFault is not + applicable (the detection technology is optical). + notAvailable - the TxFault status of the specified SFP cage + cannot be determined (e.g. because the cage is empty - see + sfpDiagAvailable). + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpDiagEntry 5} + +-- Define a non-index column of the sfpDiagTable. + +sfpDiagTxPower OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpDiagTable, containing the freshly-measured + transmit power of the specified SFP, encoded into a string. + + Five types of values are supported. In the following text, + strings are enclosed in single quotes (a double quote marks the + end of the DESCRIPTION field). + + 1. '-40.00 dBm' to '8.16 dBm', in 0.01 dBm increments. Note + that ' dBm' is included in the string. + + 2. 'No Power'. This is a special case because an SFP reading + of 0.00 mW cannot be converted to dBm (since log10(0.00) is + undefined). + + 3. 'Not Applicable'. This is used for an electrical SFP. The + technology for measuring transmitted power is optical. + + 4. 'Not Available'. The measurement could not be obtained + (e.g. the specified SFP cage is empty). + + 5. 'Invalid'. The transmitted power, in mW, is negative (for example, + due to incorrect external calibration constants in the SFP). A + negative mW value is not valid in this context, and cannot be + converted to dBm. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpDiagEntry 6} + +-- Define a non-index column of the sfpDiagTable. + +sfpDiagRxPower OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpDiagTable, containing the freshly-measured + received power of the specified SFP, encoded into a string. + + Five types of values are supported. In the following text, + strings are enclosed in single quotes (a double quote marks the + end of the DESCRIPTION field). + + 1. '-40.00 dBm' to '8.16 dBm', in 0.01 dBm increments. Note + that ' dBm' is included in the string. + + 2. 'No Power'. This is a special case because an SFP reading + of 0.00 mW cannot be converted to dBm (since log10(0.00) is + undefined). + + 3. 'Not Applicable'. This is used for an electrical SFP. The + technology for measuring received power is optical. + + 4. 'Not Available'. The measurement could not be obtained + (e.g. the specified SFP cage is empty). + + 5. 'Invalid'. The received power, in mW, is negative (for example, + due to incorrect external calibration constants in the SFP). A + negative mW value is not valid in this context, and cannot be + converted to dBm. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpDiagEntry 7} + +-- Define a non-index column of the sfpDiagTable. + +sfpDiagTxBiasCurrent OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpDiagTable, containing the freshly-measured + transmit bias current of the specified SFP, encoded into a + string. + + Four types of values are supported. In the following text, + strings are enclosed in single quotes (a double quote marks the + end of the DESCRIPTION field). + + 1. '0.00 mA' to '131.10 mA', in 0.01 mA increments. Note that + ' mA' is included in the string. + + 2. 'Not Applicable'. This is used for an electrical SFP. The + technology for measuring transmit bias current is optical. + + 3. 'Not Available'. The measurement could not be obtained + (e.g. the specified SFP cage is empty). + + 4. 'Invalid'. The bias current, in mA, is negative (for example, + due to incorrect external calibration constants in the SFP). A + negative mA value is not valid in this context. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpDiagEntry 8} + +-- Define a non-index column of the sfpDiagTable. + +sfpDiagSupplyVoltage OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpDiagTable, containing the freshly-measured + supply voltage of the specified SFP, encoded into a string. + + Three types of values are supported. In the following text, + strings are enclosed in single quotes (a double quote marks the + end of the DESCRIPTION field). + + 1. '0.00 VDC' to '6.55 VDC', in 0.01 VDC increments. Note that + ' VDC' is included in the string. + + 2. 'Not Available'. The measurement could not be obtained + (e.g. the specified SFP cage is empty). + + 3. 'Invalid'. The supply voltage, in VDC, is negative (for example, + due to incorrect external calibration constants in the SFP). A + negative VDC value is not valid in this context. + + The supply voltage can be retrieved from an electrical SFP, so + there is no need for a 'Not Applicable' string. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpDiagEntry 9} + +-- Define a non-index column of the sfpDiagTable. + +sfpDiagTemperature OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpDiagTable, containing the freshly-measured + temperature of the specified SFP, encoded into a string. + + Two types of values are supported. In the following text, + strings are enclosed in single quotes (a double quote marks the + end of the DESCRIPTION field). + + 1. '-128.00 degrees Celsius' to '128.00 degrees Celsius', + in 0.01 degrees Celsius increments. + Note that ' degrees Celsius' is included in the string. + + 2. 'Not Available'. The measurement could not be obtained + (e.g. the specified SFP cage is empty). + + The temperature can be retrieved from an electrical SFP, so + there is no need for a 'Not Applicable' string. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpDiagEntry 10} + +-- Define a non-index column of the sfpDiagTable. + +sfpDiagTCAStatusTemperature OBJECT-TYPE + SYNTAX SfpDiagTCAStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpDiagTable, containing the freshly-measured temperature + alarm/warning threshold crossing status of the specified SFP/SFP+/XFP/CFP4. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpDiagEntry 11} + +-- Define a non-index column of the sfpDiagTable. + +sfpDiagTCAStatusVoltage OBJECT-TYPE + SYNTAX SfpDiagTCAStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpDiagTable, containing the freshly-measured voltage + alarm/warning threshold crossing status of the specified SFP/SFP+/XFP/CFP4. + For XFP, this parameter will display as NotAvailable in case it is not + supported as one of the Auxillary measured value by XFP. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpDiagEntry 12} + +sfpDiagTCAStatusBiasCurrent OBJECT-TYPE + SYNTAX SfpDiagTCAStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpDiagTable, containing the freshly-measured bias current + alarm/warning threshold crossing status of the specified SFP/SFP+/XFP/CFP4. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpDiagEntry 13} + +sfpDiagTCAStatusTxPower OBJECT-TYPE + SYNTAX SfpDiagTCAStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpDiagTable, containing the freshly-measured received + power alarm/warning threshold crossing status of the specified SFP/SFP+/XFP/CFP4. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpDiagEntry 14} + +sfpDiagTCAStatusRxPower OBJECT-TYPE + SYNTAX SfpDiagTCAStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpDiagTable, containing the freshly-measured transmit + power alarm/warning threshold crossing status of the specified SFP/SFP+/XFP/CFP4. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpDiagEntry 15} + +sfpDiagRSSIProfileId OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Indicates the RSSI TCA profile, refer to SfpRSSIProfileTable. + 65535 means auto mode. When configured 65535, when sfp is plugged in, system will detect sfp type and associate related sfp rssi profile. User cannot modify the threshold values of this profile id. + 1-200 denotes user-defined profile where user can configure the RSSI threshold values. + +ALCATEL NOTE: + ACCESS: NA + usage: OPT + persistent: YES + INSRVMOD:YES + RANGE:1..200,65535 + DEFVALUE: 65535 + UNITS: NA + SPARSE: NA " +::= { sfpDiagEntry 16} + +sfpDiagRSSIState OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Enable(1) and Disable(2) to RSSI function on port level. + +ALCATEL NOTE: + ACCESS: NA usage: OPT + persistent: YES INSRVMOD:YES + RANGE:1,2 DEFVALUE: 2 + UNITS: NA SPARSE: NA " +::= { sfpDiagEntry 17} + + +sfpDiagRSSIRxPowerAlmLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for alarm OLTRXPWLO. if RX power is less than this value,then alarm OLTRXPWLO will be reported. + For CFP4, there is no module level 'RxPower' monitor,this is the threshold for network lane. + For ONT Profile, 0.5dBm means using ont internal policy. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned threshold values. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " + +::= { sfpDiagEntry 18 } + +sfpDiagRSSIRxPowerAlmHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTRXPWHI. When RX power is larger than this value,then alarm OLTRXPWHI will be reported. + For CFP4, there is no module level 'RxPower' monitor,this is the threshold for network lane. + For ONT Profile, 0.5dBm means using ont internal policy. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned threshold values. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 19 } + +sfpDiagRSSIRxPowerWarnLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTRXPWLOWARN. When Rx power is less than this value,alarm OLTRXPWLOWARN will be reported. + For CFP4, there is no module level 'RxPower' monitor,this is the threshold for network lane. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned threshold values. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 20 } + +sfpDiagRSSIRxPowerWarnHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTRXPWHIWARN. When Rx power is larger than this value,alarm OLTRXPWHIWARN will be reported. + For CFP4, there is no module level 'RxPower' monitor,this is the threshold for network lane. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned threshold values. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 21 } + +sfpDiagRSSITxPowerAlmLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTTXPWLO. When Tx power is less than this value,alarm OLTTXPWLO will be reported. + For CFP4, there is no module level 'TxPower' monitor,this is the threshold for network lane. + For ONT Profile, -63.5dBm means using ONT internal policy. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " + +::= { sfpDiagEntry 22 } + +sfpDiagRSSITxPowerAlmHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTTXPWHI. When Tx power is larger than this value,alarm OLTTXPWHI will be reported. + For CFP4, there is no module level 'TxPower' monitor,this is the threshold for network lane. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " + +::= { sfpDiagEntry 23 } + +sfpDiagRSSITxPowerWarnLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTTXPWLOWARN. When Tx power is less than this value,alarm OLTTXPWLOWARN will be reported. + For CFP4, there is no module level 'TxPower' monitor,this is the threshold for network lane. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 24 } + +sfpDiagRSSITxPowerWarnHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTTXPWHIWARN. When Tx power is larger than this value,alarm OLTTXPWHIWARN will be reported. + For CFP4, there is no module level 'TxPower' monitor,this is the threshold for network lane. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 25 } + +sfpDiagRSSITemperatureAlmLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTTEMPLO. when temperature is less than this value, then alarm OLTTEMPLO will be reported. + For CFP4,this is the module level threshold.The network lane level threshold is indicated by sfpDiagRSSIExtTemperatureAlmLow. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " + +::= { sfpDiagEntry 26 } + +sfpDiagRSSITemperatureAlmHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTTEMPHI. When temperature is larger than this value,alarm OLTTEMPHI will be reported. + For CFP4,this is the module level threshold.The network lane level threshold is indicated by sfpDiagRSSIExtTemperatureAlmHigh. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 27 } + +sfpDiagRSSITemperatureWarnLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTTEMPLOWARN. when temperature is less than this value, then alarm OLTTEMPLOWARN will be reported. + For CFP4,this is the module level threshold.The network lane level threshold is indicated by sfpDiagRSSIExtTemperatureWarnLow. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 28 } + +sfpDiagRSSITemperatureWarnHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTTEMPHIWARN. When temperature is larger than this value,alarm OLTTEMPHIWARN will be reported. + For CFP4,this is the module level threshold.The network lane level threshold is indicated by sfpDiagRSSIExtTemperatureWarnHigh. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 29 } + + +sfpDiagRSSIBiasAlmLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTBIASLO. when bias is less than this value, then alarm OLTBIASLO will be reported. + For CFP4,this is the module level threshold.The network lane threshold is indicated by sfpDiagRSSIExtBiasAlmLow. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " + +::= { sfpDiagEntry 30 } + +sfpDiagRSSIBiasAlmHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTBIASHI. when bias is larger than this value, then alarm OLTBIASHI will be reported. + For CFP4,this is the module level threshold.The network lane level threshold is indicated by sfpDiagRSSIExtBiasAlmHigh. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 31 } + +sfpDiagRSSIBiasWarnLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTBIASLOWARN. when bias is less than this value, then alarm OLTBIASLOWARN will be reported. + For CFP4,this is the module level threshold.The network lane level threshold is indicated by sfpDiagRSSIExtBiasWarnLow. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 32 } + +sfpDiagRSSIBiasWarnHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTBIASHIWARN. when bias is larger than this value, then alarm OLTBIASHIWARN will be reported. + For CFP4,this is the module level threshold.The network lane level threshold is indicated by sfpDiagRSSIExtBiasWarnHigh. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 33 } + +sfpDiagRSSIVoltageAlmLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTVOLLO. when voltage is less than this value, then alarm OLTVOLLO will be reported. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " + +::= { sfpDiagEntry 34 } + +sfpDiagRSSIVoltageAlmHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTVOLHI. when voltage is larger than this value, then alarm OLTVOLHI will be reported. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 35 } + +sfpDiagRSSIVoltageWarnLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTVOLLOWARN. when voltage is less than this value, then alarm OLTVOLLOWARN will be reported. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 36 } + +sfpDiagRSSIVoltageWarnHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTVOLHIWARN. when voltage is larger than this value, then alarm OLTVOLHIWARN will be reported. + 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 37 } + +sfpDiagRSSIExtRxPowerAlmLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for alarm OLTRXPWLO. if RX power is less than this value, then alarm OLTRXPWLO will be reported. + Applicable only for 10G EPON SFPs,Shown as 'Not Applicable' for others. + For EPON SFPs 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: 0 + UNITS: NA SPARSE: NA + DESCR: NA " + +::= { sfpDiagEntry 38 } + +sfpDiagRSSIExtRxPowerAlmHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTRXPWHI. When RX power is larger than this value,then alarm OLTRXPWHI will be reported. + Applicable only for 10G EPON SFPs,Shown as 'Not Applicable' for others. + For EPON SFPs 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 39} + +sfpDiagRSSIExtRxPowerWarnLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTRXPWLOWARN. When Rx power is less than this value,alarm OLTRXPWLOWARN will be reported. + Applicable only for 10G EPON SFPs,Shown as 'Not Applicable' for others. + For EPON SFPs 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 40} + +sfpDiagRSSIExtRxPowerWarnHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTRXPWHIWARN. When Rx power is larger than this value,alarm OLTRXPWHIWARN will be reported. + Applicable only for 10G EPON SFPs,Shown as 'Not Applicable' for others. + For EPON SFPs 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 41} + + +sfpDiagRSSIExtTxPowerAlmLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for EXTOLTTXPWLO. When Tx power is less than this value,alarm EXTOLTTXPWLO will be reported. + Applicable only for 10G EPON SFPs,Shown as 'Not Applicable' for others. + For EPON SFPs 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " + +::= { sfpDiagEntry 42 } + +sfpDiagRSSIExtTxPowerAlmHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for EXTOLTTXPWHI. When Tx power is larger than this value,alarm EXTOLTTXPWHI will be reported. + Applicable only for 10G EPON SFPs,Shown as 'Not Applicable' for others. + For EPON SFPs 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " + +::= { sfpDiagEntry 43 } + +sfpDiagRSSIExtTxPowerWarnLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for EXTOLTTXPWLOWARN. When Tx power is less than this value,alarm EXTOLTTXPWLOWARN will be reported. + Applicable only for 10G EPON SFPs,Shown as 'Not Applicable' for others. + For EPON SFPs 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 44 } + +sfpDiagRSSIExtTxPowerWarnHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for EXTOLTTXPWHIWARN. When Tx power is larger than this value,alarm EXTOLTTXPWHIWARN will be reported. + Applicable only for 10G EPON SFPs,Shown as 'Not Applicable' for others. + For EPON SFPs 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 45 } + +sfpDiagRSSIExtBiasAlmLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For 10G EPON SFPs,this object indicates the threshold for EXTOLTBIASLO. when bias is less than this value, then alarm EXTOLTBIASLO will be reported. + For CFP4, this object indicates the threshold for OLTBIASLO.When any network lane's bias is less than this value, then alarm OLTBIASLO will be reported. + For CFP4,this is the network lane level threshold.The module level threshold is indicated by sfpDiagRSSIBiasAlmLow. + Applicable for 10G EPON SFPs and CFP4,Shown as 'Not Applicable' for others. + For EPON SFPs and CFP4 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " + +::= { sfpDiagEntry 46 } + +sfpDiagRSSIExtBiasAlmHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For 10G EPON SFPs,this object indicates the threshold for EXTOLTBIASHI. when bias is larger than this value, then alarm EXTOLTBIASHI will be reported. + For CFP4, this object indicates the threshold for OLTBIASHI.When any network lane's bias is larger than this value, then alarm OLTBIASHI will be reported. + For CFP4,this is the network lane level threshold.The module level threshold is indicated by sfpDiagRSSIBiasAlmHigh. + Applicable for 10G EPON SFPs and CFP4,Shown as 'Not Applicable' for others. + For EPON SFPs and CFP4 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 47 } + +sfpDiagRSSIExtBiasWarnLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For 10G EPON SFPs,this object indicates the threshold for EXTOLTBIASLOWARN. when bias is less than this value,then alarm EXTOLTBIASLOWARN will be reported. + For CFP4, this object indicates the threshold for OLTBIASLOWARN.When any network lane's bias is less than this value, then alarm OLTBIASLOWARN will be reported. + For CFP4,this is the network lane level threshold.The module level threshold is indicated by sfpDiagRSSIBiasWarnLow. + Applicable for 10G EPON SFPs and CFP4,Shown as 'Not Applicable' for others. + For EPON SFPs and CFP4 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 48 } + +sfpDiagRSSIExtBiasWarnHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For 10G EPON SFPs,this object indicates the threshold for EXTOLTBIASHIWARN. when bias is larger than this value,then alarm EXTOLTBIASHIWARN will be reported. + For CFP4, this object indicates the threshold for OLTBIASHIWARN.When any network lane's bias is larger than this value, then alarm OLTBIASHIWARN will be reported. + For CFP4,this is the network lane level threshold.The module level threshold is indicated by sfpDiagRSSIBiasWarnHigh. + Applicable for 10G EPON SFPs and CFP4,Shown as 'Not Applicable' for others. + For EPON SFPs and CFP4 'Not Available' is shown when the measurement could not be obtained,If the specified SFP cage is empty or if RSSI is not enabled and no profile assigned. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 49 } + +sfpDiagRSSIExtTemperatureAlmLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object indicates the laser temperature low alarm threshold of network lane for CFP4. + When any network lane's laser temperature of CFP4 is less than this value,then alarm OLTTEMPLO will be reported. + The module level threshold is indicated by sfpDiagRSSITemperatureAlmLow. + Applicable only for CFP4,Shown as 'Not Applicable' for others. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 50 } + +sfpDiagRSSIExtTemperatureAlmHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object indicates the laser temperature high alarm threshold of network lanefor CFP4. + When any network lane's laser temperature of CFP4 is larger than this value,then alarm OLTTEMPHI will be reported. + The module level threshold is indicated by sfpDiagRSSITemperatureAlmHigh. + Applicable only for CFP4,Shown as 'Not Applicable' for others. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 51 } + +sfpDiagRSSIExtTemperatureWarnLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object indicates the laser temperature low warning threshold of network lane for CFP4. + When any network lane's laser temperature of CFP4 is less than this value,then alarm OLTTEMPLOWARN will be reported. + The module level threshold is indicated by sfpDiagRSSITemperatureWarnLow. + Applicable only for CFP4,Shown as 'Not Applicable' for others. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 52 } + +sfpDiagRSSIExtTemperatureWarnHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object indicates the laser temperature high warning threshold of network lane for CFP4. + When any network lane's laser temperature of CFP4 is larger than this value,then alarm OLTTEMPHIWARN will be reported. + The module level threshold is indicated by sfpDiagRSSITemperatureWarnHigh. + Applicable only for CFP4,Shown as 'Not Applicable' for others. + 'Not Supported' is shown when the matching profile is not found. + + ALCATEL NOTE: + ACCESS: RO USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA + DESCR: NA " +::= { sfpDiagEntry 53 } + +-- ================================================================== +-- | End of SFP Diag Table | +-- ================================================================== + +-- ================================================================== +-- | Start of SFP Inventory Table | +-- ================================================================== + +-- sfpInventoryTable definition + +sfpInventoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF SfpInventoryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The primary purpose of this read-only table: allow the SNMP + manager to read read-only EEPROM contents from EEPROM of SFP + + Details are documented with the individual objects. + + The following table size field is set to 'not applicable', + since it does not make sense for the SNMP manager to cache the + values in this table. The values will be different each time + they are read from agent. + + ALCATEL NOTE: + TABLESIZE: NA + DESCR: NA + " +::= {sfpMIB 6} + +-- List the two index columns of the sfpInventoryTable. + +sfpInventoryEntry OBJECT-TYPE + SYNTAX SfpInventoryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The index for the sfpInventoryTable identifies an SFP cage + using two fields: the logicalSlotId of the card associated + with the SFP cage (normally the card with the cages on its + faceplate), and the SFP cage number." + INDEX {sfpInvLogicalSlot, sfpInvFaceplateNumber} +::= {sfpInventoryTable 1} + +-- List all the columns in the sfpInventoryTable. + +SfpInventoryEntry ::= + SEQUENCE { + sfpInvLogicalSlot INTEGER, + sfpInvFaceplateNumber INTEGER, + sfpInvAvailable INTEGER, + sfpInvFiberType INTEGER, + sfpInvAluPartNumber DisplayString, + sfpInvCLEIcode DisplayString, + sfpInvTxWavelength DisplayString, + sfpInvAdditionalInfo DisplayString, + sfpInvMfgName DisplayString, + sfpInvMfgOUICode DisplayString, + sfpInvMfgSerialNumber DisplayString, + sfpInvMfgDate DisplayString, + sfpInvSpecificalType INTEGER + } + +-- Define the first index column of the sfpInventoryTable. + +sfpInvLogicalSlot OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the first index of the sfpInventoryTable. + + Normally, this object contains the Logical Slot ID (as defined in + the Equipment MIB) of the card which has the SFP cage of interest + on its faceplate. + If that card does not have a Logical Slot ID, the Logical Slot ID + of a related card is used. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: 1..65535 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {sfpInventoryEntry 1} + +-- Define the second (and final) index column of the sfpInventoryTable. + +sfpInvFaceplateNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the second index of the sfpInventoryTable. + It is the number of the SFP cage, as shown on the card + faceplate. If the faceplate cage number is zero, + sfpInvFaceplateNumber=0 is used (i.e. zero is not a + special case). + For an SFP cage, it is the faceplate number of the SFP cage + (e.g. 1). + For an SFP+/XFP cage, it is 256 + the faceplate number + of the XFP cage. For example, if the SFP+/XFP cage has + faceplate label X1, sfpInvFaceplateNumber = 257. + For an QSFP cage, it is 512 + the faceplate number + of the QSFP cage. For example, if the QSFP cage has + faceplate label Q1, sfpInvFaceplateNumber = 513. + For a CFP4 cage, it is 768 + the faceplate number + of the CFP4 cage. For example, if the CFP4 cage has + faceplate label C1, sfpInvFaceplateNumber = 769. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: 0..769 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {sfpInventoryEntry 2} + +-- Define a non-index column of the sfpInventoryTable. + +sfpInvAvailable OBJECT-TYPE + SYNTAX INTEGER { + noError (1), + cageEmpty (2), + cageDoesNotSupportA2 (3), + a0ReadFailed (4), + a0ChecksumFailed (5), + sfpDoesNotSupportA2 (6), + a2ReadFailed (7), + a2ChecksumFailed (8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpInventoryTable, with the following code points. + + noError - valid values for all objects in this row (e.g. + sfpDiagRxPower) were obtained from the SFP in the specified + cage. + cageEmpty - the specified SFP cage does not contain an SFP. + All subsequent values in the row have notAvailable or + 'Not Available' values. + cageDoesNotSupportA2 - the specified SFP cage does not support + access to the SFP A2 bank (e.g. because of limitations in + FPGA support on the host card). sfpDiagLOS and + sfpDiagTxFault have valid values (since they are implemented + using external signals, not SFP EEPROM values). + a0ReadFailed - the attempt to read the A0 bank of the + specified SFP failed. A0 is read to determine if A2 is + supported, so no attempt was made to read the A2 + information. sfpDiagLOS and sfpDiagTxFault have valid + values (since they are implemented using external signals, + not SFP EEPROM values). + a0ChecksumFailed - the A0 bank of the SFP EEPROM is + corrupted. sfpDiagLOS and sfpDiagTxFault have valid values + (since they are implemented using external signals, not SFP + EEPROM values). + sfpDoesNotSupportA2 - the A0 bank of the SFP EEPROM indicates + A2 is not supported. sfpDiagLOS and sfpDiagTxFault have + valid values (since they are implemented using external + signals, not SFP EEPROM values). + a2ReadFailed - the attempt to read the A2 bank of the + specified SFP failed. sfpDiagLOS and sfpDiagTxFault have + valid values (since they are implemented using external + signals, not SFP EEPROM values). + a2ChecksumFailed - the A2 bank of the SFP EEPROM is + corrupted. sfpDiagLOS and sfpDiagTxFault have valid values + (since they are implemented using external signals, not SFP + EEPROM values). + + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpInventoryEntry 3} + +-- Define a non-index column of the sfpInventoryTable. + +sfpInvFiberType OBJECT-TYPE + SYNTAX INTEGER + { + singleMode(1), + multiMode(2), + notAvailable(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpInventoryTable, containing the fiber type of + the specified SFP/SFP+. + For XFP, it is always singleMode + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpInventoryEntry 4} + +sfpInvAluPartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpInventoryTable, containing the Alcatel-Lucent part number + of the specified SFP/SFP+/XFP, encoded into a string. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpInventoryEntry 5} + +sfpInvCLEIcode OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpInventoryTable, containing the CLEI code + of the specified SFP/SFP+/XFP, encoded into a string. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpInventoryEntry 6} + +sfpInvTxWavelength OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpInventoryTable, containing the transmit wavelength + of the specified SFP/SFP+/XFP, encoded into a string. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpInventoryEntry 7} + +sfpInvAdditionalInfo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpInventoryTable, containing the customer specific + additional information of the specified SFP/SFP+/XFP, encoded into a string. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpInventoryEntry 8} + +sfpInvMfgName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpInventoryTable, containing the manufacturer or + vendor name of the specified SFP/SFP+/XFP, encoded into a string. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpInventoryEntry 9} + +sfpInvMfgOUICode OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpInventoryTable, containing the manufacturer or + vendor OUI code of the specified SFP/SFP+/XFP, encoded into a string. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpInventoryEntry 10} + +sfpInvMfgSerialNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpInventoryTable, containing the manufacturer or + vendor serial number of the specified SFP/SFP+/XFP, encoded into a string. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpInventoryEntry 11} + +sfpInvMfgDate OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A column in the sfpInventoryTable, containing the manufactured date + of the specified SFP/SFP+/XFP, encoded into a string. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= { sfpInventoryEntry 12} + +sfpInvSpecificalType OBJECT-TYPE + SYNTAX INTEGER + { + sfpUnknown(0), + px20(1), + px20plus(2), + prx-t1(3), + pr-t2(4), + prx-t3(5), + pr-t4(6), + bPlusCAA(7), + bPlusIAC(8), + cPlusCBA(9), + cPlusIBC(10), + base10G-ER(11), + base10G-SR(12), + base10G-LR(13), + base1000-T(14), + base1000-LX(15), + base1000-BX10-U(16), + base1000-EX(17), + base1000-ZX(18), + n1-c(19), + n2a-c(20), + n2b-c(21), + base1000-SX(22), + base1000-CX(23), + base1000-BX10-D(24), + base100-FX(25), + base100-TX(26), + base2500(27), + base10G-LRM(28), + base10G-EW(29), + base10G-SW(30), + base10G-LW(31), + base40G-LR4(32), + base40G-SR4(33), + base40G-CR4(34), + base100-LX(35), + base100-BX10-U(36), + base100-BX10-D(37), + base1000-VX(38), + e1eth(39), + e3eth(40), + stm1eth(41), + e1tdm(42), + bPlusIONU(43), + base10G-BX40-U(44), + base10G-BX40-D(45), + base1000-BX40-U(46), + base1000-BX40-D(47), + base1000-BX20-U(48), + base1000-BX20-D(49), + base10G-ZR-CWDM(50), + base10G-ZR-DWDM(51), + n1-i(52), + n2a-i(53), + n2b-i(54), + base100G-LR4(55), + base100G-SR4(56), + base10G-BX10-U(57), + base10G-BX10-D(58), + base1000-ZR-CWDM(59), + base10G-ZR(60), + base10G-BX80-U(61), + base10G-BX80-D(62), + base1000-BX80-U(63), + base1000-BX80-D(64), + base100G-ER4(65), + cPlusPlusI(66) + + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "indicate basic type of the specified SFP(+)/XFP/QSFP(+). + + ALCATEL NOTE: + ACCESS: NA + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NA + DESCR: NA + " +::= { sfpInventoryEntry 13} + +-- ================================================================== +-- | End of SFP Inventory Table | +-- ================================================================== + +sfpRSSIProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF SfpPonRSSIProfileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This object contains a table for defining RSSI for SFP/XFP/CFP4 by operator, which could be used for all NT/NTIO cards and DSL/GPON/EPON line cards. + ALCATEL NOTE: + SUPPORT: YES TABLESIZE: DEP" +::= { sfpMIB 7 } + +sfpRSSIProfileEntry OBJECT-TYPE + SYNTAX SfpPonRSSIProfileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the sfpRSSIProfileTable. + Row creation : an entry is created when operator creates SfpRSSI profile. + Row deletion : an entry is created when operator deletes SfpRSSI profile. + ALCATEL NOTE: + SUPPORT: YES" + INDEX {sfpRSSIProfileIndex} +::= {sfpRSSIProfileTable 1} + +SfpPonRSSIProfileEntry ::= + SEQUENCE { + sfpRSSIProfileIndex AsamProfileIndex, + sfpRSSIProfileName DisplayString, + sfpRSSIProfileRefCount AsamProfileRefCount, + sfpRSSIRowStatus RowStatus, + sfpRSSIRxPowerAlmLow INTEGER, + sfpRSSIRxPowerAlmHigh INTEGER, + sfpRSSIRxPowerWarnLow INTEGER, + sfpRSSIRxPowerWarnHigh INTEGER, + sfpRSSITxPowerAlmLow INTEGER, + sfpRSSITxPowerAlmHigh INTEGER, + sfpRSSITxPowerWarnLow INTEGER, + sfpRSSITxPowerWarnHigh INTEGER, + sfpRSSITemperatureAlmLow INTEGER, + sfpRSSITemperatureAlmHigh INTEGER, + sfpRSSITemperatureWarnLow INTEGER, + sfpRSSITemperatureWarnHigh INTEGER, + sfpRSSIBiasAlmLow INTEGER, + sfpRSSIBiasAlmHigh INTEGER, + sfpRSSIBiasWarnLow INTEGER, + sfpRSSIBiasWarnHigh INTEGER, + sfpRSSIVoltageAlmLow INTEGER, + sfpRSSIVoltageAlmHigh INTEGER, + sfpRSSIVoltageWarnLow INTEGER, + sfpRSSIVoltageWarnHigh INTEGER, + sfpRSSIExtRxPowerAlmLow INTEGER, + sfpRSSIExtRxPowerAlmHigh INTEGER, + sfpRSSIExtRxPowerWarnLow INTEGER, + sfpRSSIExtRxPowerWarnHigh INTEGER, + sfpRSSIExtTxPowerAlmLow INTEGER, + sfpRSSIExtTxPowerAlmHigh INTEGER, + sfpRSSIExtTxPowerWarnLow INTEGER, + sfpRSSIExtTxPowerWarnHigh INTEGER, + sfpRSSIExtBiasAlmLow INTEGER, + sfpRSSIExtBiasAlmHigh INTEGER, + sfpRSSIExtBiasWarnLow INTEGER, + sfpRSSIExtBiasWarnHigh INTEGER, + sfpRssiProfileType INTEGER, + sfpRSSIExtTemperatureAlmLow INTEGER, + sfpRSSIExtTemperatureAlmHigh INTEGER, + sfpRSSIExtTemperatureWarnLow INTEGER, + sfpRSSIExtTemperatureWarnHigh INTEGER +} + +sfpRSSIProfileIndex OBJECT-TYPE + SYNTAX AsamProfileIndex + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This object is the index to the sfpSfpRSSIProfileTable. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: NO + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA +" +::= { sfpRSSIProfileEntry 1} + +sfpRSSIProfileName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The corresponding name for a given profile id. +The name corresponding to the ProfileId must also be unique. +ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: NO + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA" + + +::= {sfpRSSIProfileEntry 2} + + +sfpRSSIProfileRefCount OBJECT-TYPE + SYNTAX AsamProfileRefCount + ACCESS read-only + STATUS mandatory + DESCRIPTION + " Indicates the number of entities using this profile. If the + reference count is greater than 0, then this profile is 'in use', + and may NOT be deleted. If the value is 0, then this profile is + 'not in use', and can be deleted. + ALCATEL NOTE: + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NA INSRVMOD: NO + RANGE: NA DEFVALUE: NA + UNITS: NA SPARSE: NA " + +::= { sfpRSSIProfileEntry 3} + +sfpRSSIRowStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION +"This object is used to create a new row or delete an row. + ALCATEL NOTE: + ACCESS: NA usage: MAND + persistent: YES INSRVMOD:YES + RANGE:1,4,6 DEFVALUE: NA + UNITS: NA SPARSE: NA " +::= { sfpRSSIProfileEntry 4} + + +sfpRSSIRxPowerAlmLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for alarm OLTRXPWLO. if RX power is less than this value, then + alarm OLTRXPWLO will be reported. + For CFP4, there is no module level 'RxPower' monitor,this is the threshold for network lane. + For ONT Profile, 0.5dBm means using ont internal policy. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -127000..8163 DEFVALUE: 0 + UNITS: 0.001dBm SPARSE: NA + DESCR: NA " + +::= { sfpRSSIProfileEntry 5 } + +sfpRSSIRxPowerAlmHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTRXPWHI. When RX power is larger than this value, + then alarm OLTRXPWHI will be reported. + For CFP4, there is no module level 'RxPower' monitor,this is the threshold for network lane. + For ONT Profile, 0.5dBm means using ont internal policy. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -127000..8163 DEFVALUE: 0 + UNITS: 0.001dBm SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 6 } + +sfpRSSIRxPowerWarnLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTRXPWLOWARN. When Rx power is less than this value, + alarm OLTRXPWLOWARN will be reported. + For CFP4, there is no module level 'RxPower' monitor,this is the threshold for network lane. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: NO INSRVMOD: NA + RANGE: -127000..8163 DEFVALUE: 0 + UNITS: 0.001dBm SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 7 } + +sfpRSSIRxPowerWarnHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTRXPWHIWARN. When Rx power is larger than this value, + alarm OLTRXPWHIWARN will be reported. + For CFP4, there is no module level 'RxPower' monitor,this is the threshold for network lane. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -127000..8163 DEFVALUE: 0 + UNITS: 0.001dBm SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 8 } + +sfpRSSITxPowerAlmLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTTXPWLO. When Tx power is less than this value, + alarm OLTTXPWLO will be reported. + For CFP4, there is no module level 'TxPower' monitor,this is the threshold for network lane. + For ONT Profile, -63.5dBm means using ONT internal policy. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -63500..63500 DEFVALUE: 0 + UNITS: 0.001dBm SPARSE: NA + DESCR: NA " + +::= { sfpRSSIProfileEntry 9 } + +sfpRSSITxPowerAlmHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTTXPWHI. When Tx power is larger than this value, + alarm OLTTXPWHI will be reported. + For CFP4, there is no module level 'TxPower' monitor,this is the threshold for network lane. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -63500..63500 DEFVALUE: 0 + UNITS: 0.001dBm SPARSE: NA + DESCR: NA " + +::= { sfpRSSIProfileEntry 10 } + +sfpRSSITxPowerWarnLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTTXPWLOWARN. When Tx power is less than this value, + alarm OLTTXPWLOWARN will be reported. + For CFP4, there is no module level 'TxPower' monitor,this is the threshold for network lane. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -63500..63500 DEFVALUE: 0 + UNITS: 0.001dBm SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 11 } + +sfpRSSITxPowerWarnHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTTXPWHIWARN. When Tx power is larger than this value, + alarm OLTTXPWHIWARN will be reported. + For CFP4, there is no module level 'TxPower' monitor,this is the threshold for network lane. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -63500..63500 DEFVALUE: 0 + UNITS: 0.001dBm SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 12 } + +sfpRSSITemperatureAlmLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTTEMPLO. when temperature is less than this value, then + alarm OLTTEMPLO will be reported. + For CFP4, this is the module level threshold.The network lane level threshold is indicated by sfpRSSIExtTemperatureAlmLow. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -32768..32768 DEFVALUE: 0 + UNITS: 1/256 Celsius SPARSE: NA + DESCR: NA " + +::= { sfpRSSIProfileEntry 13 } + +sfpRSSITemperatureAlmHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTTEMPHI. When temperature is larger than this value, + alarm OLTTEMPHI will be reported. + For CFP4, this is the module level threshold.The network lane level threshold is indicated by sfpRSSIExtTemperatureAlmHigh. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -32768..32768 DEFVALUE: 0 + UNITS: 1/256 Celsius SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 14 } + +sfpRSSITemperatureWarnLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTTEMPLOWARN. when temperature is less than this value, then + alarm OLTTEMPLOWARN will be reported. + For CFP4, this is the module level threshold.The network lane level threshold is indicated by sfpRSSIExtTemperatureWarnLow. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -32768..32768 DEFVALUE: 0 + UNITS: 1/256 Celsius SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 15 } + +sfpRSSITemperatureWarnHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTTEMPHIWARN. When temperature is larger than this value, + alarm OLTTEMPHIWARN will be reported. + For CFP4, this is the module level threshold.The network lane level threshold is indicated by sfpRSSIExtTemperatureWarnHigh + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -32768..32768 DEFVALUE: 0 + UNITS: 1/256 Celsius SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 16 } + + +sfpRSSIBiasAlmLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTBIASLO. when bias is less than this value, then + alarm OLTBIASLO will be reported. + For CFP4, this is the module level threshold.The network lane level threshold is indicated by sfpRSSIExtBiasAlmLow. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: 0..131000 DEFVALUE: 0 + UNITS: 2uA SPARSE: NA + DESCR: NA " + +::= { sfpRSSIProfileEntry 17 } + +sfpRSSIBiasAlmHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTBIASHI. when bias is larger than this value, then + alarm OLTBIASHI will be reported. + For CFP4, this is the module level threshold.The network lane level threshold is indicated by sfpRSSIExtBiasAlmHigh. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: 0..131000 DEFVALUE: 0 + UNITS: 2uA SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 18 } + +sfpRSSIBiasWarnLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTBIASLOWARN. when bias is less than this value, then + alarm OLTBIASLOWARN will be reported. + For CFP4, this is the module level threshold.The network lane level threshold is indicated by sfpRSSIExtBiasWarnLow. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: 0..131000 DEFVALUE: 0 + UNITS: 2uA SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 19 } + +sfpRSSIBiasWarnHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTBIASHIWARN. when bias is larger than this value, then + alarm OLTBIASHIWARN will be reported. + For CFP4, this is the module level threshold.The network lane level threshold is indicated by sfpRSSIExtBiasWarnHigh. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: 0..131000 DEFVALUE: 0 + UNITS: 2uA SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 20 } + +sfpRSSIVoltageAlmLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTVOLLO. when voltage is less than this value, then + alarm OLTVOLLO will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: 0..65500 DEFVALUE: 0 + UNITS: 100uV SPARSE: NA + DESCR: NA " + +::= { sfpRSSIProfileEntry 21 } + +sfpRSSIVoltageAlmHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTVOLHI. when voltage is larger than this value, then + alarm OLTVOLHI will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: 0..65500 DEFVALUE: 0 + UNITS: 100uV SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 22 } + +sfpRSSIVoltageWarnLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTVOLLOWARN. when voltage is less than this value, then + alarm OLTVOLLOWARN will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: 0..65500 DEFVALUE: 0 + UNITS: 100uV SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 23 } + +sfpRSSIVoltageWarnHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTVOLHIWARN. when voltage is larger than this value, then + alarm OLTVOLHIWARN will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: 0..65500 DEFVALUE: 0 + UNITS: 100uV SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 24 } + +sfpRSSIExtRxPowerAlmLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for alarm OLTRXPWLO. if RX power is less than this value, then + alarm OLTRXPWLO will be reported. + + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -127000..8163 DEFVALUE: 0 + UNITS: 0.001dBm SPARSE: NA + DESCR: NA " + +::= { sfpRSSIProfileEntry 25 } + +sfpRSSIExtRxPowerAlmHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTRXPWHI. When RX power is larger than this value, + then alarm OLTRXPWHI will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -127000..8163 DEFVALUE: 0 + UNITS: 0.001dBm SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 26 } + +sfpRSSIExtRxPowerWarnLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTRXPWLOWARN. When Rx power is less than this value, + alarm OLTRXPWLOWARN will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -127000..8163 DEFVALUE: 0 + UNITS: 0.001dBm SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 27 } + +sfpRSSIExtRxPowerWarnHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for OLTRXPWHIWARN. When Rx power is larger than this value, + alarm OLTRXPWHIWARN will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -127000..8163 DEFVALUE: 0 + UNITS: 0.001dBm SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 28 } + +sfpRSSIExtTxPowerAlmLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for EXTOLTTXPWLO. When Tx power is less than this value, + alarm EXTOLTTXPWLO will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -63500..63500 DEFVALUE: 0 + UNITS: 0.001dBm SPARSE: NA + DESCR: NA " + +::= { sfpRSSIProfileEntry 29 } + +sfpRSSIExtTxPowerAlmHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for EXTOLTTXPWHI. When Tx power is larger than this value, + alarm EXTOLTTXPWHI will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -63500..63500 DEFVALUE: 0 + UNITS: 0.001dBm SPARSE: NA + DESCR: NA " + +::= { sfpRSSIProfileEntry 30 } + +sfpRSSIExtTxPowerWarnLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for EXTOLTTXPWLOWARN. When Tx power is less than this value, + alarm EXTOLTTXPWLOWARN will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -63500..63500 DEFVALUE: 0 + UNITS: 0.001dBm SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 31 } + +sfpRSSIExtTxPowerWarnHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "this object indicates the threshold for EXTOLTTXPWHIWARN. When Tx power is larger than this value, + alarm EXTOLTTXPWHIWARN will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -63500..63500 DEFVALUE: 0 + UNITS: 0.001dBm SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 32 } + +sfpRSSIExtBiasAlmLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "For 10G EPON SFPs,this object indicates the threshold for EXTOLTBIASLO. when bias is less than this value, then + alarm EXTOLTBIASLO will be reported. + For CFP4,this object indicates the threshold of network lane for OLTBIASLO,when laser bias of network lane is less + than this value,alarm OLTBIASLO will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: 0..131000 DEFVALUE: 0 + UNITS: 2uA SPARSE: NA + DESCR: NA " + +::= { sfpRSSIProfileEntry 33 } + +sfpRSSIExtBiasAlmHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "For 10G EPON SFPs,this object indicates the threshold for EXTOLTBIASHI. when bias is larger than this value, then + alarm EXTOLTBIASHI will be reported. + For CFP4,this object indicates the threshold of network lane for OLTBIASHI,when laser bias of network lane is larger + than this value,alarm OLTBIASHI will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: 0..131000 DEFVALUE: 0 + UNITS: 2uA SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 34 } + +sfpRSSIExtBiasWarnLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "For 10G EPON SFPs,this object indicates the threshold for EXTOLTBIASLOWARN. when bias is less than this value, then + alarm EXTOLTBIASLOWARN will be reported. + For CFP4,this object indicates the threshold of network lane for OLTBIASLOWARN,when laser bias of network lane is less + than this value,alarm OLTBIASLOWARN will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: 0..131000 DEFVALUE: 0 + UNITS: 2uA SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 35 } + +sfpRSSIExtBiasWarnHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "For 10G EPON SFPs,this object indicates the threshold for EXTOLTBIASHIWARN. when bias is larger than this value, then + alarm EXTOLTBIASHIWARN will be reported. + For CFP4,this object indicates the threshold of network lane for OLTBIASHIWARN,when laser bias of network lane is larger + than this value,alarm OLTBIASHIWARN will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: 0..131000 DEFVALUE: 0 + UNITS: 2uA SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 36 } + +sfpRssiProfileType OBJECT-TYPE + SYNTAX INTEGER + { + olt(1), + ont(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "RSSI profile type" +::= { sfpRSSIProfileEntry 37 } + +sfpRSSIExtTemperatureAlmLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object indicates the laser temperature low alarm threshold of network lane for CFP4. + When any network lane's laser temperature of CFP4 is less than this value,alarm OLTTEMPLO will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -32768..32768 DEFVALUE: 0 + UNITS: 1/256 Celsius SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 38 } + +sfpRSSIExtTemperatureAlmHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object indicates the laser temperature high alarm threshold of network lane for CFP4. + When any network lane's laser temperature of CFP4 is large than this value,alarm OLTTEMPHI will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -32768..32768 DEFVALUE: 0 + UNITS: 1/256 Celsius SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 39 } + +sfpRSSIExtTemperatureWarnLow OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object indicates the laser temperature low warning threshold of network lane for CFP4. + When any network lane's laser temperature of CFP4 is less than this value,alarm OLTTEMPLOWARN will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -32768..32768 DEFVALUE: 0 + UNITS: 1/256 Celsius SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 40 } + +sfpRSSIExtTemperatureWarnHigh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object indicates the laser temperature high warning threshold of network lane for CFP4. + When any network lane's laser temperature of CFP4 is large than this value,alarm OLTTEMPHIWARN will be reported. + ALCATEL NOTE: + ACCESS: NA USAGE: NA + PERSIST: YES INSRVMOD: YES + RANGE: -32768..32768 DEFVALUE: 0 + UNITS: 1/256 Celsius SPARSE: NA + DESCR: NA " +::= { sfpRSSIProfileEntry 41 } + +sfpRSSIProfileIndexNext OBJECT-TYPE + SYNTAX AsamNextProfileIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object contains an appropriate value to be used for + sfpRSSIProfileIndex when creating entries in the + sfpRSSIProfileTable. + The value 0 indicates that no unassigned entries are available. To + obtain the next index value for a new entry, the + manager issues a management protocol retrieval operation to obtain the + current value of this object. After each retrieval, the agent should + modify the value to the next unassigned index. + ALCATEL NOTE: + ACCESS: NA usage: NA + persistent: NA INSRVMOD:NA + RANGE:NA DEFVALUE: NA + UNITS: NA SPARSE: NA " +::= {sfpMIB 8 } + +sfpRSSIProfileMaxIndex OBJECT-TYPE + SYNTAX AsamMaxProfileIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object represents the maximum number of + sfpRSSIProfiles that can be created. The object + sfpRSSIProfileMaxIndex will have values ranging + from 0 to the value represented by this object. + ALCATEL NOTE: + ACCESS: NA usage: NA + persistent: NA INSRVMOD:NA + RANGE:NA DEFVALUE: NA + UNITS: NA SPARSE: NA " +::= {sfpMIB 9 } + + +-- ================================================================== +-- | Start of 2E1/DS1 SFP Clock-Reset manager Table | +-- ================================================================== + +dsx1ClockConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx1ClockConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the 2E1/DS1 SFP Clock configuration + information. + ALCATEL NOTE: + TABLESIZE: 10 + " +::= {sfpMIB 10} + +dsx1ClockConfigEntry OBJECT-TYPE + SYNTAX Dsx1ClockConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry consists of a list of 2E1/DS1 SFP general configuration parameters." + INDEX {dsx1SfpClkConfigLogicalSlot, dsx1SfpClkConfigFaceplateNumber} +::= {dsx1ClockConfigTable 1} + +Dsx1ClockConfigEntry ::= + SEQUENCE { + dsx1SfpClkConfigLogicalSlot INTEGER, + dsx1SfpClkConfigFaceplateNumber INTEGER, + dsx1SfpClkConfigSyncSource INTEGER, + dsx1SfpClkConfigDegradeAlarm INTEGER, + dsx1SfpClkConfigSoftwareReset INTEGER, + dsx1SfpClkAlarmState INTEGER, + dsx1SfpClkConfigClkControlSignal INTEGER, + dsx1SfpClkConfigClkSource INTEGER, + dsx1SfpClkRowStatus RowStatus, + dsx1SfpClkConfState INTEGER + } + + +dsx1SfpClkConfigLogicalSlot OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the first index of the dsx1ClockConfig Table. + + Normally, this object contains the Logical Slot ID (as defined in + the Equipment MIB) of the card which has the SFP cage of interest + on its faceplate. + If that card does not have a Logical Slot ID, the Logical Slot ID + of a related card is used. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: 1..65535 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1ClockConfigEntry 1} + +-- Define the second (and final) index column of the dsx1ClockConfigTable. + +dsx1SfpClkConfigFaceplateNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the second index of the dsx1ClockConfigTable. + It is the number of the SFP cage, as shown on the card + faceplate. If the faceplate cage number is zero, + sfpDiagSfpFaceplateNumber=0 is used (i.e. zero is not a + special case). + For an SFP cage, it is the faceplate number of the SFP cage (e.g. 1). + For an XFP cage, it is 256 + (the faceplate number of the XFP cage). For + example 257. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: 0..511 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1ClockConfigEntry 2} + +dsx1SfpClkConfigSyncSource OBJECT-TYPE + SYNTAX INTEGER { + tributary1 (1), + tributary2 (2), + serdes (3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Select as sync source between clock recovered from Serdes or Tributary clock. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 1..3 + DEFVALUE: 3 + UNITS: NA + SPARSE: NO + DESCR: NA + " + +::= {dsx1ClockConfigEntry 3} + +dsx1SfpClkConfigDegradeAlarm OBJECT-TYPE + SYNTAX INTEGER { + disable (0), + enable (1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Enable degrade alarm on los pin. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 1 + DEFVALUE: 1 + UNITS: NA + SPARSE: NO + DESCR: Only Default value enable allowed in R4.4x + " + +::= {dsx1ClockConfigEntry 4} + +dsx1SfpClkConfigSoftwareReset OBJECT-TYPE + SYNTAX INTEGER { + softwareReset (0), + noSoftwareReset (1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "noSoftwareReset (default value), this is the value that is returned when read the attribute. + softwareReset, this is the value that can be set by the manager. This value will trigger a software reset. +. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 1 + DEFVALUE: 1 + UNITS: NA + SPARSE: NO + DESCR: Only Default value allowed in R4.4x + " +::= {dsx1ClockConfigEntry 5} + +dsx1SfpClkAlarmState OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " serdesFailAlarm (1):Failure of the SERDES clock alarm (active high) + tributary1FailAlarm (2): Failure alarm: the tributary 1 clock is not present (active high) + tributary2FailAlarm (4):Failure alarm: the tributary 2 clock is not present (active high) + tributaryFailAlarm (8):Sync fail alarm: all the selected tribs in LOS + aisSyncFail(16):Sync fail alarm: AIS (Alarm Indication signal) on the tributary selected as sync source(active high) + lofSyncFail(32):Sync fail alarm: LOF(loss of Framing) on the tributary selected as sync source(active high) + losSyncFail(64):Sync fail alarm: LOS (loss of signal) on the tributary selected as sync source(active high) + degradeAlarm(128): + Alarm state bitmap. + bit 0: high value indicates serdesFailAlarm + bit 1: high value indicates tributary1FailAlarm + bit 2: high value indicates tributary2FailAlarm + bit 3: high value indicates tributaryFailAlarm + bit 4: high value indicates AIS SyncFail + bit 5: high value indicates LOF SyncFail + bit 6: high value indicates lOS SyncFail + bit 7: high value indicates degradeAlarm + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: Not Supported + " +::= {dsx1ClockConfigEntry 6} + +dsx1SfpClkConfigClkControlSignal OBJECT-TYPE + SYNTAX INTEGER { + squarewave (0), + pll (1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SEL_LOC_OR_SRC. Control signal to select the VTCXO control signal + (PWM) between DPLL output and a ~4MHZ square wave signal + generated dividing the same system clock. + 0 Square wave generated from system clock. + 1 Control signal from PLL(Phase locked loop). + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0,1 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1ClockConfigEntry 7} + +dsx1SfpClkConfigClkSource OBJECT-TYPE + SYNTAX INTEGER { + clk125mloc (0), + clk125mrec (1) + + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "CLK_SOURCE_SEL. This bit is used to select between local VTCXO and + CLOCK FROM SERDES as synchronization source for the signals: + CK_EN-25M and CK-EN-ETSI-ANSI + 1 CK-125M-REC + 0 CK-125M-LOC + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 1 + DEFVALUE: 1 + UNITS: NA + SPARSE: NO + DESCR: Only Default value allowed in R4.4x + " +::= {dsx1ClockConfigEntry 8} + +dsx1SfpClkRowStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is used to create a new row or delete an + existing row in this table. The possible valid values are: + (1) active + (4) createdAndGo + (6) destroy + To create an entry in this table, this object should be set to + CreateAndGo. To delete an entry from this table, RowStatus + should be set to Destroy value by the SNMP manager. + ALCATEL NOTE: + ACCESS: NA + USAGE: MAND + PERSIST: NO + INSRVMOD:NA + RANGE:1 | 4 | 6 -- active (1), createAndGo (4), destroy (6) + DEFVALUE: NA + UNITS: NA + SPARSE: NA " +::= { dsx1ClockConfigEntry 9} + +dsx1SfpClkConfState OBJECT-TYPE + SYNTAX INTEGER (0..31) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " Clock Configuration state bitmap. + bit 0: high value indicates SyncSource Configuration fail + bit 1: high value indicates DegradeAlarm Configuration fail + bit 2: high value indicates SoftwareReset Configuration fail + bit 3: high value indicates ClkControlSignal Configuration fail + bit 4: high value indicates ClkSource Configuration fail + + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 0..31 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1ClockConfigEntry 10} + + +-- ================================================================== +-- | Start of 2E1/DS1 SFP General Configuration Table | +-- ================================================================== + +dsx1GeneralConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx1GeneralConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the 2E1/DS1 SFP General configuration + information. + ALCATEL NOTE: + TABLESIZE: 11 + " +::= {sfpMIB 11} + +dsx1GeneralConfigEntry OBJECT-TYPE + SYNTAX Dsx1GeneralConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry consists of a list of 2E1/DS1 SFP general configuration parameters. + A row entry is created or deleted in this table when the corresponding + operation on a row is done in dsx1ClockConfigTable" + AUGMENTS { dsx1ClockConfigEntry } +::= {dsx1GeneralConfigTable 1} + +Dsx1GeneralConfigEntry ::= + SEQUENCE { + dsx1SfpReadyStatus INTEGER, + dsx1SfpGenConfigMarket INTEGER, + dsx1SfpGenConfigTributary1 INTEGER, + dsx1SfpGenConfigTributary2 INTEGER, + dsx1SfpGenConfigSERDES INTEGER, + dsx1SfpGenConfigSERDESLoopBack INTEGER, + dsx1SfpGenConfigSGMIILocalLoopBack INTEGER, + dsx1SfpGenConfigSGMIIRemoteLoopBack INTEGER, + dsx1SfpGenConfigLIUReset INTEGER, + dsx1SfpGenConfigLIUHighImpedence INTEGER, + dsx1SfpGenConfigState INTEGER + + } + +dsx1SfpReadyStatus OBJECT-TYPE + SYNTAX INTEGER { + notready (0), + ready (1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the host SFP status. + ready (0): + notready (1): + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: No + INSRVMOD: NA + RANGE: 0,1 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: SFP Ready state + " +::= {dsx1GeneralConfigEntry 1} + + + +dsx1SfpGenConfigMarket OBJECT-TYPE + SYNTAX INTEGER { + etsi (0), + ansi (1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " ETSI (0): used for ETSI Market for E1 Lines. + ANSI (1): used for ANSI Market for T1/DS1 Lines. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: ETSI vs ANSI selection + Only etsi value allowed in R4.4x + " +::= {dsx1GeneralConfigEntry 2} + + +dsx1SfpGenConfigTributary1 OBJECT-TYPE + SYNTAX INTEGER { + disable (0), + enable (1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Enable/Disable Tributary1. + disable (0): disable Tributary 1. + enable (1): enable Tributary 1. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: Not Supported + + " + +::= {dsx1GeneralConfigEntry 3} + + +dsx1SfpGenConfigTributary2 OBJECT-TYPE + SYNTAX INTEGER { + disable (0), + enable (1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Enable/Disable Tributary2. + disable (0): Disable Tributary 2. + enable (1): enable Tributary 0. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: Not supported + + " + +::= {dsx1GeneralConfigEntry 4} + + +dsx1SfpGenConfigSERDES OBJECT-TYPE + SYNTAX INTEGER { + disable (0), + enable (1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " disable (0): Disable SERDES device. + enable (1): enable SERDES device. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 1 + DEFVALUE: 1 + UNITS: NA + SPARSE: NO + DESCR: Only Default value allowed in R4.4x + " + +::= {dsx1GeneralConfigEntry 5} + +dsx1SfpGenConfigSERDESLoopBack OBJECT-TYPE + SYNTAX INTEGER { + disable (0), + enable (1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Enable of SERDES device. When held low, the SERDES + device enters in an ultralow-power idle state and + the transmitter output pins are set to high impedance + state +. + disable (0): Disable SERDES LoopBack. + enable (1): enable SERDES LoopBack. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0,1 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: Not Supported + When held high the loopback function on the SERDES + is enabled, the transmitter serial data is directly + routed to the inputs of the receiver. + " + +::= {dsx1GeneralConfigEntry 6} + +dsx1SfpGenConfigSGMIILocalLoopBack OBJECT-TYPE + SYNTAX INTEGER { + disable (0), + enable (1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " disable (0): SGMII local loopback disable towards CESoP. + enable (1): SGMII local loopback enable towards CESoP. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0,1 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: Not Supported + " + +::= {dsx1GeneralConfigEntry 7} + +dsx1SfpGenConfigSGMIIRemoteLoopBack OBJECT-TYPE + SYNTAX INTEGER { + disable (0), + enable (1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " disable (0): SGMII remote loopback disable towards serdes. + enable (1): SGMII remote loopback enable towards serdes. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0,1 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: Not Supported + " + +::= {dsx1GeneralConfigEntry 8} + +dsx1SfpGenConfigLIUReset OBJECT-TYPE + SYNTAX INTEGER { + reset (0), + noReset (1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " reset (0): A low level value (for more than 100ns) forces the LIU to reset state. + This is the value that can be set by the manager. This value will trigger a LIU reset. + noReset (1): This is the value that is returned when read the attribute. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 1 + DEFVALUE: 1 + UNITS: NA + SPARSE: NO + DESCR: Only Default value allowed in R4.4x + " + +::= {dsx1GeneralConfigEntry 9} +dsx1SfpGenConfigLIUHighImpedence OBJECT-TYPE + SYNTAX INTEGER { + low (0), + high (1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " low (0): + high (1): A high level value places all transmitter drivers of the LIU in high Impedence state. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0.1 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " + +::= {dsx1GeneralConfigEntry 10} + +dsx1SfpGenConfigState OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " General Configuration state bitmap. + bit 0: high value indicates Market Configuration fail + bit 1: high value indicates Tributory1 Configuration fail + bit 2: high value indicates Tributory2 Configuration fail + bit 3: high value indicates SERDES Configuration fail + bit 4: high value indicates SERDES local loopback Configuration fail + bit 5: high value indicates SGMII local loopback Configuration fail + bit 6: high value indicates SGMII remote loopback Configuration fail + bit 7: high value indicates LIU Highimpedence Configuration fail + + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 0..255 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1GeneralConfigEntry 11} + +-- ================================================================== +-- | Start of 2E1/DS1 SFP dsx1 TDM interface Table | +-- ================================================================== + +dsx1PWTDMInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx1PWTDMInterfaceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the 2E1/DS1 SFP PW TDM interface configuration + information. + ALCATEL NOTE: + TABLESIZE: 4 + " +::= {sfpMIB 12} + +dsx1PWTDMInterfaceEntry OBJECT-TYPE + SYNTAX Dsx1PWTDMInterfaceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry consists of a list of 2E1/DS1 SFP TDM Interface parameters. + A row entry is created or deleted in this table when the corresponding + operation on a row is done in dsx1ClockConfigTable" + AUGMENTS { dsx1ClockConfigEntry } +::= {dsx1PWTDMInterfaceTable 1} + +Dsx1PWTDMInterfaceEntry ::= + SEQUENCE { + dsx1PWTDMInterfaceMarket INTEGER, + dsx1PWTDMInterfaceWindowLength INTEGER, + dsx1PWTDMInterfaceWindowNumber INTEGER, + dsx1PWTDMInterfaceConfState INTEGER + } + + +dsx1PWTDMInterfaceMarket OBJECT-TYPE + SYNTAX INTEGER { + etsi (0), + ansi (1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "etsi(0): used for ETSI Market for E1 Lines. + ansi (1): used for ANSI Market for T1/DS1 Lines. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0,1 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: ETSI vs ANSI selection + Only etsi value is allowed in R4.4x + " +::= {dsx1PWTDMInterfaceEntry 1} + + +dsx1PWTDMInterfaceWindowLength OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Window length measured in unit of 10 ms. + Eg. wndow_len = 10 means window is 10*10 = 100ms long + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0..255 + DEFVALUE: 10 + UNITS: milliseconds + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMInterfaceEntry 2} + + +dsx1PWTDMInterfaceWindowNumber OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Consecutively detected window number. + Eg. wndow_num = 20 means if packets lost in consecutive 20 + windows, then assert CESalarm (Circuit emulation service alarm); otherwise, deassert CESalarm + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0...255 + DEFVALUE: 20 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMInterfaceEntry 3} + +dsx1PWTDMInterfaceConfState OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " PWTDM Interface Configuration state bitmap. + bit 0: high value indicates Market Configuration fail + bit 1: high value indicates Window Length Configuration fail + bit 2: high value indicates Window Number Configuration fail + + + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 0..7 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMInterfaceEntry 4} + +-- ================================================================== +-- | Start of 2E1/DS1 SFP dsx1 TDMoP configuration Table | +-- ================================================================== + +dsx1PWTDMConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx1PWTDMConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the 2E1/DS1 SFP TDMoP pseudowire configuration + information. + ALCATEL NOTE: + TABLESIZE: 19 + " +::= {sfpMIB 13} + +dsx1PWTDMConfigEntry OBJECT-TYPE + SYNTAX Dsx1PWTDMConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry consists of a list of 2E1/DS1 SFP TDMoP parameters." + INDEX {dsx1SfpPWTDMLogicalSlot, dsx1SfpPWTDMFaceplateNumber, dsx1PWTDMTributaryIndex} +::= {dsx1PWTDMConfigTable 1} + +Dsx1PWTDMConfigEntry ::= + SEQUENCE { + dsx1SfpPWTDMLogicalSlot INTEGER, + dsx1SfpPWTDMFaceplateNumber INTEGER, + dsx1PWTDMTributaryIndex INTEGER, + dsx1PWTDMChannel INTEGER, + dsx1PWTDMRtpMode INTEGER, + dsx1PWTDMPacketLength INTEGER, + dsx1PWTDMSourceAddressPointer INTEGER, + dsx1PWTDMSourceAddress MacAddress, + dsx1PWTDMDestinationMac MacAddress, + dsx1PWTDMPriority INTEGER, + dsx1PWTDMVlanId INTEGER, + dsx1PWTDMECIDEthToTDM INTEGER, + dsx1PWTDMECIDTDMToEth INTEGER, + dsx1PWTDJitterBufferSize INTEGER, + dsx1PWTDMConsequenceNumber INTEGER, + dsx1PWTDMClock INTEGER, + dsx1PWTDMFPGAVersion DisplayString, + dsx1PWTDMRowStatus RowStatus, + dsx1PWTDMConfState INTEGER + + } + + +dsx1SfpPWTDMLogicalSlot OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the first index of the dsx1PWTDMConfig Table. + + Normally, this object contains the Logical Slot ID (as defined in + the Equipment MIB) of the card which has the SFP cage of interest + on its faceplate. + If that card does not have a Logical Slot ID, the Logical Slot ID + of a related card is used. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: 1..65535 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMConfigEntry 1} + +-- Define the second index column of the dsx1PWTDMConfig Table. + +dsx1SfpPWTDMFaceplateNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the second index of the dsx1PWTDMConfig Table. + It is the number of the SFP cage, as shown on the card + faceplate. If the faceplate cage number is zero, + sfpDiagSfpFaceplateNumber=0 is used (i.e. zero is not a + special case). + For an SFP cage, it is the faceplate number of the SFP cage (e.g. 1). + For an XFP cage, it is 256 + (the faceplate number of the XFP cage). For + example 257. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: 0..511 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMConfigEntry 2} + +-- Define the third (and final) index column of the dsx1PWTDMConfig Table. + +dsx1PWTDMTributaryIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the third index of the dsx1PWTDMConfigTable. + + Normally, this object used to select the tributary selecton (1 or 2 or 3) of the 2xE1/DS1 FPGA + where value 1 selects tributary 1, value 2 selects tributary 2 and value 3 selects both the tributories + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: 1,2,3 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMConfigEntry 3} + +dsx1PWTDMChannel OBJECT-TYPE + SYNTAX INTEGER { + close (0), + open (1) + + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Chan_ena + 0: close this channel; + 1: open this channel + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0,1 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMConfigEntry 4} + +dsx1PWTDMRtpMode OBJECT-TYPE + SYNTAX INTEGER { + acr (0), + dcr (1) + + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Rtp_present + 0: rtp is not present, configure to ACR mode; + 1: rtp is present, configure DCR mode + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0,1 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: this attribute is NOT supported in ISAM R4.4.x + + " +::= {dsx1PWTDMConfigEntry 5} + +dsx1PWTDMPacketLength OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Config packet length bits (13:0) + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0...16382 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMConfigEntry 6} + +dsx1PWTDMSourceAddressPointer OBJECT-TYPE + SYNTAX INTEGER (0..3) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SA select 2 bits field (TDM2Eth) + 00 - Select Source Address 0 + 01 - Select Source Address 1 + 10 - Select Source Address 2 + 11 - Select Source Address 3 + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0...3 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR:This is not supported in the R4.4x + Source address pointer is handled internally in the sfp hardware. + " +::= {dsx1PWTDMConfigEntry 7} + +dsx1PWTDMSourceAddress OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "MAC SA for each tributary + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMConfigEntry 8} + +dsx1PWTDMDestinationMac OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "MAC DA for each tributary + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMConfigEntry 9} + +dsx1PWTDMPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "802.1p 3 bits field. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0...7 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMConfigEntry 10} + +dsx1PWTDMVlanId OBJECT-TYPE + SYNTAX INTEGER (0..4095) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Vlan ID. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0...4095 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMConfigEntry 11} + +dsx1PWTDMECIDEthToTDM OBJECT-TYPE + SYNTAX INTEGER (0..1048575) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "ECID (Emulated Circuit Identifer) 20 bit field Eth2Tdm. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0..1048575 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMConfigEntry 12} + +dsx1PWTDMECIDTDMToEth OBJECT-TYPE + SYNTAX INTEGER (0..1048575) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "ECID (Emulated Circuit Identifer) 20 bit field Tdm2Eth. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0..1048575 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMConfigEntry 13} + +dsx1PWTDJitterBufferSize OBJECT-TYPE + SYNTAX INTEGER (0..1023) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Jitter Buffer Queue size. Actual size + configurable size + 1. Example configuring size of 7 mean buffer size of 8 packets + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE:0..1023 + DEFVALUE: NA + UNITS: Packets + SPARSE: NO + DESCR: NA + " + +::= {dsx1PWTDMConfigEntry 14} + +dsx1PWTDMConsequenceNumber OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "New Sequence number + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0...7 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMConfigEntry 15} + +dsx1PWTDMClock OBJECT-TYPE + SYNTAX INTEGER { + differentialMode (0), + loopbackMode (1), + referenceNodeTimeMode(2), + addaptiveMode(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "TDM_clock_strategy. + 00: differential mode; + 01: loop back mode; + 10:reference Node time mode; + 11: adaptive mode. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 2 + DEFVALUE: 2 + UNITS: NA + SPARSE: NO + DESCR: only referenceNodeTimeMode is supported in R4.4x + + " +::= {dsx1PWTDMConfigEntry 16} + +dsx1PWTDMFPGAVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "FPGA software version. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMConfigEntry 17} + + + + +dsx1PWTDMRowStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is used to create a new row or delete an + existing row in this table. The possible valid values are: + (1) active + (4) createdAndGo + (6) destroy + To create an entry in this table, this object should be set to + CreateAndGo. To delete an entry from this table, RowStatus + should be set to Destroy value by the SNMP manager. + ALCATEL NOTE: + ACCESS: NA + USAGE: MAND + PERSIST: NO + INSRVMOD:NA + RANGE:1 | 4 | 6 -- active (1), createAndGo (4), destroy (6) + DEFVALUE: NA + UNITS: NA + SPARSE: NA " +::= { dsx1PWTDMConfigEntry 18} + +dsx1PWTDMConfState OBJECT-TYPE + SYNTAX INTEGER (0..8191) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " PWTDM Configuration state bitmap. + bit 0: high value indicates Channel Configuration fail + bit 1: high value indicates RTP modeSourceAddress PointerConfiguration fail + bit 2: high value indicates Packet length Configuration fail + bit 3: high value indicates SourceAddress Pointer Configuration fail + bit 4: high value indicates SourceAddress Configuration fail + bit 5: high value indicates Destination Address Configuration fail + bit 6: high value indicates Priority Configuration fail + bit 7: high value indicates vlan index Configuration fail + bit 8: high value indicates ECID eth2tdm Configuration fail + bit 9: high value indicates ECID tdm2eth Configuration fail + bit 10: high value indicates Jitter buffer size Configuration fail + bit 11: high value indicates Consequence number Configuration fail + bit 12: high value indicates clock Configuration fail + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 0..8191 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " + +::= { dsx1PWTDMConfigEntry 19} + +-- ================================================================== +-- | Start of 2E1/DS1 SFP dsx1LineInterfaceUnit Table | +-- ================================================================== + +dsx1LineInterfaceUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx1LineInterfaceUnitEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the 2E1/DS1 SFP Line Interface Unit configuration + information. + ALCATEL NOTE: + TABLESIZE: 4 + " +::= {sfpMIB 14} + +dsx1LineInterfaceUnitEntry OBJECT-TYPE + SYNTAX Dsx1LineInterfaceUnitEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry consists of a list of 2E1/DS1 SFP Line Interface Unit parameters. + A row entry is created or deleted in this table when the corresponding + operation on a row is done in dsx1PWTDMConfigTable " + AUGMENTS { dsx1PWTDMConfigEntry } +::= {dsx1LineInterfaceUnitTable 1} + +Dsx1LineInterfaceUnitEntry ::= + SEQUENCE { + dsx1SfpLIUConfLine INTEGER, + dsx1SfpLIURxSensitivity INTEGER, + dsx1SfpLIUTxConfig INTEGER, + dsx1SfpLIUConfState INTEGER + } + + +dsx1SfpLIUConfLine OBJECT-TYPE + SYNTAX INTEGER { + e1 (0), + t1 (1) + + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This bit selects the E1 or T1/J1 operation mode globally. + 0: E1 mode is selected. + 1: T1/J1 mode is selected. + Note: After bit T1/E1 is changed: Before accessing any other regisers a delay of 50us is required to + allow the internal clocking to be settled. + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0,1 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: E1 Mode alone allowed in R4.4x + " +::= {dsx1LineInterfaceUnitEntry 1} + +dsx1SfpLIURxSensitivity OBJECT-TYPE + SYNTAX INTEGER { + shorthaul (0), + longhaul (1) + + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "0: Receive equalizer off (short haul receiver) + 1: Receive equalizer on (long haul receiver) + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0,1 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1LineInterfaceUnitEntry 2} + +dsx1SfpLIUTxConfig OBJECT-TYPE + SYNTAX INTEGER (1..12) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "These bits select the transmit template/LBO for short-haul/long-haul applications. + +value T1/E1/J1 TCLK Cable Cable range/ Allowable Cable + impedance LBO loss +0001 E1 2.048 MHz 75 O - 0-43 dB +0010 E1 2.048 MHz 120 O - 0-43 dB +0011 DSX1 1.544 MHz 100 O 0-133 ft 0-0.6 dB +0100 DSX1 1.544 MHz 100 O 133-266 ft 0.6-1.2 dB +0101 DSX1 1.544 MHz 100 O 266-399 ft 1.2-1.8 dB +0110 DSX1 1.544 MHz 100 O 399-533 ft 1.8-2.4 dB +0111 DSX1 1.544 MHz 100 O 533-655 ft 2.4-3.0 dB +1000 J1 1.544 MHz 110 O 0-655 ft 0-3.0 dB +1001 DS1 1.544 MHz 100 O 0 dB LBO 0-36 dB +1010 DS1 1.544 MHz 100 O -7.5 dB LBO 0-28.5 dB +1011 DS1 1.544 MHz 100 O -15.0 dB LBO 0-21 dB +1100 DS1 1.544 MHz 100 O 22.5 dB LBO 0-13.5 dB + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 1,2 + DEFVALUE: 2 + UNITS: NA + SPARSE: NO + DESCR: Values 1 and 2 (E1 alone) allowed in R4.4x + " +::= {dsx1LineInterfaceUnitEntry 3} + + +dsx1SfpLIUConfState OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " Line Interface Unit Configuration state bitmap. + bit 0: high value indicates ConfLine Configuration fail + bit 1: high value indicates Receiver Sensitivity Configuration fail + bit 2: high value indicates Transmitter Configuration fail + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 0..7 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " + +::= { dsx1LineInterfaceUnitEntry 4} + +-- ================================================================== +-- | Start of 2E1/DS1 SFP dsx1 Framer Table | +-- ================================================================== + +dsx1FramerTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx1FramerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the 2E1/DS1 SFP Framer configuration. + ALCATEL NOTE: + TABLESIZE: 5 + " +::= {sfpMIB 15} + +dsx1FramerEntry OBJECT-TYPE + SYNTAX Dsx1FramerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry consists of a list of 2E1/DS1 SFP Framer parameters. + A row entry is created or deleted in this table when the corresponding + operation on a row is done in dsx1PWTDMConfigTable" + AUGMENTS { dsx1PWTDMConfigEntry } +::= {dsx1FramerTable 1} + + +Dsx1FramerEntry ::= + SEQUENCE { + dsx1FramerGenConfig INTEGER, + dsx1FramerLIU2IWFConfig INTEGER, + dsx1FramerIWF2LIUConfig INTEGER, + dsx1FramerAlarmStatus INTEGER, + dsx1FramerConfState INTEGER + } + + +dsx1FramerGenConfig OBJECT-TYPE + SYNTAX INTEGER (0..255) + + + ACCESS read-write + STATUS mandatory + DESCRIPTION "Generai Configuration bitmap. + bit 0: Framed (1) or unframed (0) TDM traffic selection + bit 1: RAI transparent (only for E1) + RAI: Remote Alarm Indication defined in E1 where it is derived from the NFAS A bit. + bit 2: REI transparent (only for E1) + REI: Remote Error Indication usually defined for SDH. + bit 3: Loop toward IWF on LIU side of framer + bit 4: Loop toward LIU on IWF side of framer - Not supported from R4.6x + bit 5: Loop toward LIU on LIU side of framer + bit 6: Loop toward IWF on IWF side of framer - Not supported from R4.6x + bit 7: Extended Super Frame (ESF only for DS1) + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0..127 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: Bit 0 to Bit 6 supported in R4.4x, Bit 4 and Bit 6 are not supported from R4.6x + " + ::= {dsx1FramerEntry 1} + +dsx1FramerLIU2IWFConfig OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION "Line Interface unit to Inter working Function Configuration bitmap. + bit 0: Enable performance monitoring toward IWF + bit 1: Enable AIS toward IWF + bit 2: Enable RAI (Remote Alarm Indication) toward IWF (only for E1) + bit 3: Enable REI (Remote Error Indication) toward IWF (only for E1) + bit 4: Force RAI (Remote Alarm Indication) toward IWF (only for E1) + bit 5: Force REI(Remote Error Indication) toward IWF (only for E1) + bit 6: Force AIS toward IWF + bit 7: Unused + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0..15 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: only bit 0..3 are supported + " + ::= {dsx1FramerEntry 2} + + +dsx1FramerIWF2LIUConfig OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION "Generai Configuration bitmap. + bit 0: Enable performance monitoring toward LIU + bit 1: Enable AIS toward LIU + bit 2: Enable RAI toward LIU (only for E1) + bit 3: Enable REI toward LIU (only for E1) + bit 4: Force RAI toward LIU (only for E1) + bit 5: Force REI toward LIU for CH1 (only for E1) + bit 6: Force AIS toward LIU for CH1 + bit 7: Force E1 multiframe structure generation (payload A5) toward LIU + + + + ALCATEL NOTE: + ACCESS: RW + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0..15 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: only bit 0..3 are supported + " + ::= {dsx1FramerEntry 3} + +dsx1FramerAlarmStatus OBJECT-TYPE + SYNTAX INTEGER (0..262143) + ACCESS read-only + STATUS mandatory + DESCRIPTION "Alarm Status bitmap. High value indicates an alarm has occured + Bit 0 : CRC4 (Cylic Redundancy check-4) threshold alarm from LIU (only for E1) + Bit 1 : CRC4 (Cylic Redundancy check-4) alarm from LIU (only for E1) + Bit 2 : CRC6 (Cylic Redundancy check-6) alarm from LIU (only for ESF DS1) + Bit 3 : RDI (Remote Defect Alarm) alarm from LIU (only for E1) + Bit 4 : REI (Remote Error Indication) alarm from LIU (only for E1) + Bit 5 : LOMF (Loss of Multi-frame) alarm from LIU + Bit 6 : LOF (loss of framing) alarm from LIU + Bit 7 : LOS (loss of signal) alarm from LIU + Bit 8 : AIS (alarm Indication Signal) alarm from LIU + Bit 9 : CRC4 (Cylic Redundancy check-4) threshold alarm from IWF (only for E1) + Bit 10: CRC4 (Cylic Redundancy check-4) alarm from IWF (only for E1) + Bit 11: CRC6 (Cylic Redundancy check-6) alarm from IWF (only for ESF DS1) + Bit 12: RDI (Remote Defect Alarm) alarm from IWF (only for E1) + Bit 13: REI (Remote Error Indication) alarm from IWF (only for E1) + Bit 14: LOMF (Loss of Multi-frame) alarm from IWF + Bit 15: LOF (loss of framing) alarm from IWF + Bit 16: LOS (loss of signal) alarm from IWF + Bit 17: AIS (alarm Indication Signal) alarm from IWF + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: Not Suported + " + ::= {dsx1FramerEntry 4} + + + +dsx1FramerConfState OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " Framer Configuration state bitmap. + bit 0: high value indicates General Configuration fail + bit 1: high value indicates LIU2IWF Configuration fail + bit 2: high value indicates IWF2LIU Configuration fail + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 0..7 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " + +::= {dsx1FramerEntry 5} + + + +-- ================================================================== +-- | Start of 2E1/DS1 SFP dsx1 Protocol Engine / jitter buffer Table | +-- ================================================================== + +dsx1PWTDMProtocolEngineTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx1PWTDMProtocolEngineEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the 2E1/DS1 SFP protocol engine configuration + information. + ALCATEL NOTE: + TABLESIZE: 11 + DESCR: This Table is not supported, handled internally in the sfp hardware. + " +::= {sfpMIB 16} + + +dsx1PWTDMProtocolEngineEntry OBJECT-TYPE + SYNTAX Dsx1PWTDMProtocolEngineEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry consists of a list of 2E1/DS1 SFP protocol engine parameters." + INDEX {dsx1SfpProtLogicalSlot, dsx1SfpProtFaceplateNumber} +::= {dsx1PWTDMProtocolEngineTable 1} + +Dsx1PWTDMProtocolEngineEntry ::= + SEQUENCE { + dsx1SfpProtLogicalSlot INTEGER, + dsx1SfpProtFaceplateNumber INTEGER, + dsx1PWTDMProtocolEngineDA1 MacAddress, + dsx1PWTDMProtocolEngineDA2 MacAddress, + dsx1PWTDMProtocolEngineDA3 MacAddress, + dsx1PWTDMProtocolEngineDA4 MacAddress, + dsx1PWTDMProtocolEngineSA1 MacAddress, + dsx1PWTDMProtocolEngineSA2 MacAddress, + dsx1PWTDMProtocolEngineSA3 MacAddress, + dsx1PWTDMProtocolEngineSA4 MacAddress, + dsx1RTPPayloadtype INTEGER + } + + +dsx1SfpProtLogicalSlot OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the first index of the dsx1sfpLogicalSlot. + + Normally, this object contains the Logical Slot ID (as defined in + the Equipment MIB) of the card which has the SFP cage of interest + on its faceplate. + If that card does not have a Logical Slot ID, the Logical Slot ID + of a related card is used. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: 1..65535 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMProtocolEngineEntry 1} + +-- Define the second index column of the dsx1PWTDMProtocolEngineTable. + +dsx1SfpProtFaceplateNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the second index of the dsx1PWTDMProtocolEngineTable. + It is the number of the SFP cage, as shown on the card + faceplate. If the faceplate cage number is zero, + sfpDiagSfpFaceplateNumber=0 is used (i.e. zero is not a + special case). + For an SFP cage, it is the faceplate number of the SFP cage (e.g. 1). + For an XFP cage, it is 256 + (the faceplate number of the XFP cage). For + example 257. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NO + RANGE: 0..511 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMProtocolEngineEntry 2} + + + +dsx1PWTDMProtocolEngineDA1 OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "MAC Destination Address 1 in DA pool (for Eth2TDM packet discard, verify whether +received packets DA is equal to this DA pool or not) + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: NA + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMProtocolEngineEntry 3} +dsx1PWTDMProtocolEngineDA2 OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "MAC Destination Address 2 in DA pool (for Eth2TDM packet discard, verify whether +received packets DA is equal to this DA pool or not) + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: NA + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMProtocolEngineEntry 4} + +dsx1PWTDMProtocolEngineDA3 OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "MAC Destination Address 3 in DA pool (for Eth2TDM packet discard, verify whether +received packets DA is equal to this DA pool or not) + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: NA + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMProtocolEngineEntry 5} + +dsx1PWTDMProtocolEngineDA4 OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "MAC Destination Address 4 in DA pool (for Eth2TDM packet discard, verify whether +received packets DA is equal to this DA pool or not) + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: NA + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMProtocolEngineEntry 6} + +dsx1PWTDMProtocolEngineSA1 OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "MAC Source Address 1 in SA pool (TDM2Eth, config SA on per PW basis) + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: NA + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMProtocolEngineEntry 7} +dsx1PWTDMProtocolEngineSA2 OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "MAC Source Address 2 in SA pool (TDM2Eth, config SA on per PW basis) + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: NA + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMProtocolEngineEntry 8} + +dsx1PWTDMProtocolEngineSA3 OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "MAC Source Address 3 in SA pool (TDM2Eth, config SA on per PW basis) + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: NA + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMProtocolEngineEntry 9} + +dsx1PWTDMProtocolEngineSA4 OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "MAC Source Address 4 in SA pool (TDM2Eth, config SA on per PW basis) + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: NA + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMProtocolEngineEntry 10 } + + + + +dsx1RTPPayloadtype OBJECT-TYPE + SYNTAX INTEGER (0..3) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "RTP payload type mode. + 00 - PayloadType=all 0s, SSID=all 1s + 01 - PayloadType=all 1s, SSID=all 1s + 10 - PayloadType= ecid(18 downto 12), SSID=ecid + 11 - PayloadType= vlan_id(6 downto 0), SSID= x0000 & vlan_id + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 0...3 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {dsx1PWTDMProtocolEngineEntry 11} + + +-- ================================================================== +-- | Start of Host LT SFP Configuration Extension Table | +-- ================================================================== + +ltHostSfpConfigExtTable OBJECT-TYPE + SYNTAX SEQUENCE OF LtHostSfpConfigExtEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the host shelf LT SFP configuration information + regarding link assignement to LT on FD-REM + ALCATEL NOTE: + TABLESIZE: 288 (Full FX-8 with FELT-B --> 8 * 36) + " +::= {sfpMIB 17} + +ltHostSfpConfigExtEntry OBJECT-TYPE + SYNTAX LtHostSfpConfigExtEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry consists of a list of host shelf LT SFP configuration ltHostSfpConfigExtTable." + INDEX {ltHostConfigSfpLogSlotId, ltHostConfigExtSfpFaceplateNumber} +::= {ltHostSfpConfigExtTable 1} + +LtHostSfpConfigExtEntry ::= + SEQUENCE { + ltHostConfigExtSfpFaceplateNumber INTEGER, + ltHostSfpCableToRack INTEGER, + ltHostSfpCableToShelf INTEGER, + ltHostSfpCableToSlot INTEGER, + ltHostConfigSfpLogSlotId EqptSlotIndex + } + +ltHostConfigExtSfpFaceplateNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the SFP number on the LT identified by ltHostConfigExtSfpLogSlotId. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: YES + INSRVMOD: NA + RANGE: 1..24 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {ltHostSfpConfigExtEntry 1} + +ltHostSfpCableToRack OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the Rack ID of the expansion shelf LSM which the SFP + is planned to cable to. Value 0 means that no rack is specified. + ALCATEL NOTE: + ACCESS: NA + USAGE: OPT + PERSIST: YES + INSRVMOD: YES + RANGE: 0..7 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {ltHostSfpConfigExtEntry 2} + +ltHostSfpCableToShelf OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the Shelf ID of the expansion shelf LSM which + the host shelf SFP is planned to cable to. + Value 0 means that no shelf is specified. + ALCATEL NOTE: + ACCESS: NA + USAGE: OPT + PERSIST: YES + INSRVMOD: YES + RANGE: 0..4 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: The shelf identified by ltHostSfpCableToRack and + ltHostSfpCableToShelf must already be planned. + " +::= {ltHostSfpConfigExtEntry 3} + +ltHostSfpCableToSlot OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the Slot ID of the expansion shelf LSM which + the SFP is planned to cable to. + Value 0 means that no slot is specified. + ALCATEL NOTE: + ACCESS: NA + USAGE: OPT + PERSIST: YES + INSRVMOD: YES + RANGE: DEP / depends on the shelf type. + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {ltHostSfpConfigExtEntry 4} + +ltHostConfigSfpLogSlotId OBJECT-TYPE + SYNTAX EqptSlotIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The logical slot id of the board where the remote LT is plugged in + ALCATEL NOTE: + ACCESS: NA + USAGE: OPT + PERSIST: YES + INSRVMOD: YES + RANGE: DEP / depends on the shelf type. + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {ltHostSfpConfigExtEntry 5} + +-- ================================================================== +-- | Start of LT Host SFP Status Table | +-- ================================================================== + +ltHostSfpStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF LtHostSfpStatusEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the host shelf SFP or XFP status information. + ALCATEL NOTE: + TABLESIZE: 26 + " +::= {sfpMIB 18} + +ltHostSfpStatusEntry OBJECT-TYPE + SYNTAX LtHostSfpStatusEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry consists of a list of SFP or XFP status parameters." + INDEX {ltHostStatusSfpLogSlotId, ltHostStatusSfpFaceplateNumber} +::= {ltHostSfpStatusTable 1} + +LtHostSfpStatusEntry ::= + SEQUENCE { + ltHostStatusSfpFaceplateNumber INTEGER, + ltLanxPortNumber INTEGER, + ltHostSfpDownlinkStatus INTEGER, + ltHostSfpCabledToRack INTEGER, + ltHostSfpCabledToShelf INTEGER, + ltHostSfpCabledToSlot INTEGER, + ltHostSfpType INTEGER, + ltHostSfpCablingMismatch INTEGER, + ltHostSfpCabledToPhysAddress PhysAddress, + ltHostStatusSfpLogSlotId EqptSlotIndex + + } + +ltHostStatusSfpFaceplateNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the host shelf SFP or XFP cage number. + For an SFP cage, it is the faceplate number of the SFP cage (e.g. 1). + For an XFP cage, it is 256 + (the faceplate number of the XFP cage). For + example, if the XFP cage has faceplate label X1, + ltHostStatusSfpFaceplateNumber == 257. + For LT, this is the port number. + + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 1..258 + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {ltHostSfpStatusEntry 1} + +ltLanxPortNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " This is the Physical LANX or IHUB port to which the SFP or XFP is + connected to. For an SHUB system, the lanxPortNumber here corresponds + to lanxInterfaceIndex in the LANX MIB. For an IHUB system, the + lanxPortNumber to the TmnxPortID to be used in the Timetra Port MIB. + For IHUB this is an 32 bit encoded number for which the structure is + defined in Timetra-TC-MIB. + It is set to 0 for LT. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 1..26 for SHUB / 32 Bit Encoded number for IHUB + DEFVALUE: DEP / depends on the ltHostStatusSfpFaceplateNumber. + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {ltHostSfpStatusEntry 2} + +ltHostSfpDownlinkStatus OBJECT-TYPE + SYNTAX INTEGER { + ok (1), + sfpNotPresent (2), + los (3), + txFail (4), + invalidAlcatelId (5), + unknown (6), + sfpControlFail (7), + notApplicable (8), + txFailAndLos (9), + sfpPlanDetectMismatch (10) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the host shelf SFP or XFP status. + ok (1): The SFP or XFP is operational. + sfpNotPresent (2): The SFP or XFP cage is empty. + los (3): The SFP or XFP has detected Loss of Signal. + txFail (4): The SFP or XFP has detected Transmitter + Fail. + invalidAlcatelId (5): The SFP or XFP does not contain + a valid Alcatel-Lucent ID. + unknown (6): The host expansion card is planned but + not inserted. + sfpControlFail (7): The SFP or XFP is not responding, or the + I2C read failed. + notApplicable (8): Retrieval of status information from the + SFP or XFP cage is not supported. + txFailAndLos (9): The SFP or XFP has detected both + Transmitter Fail and Loss of Signal. + sfpPlanDetectMismatch (10): Not used - superseded by the + ltHostSfpCablingMismatch object. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: NA + DEFVALUE: 6 / status is unknown + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {ltHostSfpStatusEntry 3} + +ltHostSfpCabledToRack OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the Rack ID of the expansion shelf LSM to which the host shelf SFP + is cabled to. + Value 0 means that SFP is not cabled to any expansion shelf LSM. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 0..7 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {ltHostSfpStatusEntry 4} + +ltHostSfpCabledToShelf OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the Shelf ID of the expansion shelf LSM which the host shelf + SFP is cabled to. + Value 0 means that SFP is not cabled to any expansion shelf LSM. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 0..4 + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {ltHostSfpStatusEntry 5} + +ltHostSfpCabledToSlot OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the Slot ID of the expansion shelf LSM which the host shelf SFP + is cabled to. + Value 0 means that SFP is not cabled to any expansion shelf LSM. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: DEP / depends on the shelf type. + DEFVALUE: 0 + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {ltHostSfpStatusEntry 6} + +ltHostSfpType OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the type of the SFP or XFP, as read from the + device. + It is a bitmap represented as a sum, therefore, it can represent + multiple types (combination of types) simultaneously. + The SFP type bits (0..7) are as defined in standard SFF-8472. + The XFP type bits (8..15) are as defined in standard INF-8077_v4.5. + The SFP octet and the XFP octet are mutually exclusive (i.e. at least + one of the two octets is always zero). + The various bit positions are: + bit 0 (1): 1000BASE-SX + bit 1 (2): 1000BASE-LX + bit 2 (4): 1000BASE-CX + bit 3 (8): 1000BASE-T + bit 4 (16): 100BASE-LX/LX10 + bit 5 (32): 100BASE-FX + bit 6 (64): BASE-BX10 + bit 7 (128): BASE-PX + bit 8 (256): reserved for a future XFP type, INF-8077 + bit 9 (512): 10GBASE-EW + bit 10 (1024): 10GBASE-LW + bit 11 (2048): 10GBASE-SW + bit 12 (4096): 10GBASE-LRM + bit 13 (8192): 10GBASE-ER + bit 14 (16384): 10GBASE-LR + bit 15 (32768): 10GBASE-SR + bit 16 (65536): 2500BASE-SX + bit 17 (131072): 2500BASE-LX + bit 18 (262144): 2500BASE-BX + + If the ltHostSfpType is unknown or not specified, ltHostSfpType = 0. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: 0..65535 + DEFVALUE: 0 / ltHostSfpType unknown + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {ltHostSfpStatusEntry 7} + +ltHostSfpCablingMismatch OBJECT-TYPE + SYNTAX INTEGER { + noMismatch(1), + unexpectedRemoteLt(2), + assignmentMismatch(3), + incompatibleShelf(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the host shelf SFP cabling mismatch status: + noMismatch(1): no cabling mismatch is detected. + unexpectedRemoteLt(2): a remote LT is detected at an unassigned + downlink SFP port. + assignmentMismatch(3): the detected remote LT does not match + the LT assigned to this host SFP. + incompatibleShelf(4): the detected remote LT is in a shelf + type which is not the planned shelf type. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: NA + DEFVALUE: 1 / noMismatch + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {ltHostSfpStatusEntry 8} + +ltHostSfpCabledToPhysAddress OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The physical (MAC) address of the remote interface that is + cabled to this host shelf SFP. + If the remote interface does not have such an address or + the address is not yet discovered, this object would + contain an octet string of zero length. + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {ltHostSfpStatusEntry 9} + +ltHostStatusSfpLogSlotId OBJECT-TYPE + SYNTAX EqptSlotIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The logical slot id of the board where the remote LT is plugged in + ALCATEL NOTE: + ACCESS: RO + USAGE: NA + PERSIST: NO + INSRVMOD: NA + RANGE: NA + DEFVALUE: NA + UNITS: NA + SPARSE: NO + DESCR: NA + " +::= {ltHostSfpStatusEntry 10} + + + +END diff --git a/mibs/nokia/SYSTEM-MIB b/mibs/nokia/SYSTEM-MIB new file mode 100644 index 0000000000..9c31170c39 --- /dev/null +++ b/mibs/nokia/SYSTEM-MIB @@ -0,0 +1,67 @@ +SYSTEM-MIB DEFINITIONS ::= BEGIN + +-- =========================================================================== +-- This specification is published by Alcatel under Non-Disclosure +-- Agreement(s) (NDA) with specific parties and has to be considered as +-- Confidential Information as defined in such NDA. +-- Alcatel reserves the right to revise this document for any reason, +-- including but not limited to conformity with standards promulgated by +-- various agencies, utilisation of advances in the state of the technical +-- areas, or the reflection of changes in the design of any equipment, +-- techniques, or procedures described or referred to herein. +-- The product specifications and other technical or performance information +-- contained herein are subject to change without notice. +-- Updates of this document will be issued under the above NDA's. +-- Alcatel makes no representation or warranty, expressed or implied, with +-- respect to the sufficiency, accuracy, or utility of any information or +-- opinion contained herein. Alcatel expressly advises that any use of for +-- any purpose or reliance upon this technical reference is at the risk of +-- the user and that Alcatel shall not be liable for any damage or injury +-- incurred by any person arising out of the sufficiency, accuracy, or +-- utility of any information or opinion contained herein. +-- This document is not to be construed as a suggestion to any manufacturer +-- to modify or change any of its products, nor does this document represent +-- any commitment by Alcatel to sell or purchase any product. +-- Nothing contained herein shall be construed as conferring by implication, +-- estoppel, or otherwise any license or right under any patent, whether or +-- not the use of any information herein necessarily employs an invention of +-- any existing or later issued patent. +-- Alcatel reserves the right not to offer any or all of these products and +-- to withdraw any or all of them at any future time. +-- Copyright (C) 1997, Alcatel. All Rights Reserved. +-- =========================================================================== + +-- MODULE-IDENTITY +-- LAST-UPDATED "200607130000Z" +-- ORGANIZATION "Alcatel" +-- CONTACT-INFO +-- +-- Email: asam.mibsupport@alcatel.be" +-- +-- DESCRIPTION +-- "This MIB module defines the proprietary asam branch. +-- +-- REVISION "200607130000Z" -* July 13, 2006 +-- DESCRIPTION +-- "Version: 3FE23453EAAA_V3.2.0.0.0 +-- Editor: Marc Van Vlimmeren +-- Changes: Editorial updates" +-- +-- REVISION "200601230000Z" -* January 23, 2006 +-- DESCRIPTION +-- "Version: 3FE23453EAAA_V2.4.1.0.0 +-- Editor: Bart Bogaert +-- Changes: Implemented BDFhw70643: strict syntax checks (smilint)" +-- +-- ======================================================================== + + IMPORTS enterprises + FROM RFC1155-SMI + ; + + alcatel OBJECT IDENTIFIER ::= { enterprises 637 } + asd OBJECT IDENTIFIER ::= { alcatel 61 } + asam OBJECT IDENTIFIER ::= { asd 1 } + ant OBJECT IDENTIFIER ::= { asd 2 } + +END \ No newline at end of file diff --git a/misc/os_schema.json b/misc/os_schema.json index 10b9a18209..fbdc4e123a 100644 --- a/misc/os_schema.json +++ b/misc/os_schema.json @@ -366,6 +366,12 @@ "type": "string" } }, + "bad_iftype": { + "type": "array", + "items": { + "type": "string" + } + }, "processor_stacked": { "type": "boolean" }, diff --git a/tests/data/nokia-isam.json b/tests/data/nokia-isam.json new file mode 100644 index 0000000000..a700b98ffe --- /dev/null +++ b/tests/data/nokia-isam.json @@ -0,0 +1,20804 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.637.61.1", + "sysDescr": "R5.7.02a NFXS-E FANT-F NOKIA ISAM Copyright (c) 2016 Nokia. All rights reserved. All use subject to applicable license agreement. Nokia and Alcatel-Lucent are registered trademarks of Nokia Corporation.", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "nokia-isam", + "type": "network", + "serial": null, + "icon": "nokia.svg", + "location": null + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.637.61.1", + "sysDescr": "R5.7.02a NFXS-E FANT-F NOKIA ISAM Copyright (c) 2016 Nokia. All rights reserved. All use subject to applicable license agreement. Nokia and Alcatel-Lucent are registered trademarks of Nokia Corporation.", + "sysContact": "", + "version": "R5.7.02a", + "hardware": "NFXS-E", + "features": null, + "os": "nokia-isam", + "type": "network", + "serial": "FH1819A01A1", + "icon": "nokia.svg", + "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": "Nokia ASAM, OAM IP interface", + "ifName": "Nokia ASAM, OAM IP interface", + "portName": null, + "ifIndex": 20972544, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Nokia ASAM, OAM IP interface", + "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": "nokia FGLT-B PHYSICALUNI", + "ifName": "PHYSICALUNI", + "portName": null, + "ifIndex": 100663360, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "aluGponPhysicalUni", + "ifAlias": "nokia FGLT-B PHYSICALUNI", + "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": "nokia FGLT-B PHYSICALUNI", + "ifName": "PHYSICALUNI", + "portName": null, + "ifIndex": 100664384, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "aluGponPhysicalUni", + "ifAlias": "nokia FGLT-B PHYSICALUNI", + "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": "nokia FGLT-B PHYSICALUNI", + "ifName": "PHYSICALUNI", + "portName": null, + "ifIndex": 100665408, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "aluGponPhysicalUni", + "ifAlias": "nokia FGLT-B PHYSICALUNI", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 127926272, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 128057344, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 128188416, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 128319488, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 128450560, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 128581632, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 128712704, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 128843776, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 128974848, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 129105920, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 129236992, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 129368064, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 129499136, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 129630208, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 129761280, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 129892352, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 228589568, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 228720640, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 228851712, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 228982784, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 229113856, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 229244928, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 229376000, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 229507072, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 229638144, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 229769216, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 229900288, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 230031360, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 230162432, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 230293504, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 230424576, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 230555648, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 329252864, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 329383936, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 329515008, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 329646080, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 329777152, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 329908224, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 330039296, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 330170368, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 330301440, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 330432512, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 330563584, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 330694656, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 330825728, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 330956800, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 331087872, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 331218944, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077936128, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077936640, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077937152, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077937664, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077938176, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077938688, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077939200, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077939712, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077940224, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077940736, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077941248, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077941760, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077942272, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077942784, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077943296, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077943808, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077944320, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077944832, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077945344, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077945856, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077946368, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077946880, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077947392, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077947904, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077948416, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077948928, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077949440, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077949952, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077950464, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077950976, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077951488, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077952000, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077952512, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077953024, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077953536, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077954048, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1079377920, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1081475072, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1087766528, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1094057984, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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": "Nokia ASAM, OAM IP interface", + "ifName": "Nokia ASAM, OAM IP interface", + "portName": null, + "ifIndex": 20972544, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "Nokia ASAM, OAM IP interface", + "ifPhysAddress": "060000000080", + "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": 2, + "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": 532, + "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": "nokia FGLT-B PHYSICALUNI", + "ifName": "PHYSICALUNI", + "portName": null, + "ifIndex": 100663360, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "aluGponPhysicalUni", + "ifAlias": "Test_GP", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 58241398, + "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": "nokia FGLT-B PHYSICALUNI", + "ifName": "PHYSICALUNI", + "portName": null, + "ifIndex": 100664384, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "aluGponPhysicalUni", + "ifAlias": "Test_GP", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 51546553, + "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": "nokia FGLT-B PHYSICALUNI", + "ifName": "PHYSICALUNI", + "portName": null, + "ifIndex": 100665408, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "aluGponPhysicalUni", + "ifAlias": "Test_GP_Nokia_CPE", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 51152562, + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 127926272, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 58239398, + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 128057344, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 24771, + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 128188416, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 128319488, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 128450560, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 128581632, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 128712704, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 128843776, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 128974848, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 129105920, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 129236992, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 129368064, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 129499136, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 129630208, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 129761280, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 129892352, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 228589568, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 24769, + "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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 228720640, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 228851712, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 228982784, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 229113856, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 229244928, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 229376000, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 229507072, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 229638144, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 229769216, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 229900288, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 230031360, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 230162432, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 230293504, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 230424576, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 230555648, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 329252864, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 329383936, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 329515008, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 329646080, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 329777152, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 329908224, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 330039296, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 330170368, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 330301440, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 330432512, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 330563584, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 330694656, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 330825728, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 330956800, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 331087872, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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": "nokia FGLT-B PON", + "ifName": "PON", + "portName": null, + "ifIndex": 331218944, + "ifSpeed": 1244000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gpon", + "ifAlias": "nokia FGLT-B PON", + "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": 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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077936128, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "1/1/1/1", + "ifPhysAddress": "3c8bcdefc529", + "ifHardType": null, + "ifLastChange": 24225, + "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": 87149, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 92920, + "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": 19809236, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 8720120, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 7, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 312, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077936640, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc52a", + "ifHardType": null, + "ifLastChange": 24445, + "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": 89563, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 125586, + "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": 17458942, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 15304807, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 1502, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 371, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 1, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077937152, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc52b", + "ifHardType": null, + "ifLastChange": 23566, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077937664, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc52c", + "ifHardType": null, + "ifLastChange": 23566, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077938176, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc52d", + "ifHardType": null, + "ifLastChange": 23567, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077938688, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc52e", + "ifHardType": null, + "ifLastChange": 23568, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077939200, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc52f", + "ifHardType": null, + "ifLastChange": 23569, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077939712, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc530", + "ifHardType": null, + "ifLastChange": 23569, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077940224, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc531", + "ifHardType": null, + "ifLastChange": 23570, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077940736, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc532", + "ifHardType": null, + "ifLastChange": 23571, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077941248, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc533", + "ifHardType": null, + "ifLastChange": 23571, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077941760, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc534", + "ifHardType": null, + "ifLastChange": 23572, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077942272, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc535", + "ifHardType": null, + "ifLastChange": 23573, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077942784, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc536", + "ifHardType": null, + "ifLastChange": 23573, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077943296, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc537", + "ifHardType": null, + "ifLastChange": 23574, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077943808, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc538", + "ifHardType": null, + "ifLastChange": 23575, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077944320, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc539", + "ifHardType": null, + "ifLastChange": 23576, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077944832, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc53a", + "ifHardType": null, + "ifLastChange": 23577, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077945344, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc53b", + "ifHardType": null, + "ifLastChange": 23578, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077945856, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc53c", + "ifHardType": null, + "ifLastChange": 23578, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077946368, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc53d", + "ifHardType": null, + "ifLastChange": 23579, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077946880, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc53e", + "ifHardType": null, + "ifLastChange": 23580, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077947392, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc53f", + "ifHardType": null, + "ifLastChange": 23581, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077947904, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc540", + "ifHardType": null, + "ifLastChange": 23581, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077948416, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc541", + "ifHardType": null, + "ifLastChange": 23582, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077948928, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc542", + "ifHardType": null, + "ifLastChange": 23583, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077949440, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc543", + "ifHardType": null, + "ifLastChange": 23583, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077949952, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc544", + "ifHardType": null, + "ifLastChange": 23584, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077950464, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc545", + "ifHardType": null, + "ifLastChange": 23585, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077950976, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc546", + "ifHardType": null, + "ifLastChange": 23585, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077951488, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc547", + "ifHardType": null, + "ifLastChange": 23586, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077952000, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc548", + "ifHardType": null, + "ifLastChange": 23587, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077952512, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc549", + "ifHardType": null, + "ifLastChange": 23587, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077953024, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc54a", + "ifHardType": null, + "ifLastChange": 23588, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077953536, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc54b", + "ifHardType": null, + "ifLastChange": 23589, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1077954048, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "available", + "ifPhysAddress": "3c8bcdefc54c", + "ifHardType": null, + "ifLastChange": 23590, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1079377920, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9212, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "ifPhysAddress": "3c8bcdefc529", + "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": 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": 1, + "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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1081475072, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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": 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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1087766528, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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": 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 Link", + "ifName": "P2P Ethernet interface", + "portName": null, + "ifIndex": 1094057984, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1980, + "ifType": "ethernetCsmacd", + "ifAlias": "Ethernet Link", + "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": 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 + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.637.61.1.9.29.1.1.4.4353", + "processor_index": "4353", + "processor_type": "nokia-isam", + "processor_usage": 0, + "processor_descr": "CPU 4353", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.637.61.1.9.29.1.1.4.4356", + "processor_index": "4356", + "processor_type": "nokia-isam", + "processor_usage": 9, + "processor_descr": "CPU 4356", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.637.61.1.9.29.1.1.4.4359", + "processor_index": "4359", + "processor_type": "nokia-isam", + "processor_usage": 8, + "processor_descr": "CPU 4359", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "4353", + "entPhysicalIndex": 4353, + "hrDeviceIndex": null, + "mempool_type": "nokia-isam", + "mempool_precision": 1, + "mempool_descr": "nt-a: Memory (4353)", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 75 + }, + { + "mempool_index": "4356", + "entPhysicalIndex": 4356, + "hrDeviceIndex": null, + "mempool_type": "nokia-isam", + "mempool_precision": 1, + "mempool_descr": "lt:1/1/2/ Memory (4356)", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 75 + }, + { + "mempool_index": "4359", + "entPhysicalIndex": 4359, + "hrDeviceIndex": null, + "mempool_type": "nokia-isam", + "mempool_precision": 1, + "mempool_descr": "lt:1/1/5/ Memory (4359)", + "mempool_perc": 0, + "mempool_used": 0, + "mempool_free": 0, + "mempool_total": 0, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 75 + } + ] + }, + "poller": { + "mempools": [ + { + "mempool_index": "4353", + "entPhysicalIndex": 4353, + "hrDeviceIndex": null, + "mempool_type": "nokia-isam", + "mempool_precision": 1, + "mempool_descr": "nt-a: Memory (4353)", + "mempool_perc": 88, + "mempool_used": 1162, + "mempool_free": 2489, + "mempool_total": 1327, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 75 + }, + { + "mempool_index": "4356", + "entPhysicalIndex": 4356, + "hrDeviceIndex": null, + "mempool_type": "nokia-isam", + "mempool_precision": 1, + "mempool_descr": "lt:1/1/2/ Memory (4356)", + "mempool_perc": 67, + "mempool_used": 878, + "mempool_free": 2194, + "mempool_total": 1316, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 75 + }, + { + "mempool_index": "4359", + "entPhysicalIndex": 4359, + "hrDeviceIndex": null, + "mempool_type": "nokia-isam", + "mempool_precision": 1, + "mempool_descr": "lt:1/1/5/ Memory (4359)", + "mempool_perc": 67, + "mempool_used": 878, + "mempool_free": 2194, + "mempool_total": 1316, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 75 + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.56.5.1.7.4355.1", + "sensor_index": "lt:1/1/1/1-rx", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/1/1 Rx Power", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -6.07, + "sensor_limit": -3, + "sensor_limit_warn": -5, + "sensor_limit_low": -22, + "sensor_limit_low_warn": -20, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.56.5.1.6.4355.1", + "sensor_index": "lt:1/1/1/1-tx", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/1/1 Tx Power", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -5.29, + "sensor_limit": -3, + "sensor_limit_warn": -4, + "sensor_limit_low": -9, + "sensor_limit_low_warn": -8, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.56.5.1.7.4355.2", + "sensor_index": "lt:1/1/1/2-rx", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/1/2 Rx Power", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -5.57, + "sensor_limit": -3, + "sensor_limit_warn": -5, + "sensor_limit_low": -22, + "sensor_limit_low_warn": -20, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.56.5.1.6.4355.2", + "sensor_index": "lt:1/1/1/2-tx", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/1/2 Tx Power", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -5.49, + "sensor_limit": -3, + "sensor_limit_warn": -4, + "sensor_limit_low": -9, + "sensor_limit_low_warn": -8, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.56.5.1.6.4356.1", + "sensor_index": "lt:1/1/2/1-tx", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/2/1 Tx Power", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3.66, + "sensor_limit": 7, + "sensor_limit_warn": 6, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.56.5.1.7.4353.257", + "sensor_index": "nt-a:xfp:1-rx", + "sensor_type": "nokia-isam", + "sensor_descr": "nt-a:xfp:1 Rx Power", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -6.09, + "sensor_limit": -3, + "sensor_limit_warn": -5, + "sensor_limit_low": -20, + "sensor_limit_low_warn": -18.01, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.56.5.1.6.4353.257", + "sensor_index": "nt-a:xfp:1-tx", + "sensor_type": "nokia-isam", + "sensor_descr": "nt-a:xfp:1 Tx Power", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -5.87, + "sensor_limit": -3, + "sensor_limit_warn": -3.9, + "sensor_limit_low": -9, + "sensor_limit_low_warn": -8.11, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.3.1.7.4352", + "sensor_index": "4352", + "sensor_type": "eqptBoardOperError", + "sensor_descr": "acu:1/1/ NGFC-E (NGFC-E)", + "group": null, + "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": "eqptBoardOperError" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.3.1.7.4353", + "sensor_index": "4353", + "sensor_type": "eqptBoardOperError", + "sensor_descr": "nt-a: FANT-F (FANT-F)", + "group": null, + "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": "eqptBoardOperError" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.3.1.7.4354", + "sensor_index": "4354", + "sensor_type": "eqptBoardOperError", + "sensor_descr": "nt-b: EMPTY (NOT_PLANNED)", + "group": null, + "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": "eqptBoardOperError" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.3.1.7.4355", + "sensor_index": "4355", + "sensor_type": "eqptBoardOperError", + "sensor_descr": "lt:1/1/1/ NELT-B (NELT-B)", + "group": null, + "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": "eqptBoardOperError" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.3.1.7.4356", + "sensor_index": "4356", + "sensor_type": "eqptBoardOperError", + "sensor_descr": "lt:1/1/2/ NELT-B (NELT-B)", + "group": null, + "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": "eqptBoardOperError" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.3.1.7.4357", + "sensor_index": "4357", + "sensor_type": "eqptBoardOperError", + "sensor_descr": "lt:1/1/3/ NELT-B (NELT-B)", + "group": null, + "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": "eqptBoardOperError" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.3.1.7.4358", + "sensor_index": "4358", + "sensor_type": "eqptBoardOperError", + "sensor_descr": "lt:1/1/4/ NELT-B (NELT-B)", + "group": null, + "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": "eqptBoardOperError" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.3.1.7.4359", + "sensor_index": "4359", + "sensor_type": "eqptBoardOperError", + "sensor_descr": "lt:1/1/5/ NELT-B (NELT-B)", + "group": null, + "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": "eqptBoardOperError" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.3.1.7.4360", + "sensor_index": "4360", + "sensor_type": "eqptBoardOperError", + "sensor_descr": "lt:1/1/6/ EMPTY (NELT-B)", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "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": "eqptBoardOperError" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.3.1.7.4361", + "sensor_index": "4361", + "sensor_type": "eqptBoardOperError", + "sensor_descr": "lt:1/1/7/ EMPTY (NOT_PLANNED)", + "group": null, + "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": "eqptBoardOperError" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.3.1.7.4362", + "sensor_index": "4362", + "sensor_type": "eqptBoardOperError", + "sensor_descr": "lt:1/1/8/ EMPTY (NOT_PLANNED)", + "group": null, + "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": "eqptBoardOperError" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.3.1.7.4481", + "sensor_index": "4481", + "sensor_type": "eqptBoardOperError", + "sensor_descr": "4481 EMPTY (NOT_PLANNED)", + "group": null, + "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": "eqptBoardOperError" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.1.9.0", + "sensor_index": "0", + "sensor_type": "fanMode", + "sensor_descr": "Fan Mode", + "group": "", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "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": "fanMode" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4355.1", + "sensor_index": "lt:1/1/1/.1-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/1/ Sensor 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 41, + "sensor_limit": 95, + "sensor_limit_warn": 85, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4355.2", + "sensor_index": "lt:1/1/1/.2-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/1/ Sensor 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 28, + "sensor_limit": 85, + "sensor_limit_warn": 60, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4355.3", + "sensor_index": "lt:1/1/1/.3-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/1/ Sensor 3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 38, + "sensor_limit": 130, + "sensor_limit_warn": 125, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4356.1", + "sensor_index": "lt:1/1/2/.1-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/2/ Sensor 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 40, + "sensor_limit": 95, + "sensor_limit_warn": 85, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4356.2", + "sensor_index": "lt:1/1/2/.2-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/2/ Sensor 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 29, + "sensor_limit": 85, + "sensor_limit_warn": 60, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4356.3", + "sensor_index": "lt:1/1/2/.3-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/2/ Sensor 3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 36, + "sensor_limit": 130, + "sensor_limit_warn": 125, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4356.4", + "sensor_index": "lt:1/1/2/.4-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/2/ Sensor 4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 56, + "sensor_limit": 115, + "sensor_limit_warn": 95, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4356.5", + "sensor_index": "lt:1/1/2/.5-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/2/ Sensor 5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 39, + "sensor_limit": 90, + "sensor_limit_warn": 75, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4356.6", + "sensor_index": "lt:1/1/2/.6-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/2/ Sensor 6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 58, + "sensor_limit": 110, + "sensor_limit_warn": 95, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4356.7", + "sensor_index": "lt:1/1/2/.7-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/2/ Sensor 7", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 47, + "sensor_limit": 115, + "sensor_limit_warn": 95, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4357.1", + "sensor_index": "lt:1/1/3/.1-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/3/ Sensor 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 43, + "sensor_limit": 95, + "sensor_limit_warn": 85, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4357.2", + "sensor_index": "lt:1/1/3/.2-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/3/ Sensor 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 27, + "sensor_limit": 85, + "sensor_limit_warn": 60, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4357.3", + "sensor_index": "lt:1/1/3/.3-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/3/ Sensor 3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 39, + "sensor_limit": 130, + "sensor_limit_warn": 125, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4358.1", + "sensor_index": "lt:1/1/4/.1-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/4/ Sensor 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 46, + "sensor_limit": 95, + "sensor_limit_warn": 85, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4358.2", + "sensor_index": "lt:1/1/4/.2-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/4/ Sensor 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 27, + "sensor_limit": 85, + "sensor_limit_warn": 60, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4358.3", + "sensor_index": "lt:1/1/4/.3-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/4/ Sensor 3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 40, + "sensor_limit": 130, + "sensor_limit_warn": 125, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4359.1", + "sensor_index": "lt:1/1/5/.1-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/5/ Sensor 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 41, + "sensor_limit": 95, + "sensor_limit_warn": 85, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4359.2", + "sensor_index": "lt:1/1/5/.2-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/5/ Sensor 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26, + "sensor_limit": 85, + "sensor_limit_warn": 60, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4359.3", + "sensor_index": "lt:1/1/5/.3-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/5/ Sensor 3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 37, + "sensor_limit": 130, + "sensor_limit_warn": 125, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4359.4", + "sensor_index": "lt:1/1/5/.4-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/5/ Sensor 4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 57, + "sensor_limit": 115, + "sensor_limit_warn": 95, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4359.5", + "sensor_index": "lt:1/1/5/.5-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/5/ Sensor 5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 39, + "sensor_limit": 90, + "sensor_limit_warn": 75, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4359.6", + "sensor_index": "lt:1/1/5/.6-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/5/ Sensor 6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 55, + "sensor_limit": 110, + "sensor_limit_warn": 95, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4359.7", + "sensor_index": "lt:1/1/5/.7-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "lt:1/1/5/ Sensor 7", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 51, + "sensor_limit": 115, + "sensor_limit_warn": 95, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4353.1", + "sensor_index": "nt-a:.1-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "nt-a: Sensor 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 98, + "sensor_limit_warn": 85, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4353.2", + "sensor_index": "nt-a:.2-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "nt-a: Sensor 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 30, + "sensor_limit": 78, + "sensor_limit_warn": 73, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.637.61.1.23.10.1.2.4353.3", + "sensor_index": "nt-a:.3-temp", + "sensor_type": "nokia-isam", + "sensor_descr": "nt-a: Sensor 3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 37, + "sensor_limit": 83, + "sensor_limit_warn": 78, + "sensor_limit_low": -0.5, + "sensor_limit_low_warn": 0.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "eqptBoardOperError", + "state_descr": "no-error", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "type-mismatch", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "board-missing", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "board-installation-missing", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 2 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "no-planned-board", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 1 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "waiting-for-sw", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "init-boot-failed", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 2 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "init-download-failed", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 2 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "init-connection-failed", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 2 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "init-configuration-failed", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 2 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "board-reset-protection", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "invalid-parameter", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 2 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "temperature-alarm", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "tempshutdown", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 2 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "defense", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "board-not-licensed", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "sem-power-fail", + "state_draw_graph": 0, + "state_value": 17, + "state_generic_value": 2 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "sem-ups-fail", + "state_draw_graph": 0, + "state_value": 18, + "state_generic_value": 2 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "board-in-incompatible-slot", + "state_draw_graph": 0, + "state_value": 19, + "state_generic_value": 2 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "download-ongoing", + "state_draw_graph": 0, + "state_value": 21, + "state_generic_value": 1 + }, + { + "state_name": "eqptBoardOperError", + "state_descr": "unknown-error", + "state_draw_graph": 0, + "state_value": 255, + "state_generic_value": 2 + }, + { + "state_name": "fanMode", + "state_descr": "default", + "state_draw_graph": 0, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "fanMode", + "state_descr": "eco", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 1 + }, + { + "state_name": "fanMode", + "state_descr": "protect", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "fanMode", + "state_descr": "classic", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + } + ] + }, + "poller": "matches discovery" + } +} diff --git a/tests/snmpsim/nokia-isam.snmprec b/tests/snmpsim/nokia-isam.snmprec new file mode 100644 index 0000000000..d7dfba40da --- /dev/null +++ b/tests/snmpsim/nokia-isam.snmprec @@ -0,0 +1,5331 @@ +1.3.6.1.2.1.1.1.0|4|R5.7.02a NFXS-E FANT-F NOKIA ISAM Copyright (c) 2016 Nokia. All rights reserved. All use subject to applicable license agreement. Nokia and Alcatel-Lucent are registered trademarks of Nokia Corporation. +1.3.6.1.2.1.1.2.0|6|.1.3.6.1.4.1.637.61.1 +1.3.6.1.2.1.1.3.0|67|107702681 +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.20971520|2|20971520 +1.3.6.1.2.1.2.2.1.1.20972032|2|20972032 +1.3.6.1.2.1.2.2.1.1.20972544|2|20972544 +1.3.6.1.2.1.2.2.1.1.100663360|2|100663360 +1.3.6.1.2.1.2.2.1.1.100664384|2|100664384 +1.3.6.1.2.1.2.2.1.1.100665408|2|100665408 +1.3.6.1.2.1.2.2.1.1.104857600|2|104857600 +1.3.6.1.2.1.2.2.1.1.104988672|2|104988672 +1.3.6.1.2.1.2.2.1.1.105119744|2|105119744 +1.3.6.1.2.1.2.2.1.1.105250816|2|105250816 +1.3.6.1.2.1.2.2.1.1.105381888|2|105381888 +1.3.6.1.2.1.2.2.1.1.105512960|2|105512960 +1.3.6.1.2.1.2.2.1.1.105644032|2|105644032 +1.3.6.1.2.1.2.2.1.1.105775104|2|105775104 +1.3.6.1.2.1.2.2.1.1.105906176|2|105906176 +1.3.6.1.2.1.2.2.1.1.106037248|2|106037248 +1.3.6.1.2.1.2.2.1.1.106168320|2|106168320 +1.3.6.1.2.1.2.2.1.1.106299392|2|106299392 +1.3.6.1.2.1.2.2.1.1.106430464|2|106430464 +1.3.6.1.2.1.2.2.1.1.106561536|2|106561536 +1.3.6.1.2.1.2.2.1.1.106692608|2|106692608 +1.3.6.1.2.1.2.2.1.1.106823680|2|106823680 +1.3.6.1.2.1.2.2.1.1.113246272|2|113246272 +1.3.6.1.2.1.2.2.1.1.113247296|2|113247296 +1.3.6.1.2.1.2.2.1.1.113248320|2|113248320 +1.3.6.1.2.1.2.2.1.1.115343360|2|115343360 +1.3.6.1.2.1.2.2.1.1.115343361|2|115343361 +1.3.6.1.2.1.2.2.1.1.115343362|2|115343362 +1.3.6.1.2.1.2.2.1.1.115343363|2|115343363 +1.3.6.1.2.1.2.2.1.1.115343364|2|115343364 +1.3.6.1.2.1.2.2.1.1.115343365|2|115343365 +1.3.6.1.2.1.2.2.1.1.127926272|2|127926272 +1.3.6.1.2.1.2.2.1.1.128057344|2|128057344 +1.3.6.1.2.1.2.2.1.1.128188416|2|128188416 +1.3.6.1.2.1.2.2.1.1.128319488|2|128319488 +1.3.6.1.2.1.2.2.1.1.128450560|2|128450560 +1.3.6.1.2.1.2.2.1.1.128581632|2|128581632 +1.3.6.1.2.1.2.2.1.1.128712704|2|128712704 +1.3.6.1.2.1.2.2.1.1.128843776|2|128843776 +1.3.6.1.2.1.2.2.1.1.128974848|2|128974848 +1.3.6.1.2.1.2.2.1.1.129105920|2|129105920 +1.3.6.1.2.1.2.2.1.1.129236992|2|129236992 +1.3.6.1.2.1.2.2.1.1.129368064|2|129368064 +1.3.6.1.2.1.2.2.1.1.129499136|2|129499136 +1.3.6.1.2.1.2.2.1.1.129630208|2|129630208 +1.3.6.1.2.1.2.2.1.1.129761280|2|129761280 +1.3.6.1.2.1.2.2.1.1.129892352|2|129892352 +1.3.6.1.2.1.2.2.1.1.130023424|2|130023424 +1.3.6.1.2.1.2.2.1.1.130024448|2|130024448 +1.3.6.1.2.1.2.2.1.1.130025472|2|130025472 +1.3.6.1.2.1.2.2.1.1.205520896|2|205520896 +1.3.6.1.2.1.2.2.1.1.205651968|2|205651968 +1.3.6.1.2.1.2.2.1.1.205783040|2|205783040 +1.3.6.1.2.1.2.2.1.1.205914112|2|205914112 +1.3.6.1.2.1.2.2.1.1.206045184|2|206045184 +1.3.6.1.2.1.2.2.1.1.206176256|2|206176256 +1.3.6.1.2.1.2.2.1.1.206307328|2|206307328 +1.3.6.1.2.1.2.2.1.1.206438400|2|206438400 +1.3.6.1.2.1.2.2.1.1.206569472|2|206569472 +1.3.6.1.2.1.2.2.1.1.206700544|2|206700544 +1.3.6.1.2.1.2.2.1.1.206831616|2|206831616 +1.3.6.1.2.1.2.2.1.1.206962688|2|206962688 +1.3.6.1.2.1.2.2.1.1.207093760|2|207093760 +1.3.6.1.2.1.2.2.1.1.207224832|2|207224832 +1.3.6.1.2.1.2.2.1.1.207355904|2|207355904 +1.3.6.1.2.1.2.2.1.1.207486976|2|207486976 +1.3.6.1.2.1.2.2.1.1.228589568|2|228589568 +1.3.6.1.2.1.2.2.1.1.228720640|2|228720640 +1.3.6.1.2.1.2.2.1.1.228851712|2|228851712 +1.3.6.1.2.1.2.2.1.1.228982784|2|228982784 +1.3.6.1.2.1.2.2.1.1.229113856|2|229113856 +1.3.6.1.2.1.2.2.1.1.229244928|2|229244928 +1.3.6.1.2.1.2.2.1.1.229376000|2|229376000 +1.3.6.1.2.1.2.2.1.1.229507072|2|229507072 +1.3.6.1.2.1.2.2.1.1.229638144|2|229638144 +1.3.6.1.2.1.2.2.1.1.229769216|2|229769216 +1.3.6.1.2.1.2.2.1.1.229900288|2|229900288 +1.3.6.1.2.1.2.2.1.1.230031360|2|230031360 +1.3.6.1.2.1.2.2.1.1.230162432|2|230162432 +1.3.6.1.2.1.2.2.1.1.230293504|2|230293504 +1.3.6.1.2.1.2.2.1.1.230424576|2|230424576 +1.3.6.1.2.1.2.2.1.1.230555648|2|230555648 +1.3.6.1.2.1.2.2.1.1.306184192|2|306184192 +1.3.6.1.2.1.2.2.1.1.306315264|2|306315264 +1.3.6.1.2.1.2.2.1.1.306446336|2|306446336 +1.3.6.1.2.1.2.2.1.1.306577408|2|306577408 +1.3.6.1.2.1.2.2.1.1.306708480|2|306708480 +1.3.6.1.2.1.2.2.1.1.306839552|2|306839552 +1.3.6.1.2.1.2.2.1.1.306970624|2|306970624 +1.3.6.1.2.1.2.2.1.1.307101696|2|307101696 +1.3.6.1.2.1.2.2.1.1.307232768|2|307232768 +1.3.6.1.2.1.2.2.1.1.307363840|2|307363840 +1.3.6.1.2.1.2.2.1.1.307494912|2|307494912 +1.3.6.1.2.1.2.2.1.1.307625984|2|307625984 +1.3.6.1.2.1.2.2.1.1.307757056|2|307757056 +1.3.6.1.2.1.2.2.1.1.307888128|2|307888128 +1.3.6.1.2.1.2.2.1.1.308019200|2|308019200 +1.3.6.1.2.1.2.2.1.1.308150272|2|308150272 +1.3.6.1.2.1.2.2.1.1.329252864|2|329252864 +1.3.6.1.2.1.2.2.1.1.329383936|2|329383936 +1.3.6.1.2.1.2.2.1.1.329515008|2|329515008 +1.3.6.1.2.1.2.2.1.1.329646080|2|329646080 +1.3.6.1.2.1.2.2.1.1.329777152|2|329777152 +1.3.6.1.2.1.2.2.1.1.329908224|2|329908224 +1.3.6.1.2.1.2.2.1.1.330039296|2|330039296 +1.3.6.1.2.1.2.2.1.1.330170368|2|330170368 +1.3.6.1.2.1.2.2.1.1.330301440|2|330301440 +1.3.6.1.2.1.2.2.1.1.330432512|2|330432512 +1.3.6.1.2.1.2.2.1.1.330563584|2|330563584 +1.3.6.1.2.1.2.2.1.1.330694656|2|330694656 +1.3.6.1.2.1.2.2.1.1.330825728|2|330825728 +1.3.6.1.2.1.2.2.1.1.330956800|2|330956800 +1.3.6.1.2.1.2.2.1.1.331087872|2|331087872 +1.3.6.1.2.1.2.2.1.1.331218944|2|331218944 +1.3.6.1.2.1.2.2.1.1.1077936128|2|1077936128 +1.3.6.1.2.1.2.2.1.1.1077936640|2|1077936640 +1.3.6.1.2.1.2.2.1.1.1077937152|2|1077937152 +1.3.6.1.2.1.2.2.1.1.1077937664|2|1077937664 +1.3.6.1.2.1.2.2.1.1.1077938176|2|1077938176 +1.3.6.1.2.1.2.2.1.1.1077938688|2|1077938688 +1.3.6.1.2.1.2.2.1.1.1077939200|2|1077939200 +1.3.6.1.2.1.2.2.1.1.1077939712|2|1077939712 +1.3.6.1.2.1.2.2.1.1.1077940224|2|1077940224 +1.3.6.1.2.1.2.2.1.1.1077940736|2|1077940736 +1.3.6.1.2.1.2.2.1.1.1077941248|2|1077941248 +1.3.6.1.2.1.2.2.1.1.1077941760|2|1077941760 +1.3.6.1.2.1.2.2.1.1.1077942272|2|1077942272 +1.3.6.1.2.1.2.2.1.1.1077942784|2|1077942784 +1.3.6.1.2.1.2.2.1.1.1077943296|2|1077943296 +1.3.6.1.2.1.2.2.1.1.1077943808|2|1077943808 +1.3.6.1.2.1.2.2.1.1.1077944320|2|1077944320 +1.3.6.1.2.1.2.2.1.1.1077944832|2|1077944832 +1.3.6.1.2.1.2.2.1.1.1077945344|2|1077945344 +1.3.6.1.2.1.2.2.1.1.1077945856|2|1077945856 +1.3.6.1.2.1.2.2.1.1.1077946368|2|1077946368 +1.3.6.1.2.1.2.2.1.1.1077946880|2|1077946880 +1.3.6.1.2.1.2.2.1.1.1077947392|2|1077947392 +1.3.6.1.2.1.2.2.1.1.1077947904|2|1077947904 +1.3.6.1.2.1.2.2.1.1.1077948416|2|1077948416 +1.3.6.1.2.1.2.2.1.1.1077948928|2|1077948928 +1.3.6.1.2.1.2.2.1.1.1077949440|2|1077949440 +1.3.6.1.2.1.2.2.1.1.1077949952|2|1077949952 +1.3.6.1.2.1.2.2.1.1.1077950464|2|1077950464 +1.3.6.1.2.1.2.2.1.1.1077950976|2|1077950976 +1.3.6.1.2.1.2.2.1.1.1077951488|2|1077951488 +1.3.6.1.2.1.2.2.1.1.1077952000|2|1077952000 +1.3.6.1.2.1.2.2.1.1.1077952512|2|1077952512 +1.3.6.1.2.1.2.2.1.1.1077953024|2|1077953024 +1.3.6.1.2.1.2.2.1.1.1077953536|2|1077953536 +1.3.6.1.2.1.2.2.1.1.1077954048|2|1077954048 +1.3.6.1.2.1.2.2.1.1.1078198272|2|1078198272 +1.3.6.1.2.1.2.2.1.1.1078198784|2|1078198784 +1.3.6.1.2.1.2.2.1.1.1078199296|2|1078199296 +1.3.6.1.2.1.2.2.1.1.1078199808|2|1078199808 +1.3.6.1.2.1.2.2.1.1.1078200320|2|1078200320 +1.3.6.1.2.1.2.2.1.1.1078200832|2|1078200832 +1.3.6.1.2.1.2.2.1.1.1078201344|2|1078201344 +1.3.6.1.2.1.2.2.1.1.1078201856|2|1078201856 +1.3.6.1.2.1.2.2.1.1.1078202368|2|1078202368 +1.3.6.1.2.1.2.2.1.1.1078202880|2|1078202880 +1.3.6.1.2.1.2.2.1.1.1078203392|2|1078203392 +1.3.6.1.2.1.2.2.1.1.1078203904|2|1078203904 +1.3.6.1.2.1.2.2.1.1.1078204416|2|1078204416 +1.3.6.1.2.1.2.2.1.1.1078204928|2|1078204928 +1.3.6.1.2.1.2.2.1.1.1078205440|2|1078205440 +1.3.6.1.2.1.2.2.1.1.1078205952|2|1078205952 +1.3.6.1.2.1.2.2.1.1.1078206464|2|1078206464 +1.3.6.1.2.1.2.2.1.1.1078206976|2|1078206976 +1.3.6.1.2.1.2.2.1.1.1078207488|2|1078207488 +1.3.6.1.2.1.2.2.1.1.1078208000|2|1078208000 +1.3.6.1.2.1.2.2.1.1.1078208512|2|1078208512 +1.3.6.1.2.1.2.2.1.1.1078209024|2|1078209024 +1.3.6.1.2.1.2.2.1.1.1078209536|2|1078209536 +1.3.6.1.2.1.2.2.1.1.1078210048|2|1078210048 +1.3.6.1.2.1.2.2.1.1.1078210560|2|1078210560 +1.3.6.1.2.1.2.2.1.1.1078211072|2|1078211072 +1.3.6.1.2.1.2.2.1.1.1078211584|2|1078211584 +1.3.6.1.2.1.2.2.1.1.1078212096|2|1078212096 +1.3.6.1.2.1.2.2.1.1.1078212608|2|1078212608 +1.3.6.1.2.1.2.2.1.1.1078213120|2|1078213120 +1.3.6.1.2.1.2.2.1.1.1078213632|2|1078213632 +1.3.6.1.2.1.2.2.1.1.1078214144|2|1078214144 +1.3.6.1.2.1.2.2.1.1.1078214656|2|1078214656 +1.3.6.1.2.1.2.2.1.1.1078215168|2|1078215168 +1.3.6.1.2.1.2.2.1.1.1078215680|2|1078215680 +1.3.6.1.2.1.2.2.1.1.1078216192|2|1078216192 +1.3.6.1.2.1.2.2.1.1.1078722560|2|1078722560 +1.3.6.1.2.1.2.2.1.1.1078723072|2|1078723072 +1.3.6.1.2.1.2.2.1.1.1078723584|2|1078723584 +1.3.6.1.2.1.2.2.1.1.1078724096|2|1078724096 +1.3.6.1.2.1.2.2.1.1.1078724608|2|1078724608 +1.3.6.1.2.1.2.2.1.1.1078725120|2|1078725120 +1.3.6.1.2.1.2.2.1.1.1078725632|2|1078725632 +1.3.6.1.2.1.2.2.1.1.1078726144|2|1078726144 +1.3.6.1.2.1.2.2.1.1.1078726656|2|1078726656 +1.3.6.1.2.1.2.2.1.1.1078727168|2|1078727168 +1.3.6.1.2.1.2.2.1.1.1078727680|2|1078727680 +1.3.6.1.2.1.2.2.1.1.1078728192|2|1078728192 +1.3.6.1.2.1.2.2.1.1.1078728704|2|1078728704 +1.3.6.1.2.1.2.2.1.1.1078729216|2|1078729216 +1.3.6.1.2.1.2.2.1.1.1078729728|2|1078729728 +1.3.6.1.2.1.2.2.1.1.1078730240|2|1078730240 +1.3.6.1.2.1.2.2.1.1.1078730752|2|1078730752 +1.3.6.1.2.1.2.2.1.1.1078731264|2|1078731264 +1.3.6.1.2.1.2.2.1.1.1078731776|2|1078731776 +1.3.6.1.2.1.2.2.1.1.1078732288|2|1078732288 +1.3.6.1.2.1.2.2.1.1.1078732800|2|1078732800 +1.3.6.1.2.1.2.2.1.1.1078733312|2|1078733312 +1.3.6.1.2.1.2.2.1.1.1078733824|2|1078733824 +1.3.6.1.2.1.2.2.1.1.1078734336|2|1078734336 +1.3.6.1.2.1.2.2.1.1.1078734848|2|1078734848 +1.3.6.1.2.1.2.2.1.1.1078735360|2|1078735360 +1.3.6.1.2.1.2.2.1.1.1078735872|2|1078735872 +1.3.6.1.2.1.2.2.1.1.1078736384|2|1078736384 +1.3.6.1.2.1.2.2.1.1.1078736896|2|1078736896 +1.3.6.1.2.1.2.2.1.1.1078737408|2|1078737408 +1.3.6.1.2.1.2.2.1.1.1078737920|2|1078737920 +1.3.6.1.2.1.2.2.1.1.1078738432|2|1078738432 +1.3.6.1.2.1.2.2.1.1.1078738944|2|1078738944 +1.3.6.1.2.1.2.2.1.1.1078739456|2|1078739456 +1.3.6.1.2.1.2.2.1.1.1078739968|2|1078739968 +1.3.6.1.2.1.2.2.1.1.1078740480|2|1078740480 +1.3.6.1.2.1.2.2.1.1.1078853886|2|1078853886 +1.3.6.1.2.1.2.2.1.1.1078853887|2|1078853887 +1.3.6.1.2.1.2.2.1.1.1078854398|2|1078854398 +1.3.6.1.2.1.2.2.1.1.1078854399|2|1078854399 +1.3.6.1.2.1.2.2.1.1.1078854910|2|1078854910 +1.3.6.1.2.1.2.2.1.1.1078854911|2|1078854911 +1.3.6.1.2.1.2.2.1.1.1078855422|2|1078855422 +1.3.6.1.2.1.2.2.1.1.1078855423|2|1078855423 +1.3.6.1.2.1.2.2.1.1.1078855934|2|1078855934 +1.3.6.1.2.1.2.2.1.1.1078855935|2|1078855935 +1.3.6.1.2.1.2.2.1.1.1078856446|2|1078856446 +1.3.6.1.2.1.2.2.1.1.1078856447|2|1078856447 +1.3.6.1.2.1.2.2.1.1.1078856958|2|1078856958 +1.3.6.1.2.1.2.2.1.1.1078856959|2|1078856959 +1.3.6.1.2.1.2.2.1.1.1078857470|2|1078857470 +1.3.6.1.2.1.2.2.1.1.1078857471|2|1078857471 +1.3.6.1.2.1.2.2.1.1.1078857982|2|1078857982 +1.3.6.1.2.1.2.2.1.1.1078857983|2|1078857983 +1.3.6.1.2.1.2.2.1.1.1078858494|2|1078858494 +1.3.6.1.2.1.2.2.1.1.1078858495|2|1078858495 +1.3.6.1.2.1.2.2.1.1.1078859006|2|1078859006 +1.3.6.1.2.1.2.2.1.1.1078859007|2|1078859007 +1.3.6.1.2.1.2.2.1.1.1078859518|2|1078859518 +1.3.6.1.2.1.2.2.1.1.1078859519|2|1078859519 +1.3.6.1.2.1.2.2.1.1.1078860030|2|1078860030 +1.3.6.1.2.1.2.2.1.1.1078860031|2|1078860031 +1.3.6.1.2.1.2.2.1.1.1078860542|2|1078860542 +1.3.6.1.2.1.2.2.1.1.1078860543|2|1078860543 +1.3.6.1.2.1.2.2.1.1.1078861054|2|1078861054 +1.3.6.1.2.1.2.2.1.1.1078861055|2|1078861055 +1.3.6.1.2.1.2.2.1.1.1078861566|2|1078861566 +1.3.6.1.2.1.2.2.1.1.1078861567|2|1078861567 +1.3.6.1.2.1.2.2.1.1.1078862078|2|1078862078 +1.3.6.1.2.1.2.2.1.1.1078862079|2|1078862079 +1.3.6.1.2.1.2.2.1.1.1078862590|2|1078862590 +1.3.6.1.2.1.2.2.1.1.1078862591|2|1078862591 +1.3.6.1.2.1.2.2.1.1.1078863102|2|1078863102 +1.3.6.1.2.1.2.2.1.1.1078863103|2|1078863103 +1.3.6.1.2.1.2.2.1.1.1078863614|2|1078863614 +1.3.6.1.2.1.2.2.1.1.1078863615|2|1078863615 +1.3.6.1.2.1.2.2.1.1.1078864126|2|1078864126 +1.3.6.1.2.1.2.2.1.1.1078864127|2|1078864127 +1.3.6.1.2.1.2.2.1.1.1078864638|2|1078864638 +1.3.6.1.2.1.2.2.1.1.1078864639|2|1078864639 +1.3.6.1.2.1.2.2.1.1.1078865150|2|1078865150 +1.3.6.1.2.1.2.2.1.1.1078865151|2|1078865151 +1.3.6.1.2.1.2.2.1.1.1078865662|2|1078865662 +1.3.6.1.2.1.2.2.1.1.1078865663|2|1078865663 +1.3.6.1.2.1.2.2.1.1.1078866174|2|1078866174 +1.3.6.1.2.1.2.2.1.1.1078866175|2|1078866175 +1.3.6.1.2.1.2.2.1.1.1078866686|2|1078866686 +1.3.6.1.2.1.2.2.1.1.1078866687|2|1078866687 +1.3.6.1.2.1.2.2.1.1.1078867198|2|1078867198 +1.3.6.1.2.1.2.2.1.1.1078867199|2|1078867199 +1.3.6.1.2.1.2.2.1.1.1078867710|2|1078867710 +1.3.6.1.2.1.2.2.1.1.1078867711|2|1078867711 +1.3.6.1.2.1.2.2.1.1.1078868222|2|1078868222 +1.3.6.1.2.1.2.2.1.1.1078868223|2|1078868223 +1.3.6.1.2.1.2.2.1.1.1078868734|2|1078868734 +1.3.6.1.2.1.2.2.1.1.1078868735|2|1078868735 +1.3.6.1.2.1.2.2.1.1.1078869246|2|1078869246 +1.3.6.1.2.1.2.2.1.1.1078869247|2|1078869247 +1.3.6.1.2.1.2.2.1.1.1078869758|2|1078869758 +1.3.6.1.2.1.2.2.1.1.1078869759|2|1078869759 +1.3.6.1.2.1.2.2.1.1.1078870270|2|1078870270 +1.3.6.1.2.1.2.2.1.1.1078870271|2|1078870271 +1.3.6.1.2.1.2.2.1.1.1078870782|2|1078870782 +1.3.6.1.2.1.2.2.1.1.1078870783|2|1078870783 +1.3.6.1.2.1.2.2.1.1.1078871294|2|1078871294 +1.3.6.1.2.1.2.2.1.1.1078871295|2|1078871295 +1.3.6.1.2.1.2.2.1.1.1078871806|2|1078871806 +1.3.6.1.2.1.2.2.1.1.1078871807|2|1078871807 +1.3.6.1.2.1.2.2.1.1.1079377920|2|1079377920 +1.3.6.1.2.1.2.2.1.1.1081475072|2|1081475072 +1.3.6.1.2.1.2.2.1.1.1087766528|2|1087766528 +1.3.6.1.2.1.2.2.1.1.1094057984|2|1094057984 +1.3.6.1.2.1.2.2.1.2.20971520|4|Nokia ASAM, Software Loopback interface +1.3.6.1.2.1.2.2.1.2.20972032|4|Nokia ASAM, SLIP +1.3.6.1.2.1.2.2.1.2.20972544|4|Nokia ASAM, OAM IP interface +1.3.6.1.2.1.2.2.1.2.100663360|4|nokia FGLT-B PHYSICALUNI +1.3.6.1.2.1.2.2.1.2.100664384|4|nokia FGLT-B PHYSICALUNI +1.3.6.1.2.1.2.2.1.2.100665408|4|nokia FGLT-B PHYSICALUNI +1.3.6.1.2.1.2.2.1.2.104857600|4| +1.3.6.1.2.1.2.2.1.2.104988672|4| +1.3.6.1.2.1.2.2.1.2.105119744|4| +1.3.6.1.2.1.2.2.1.2.105250816|4| +1.3.6.1.2.1.2.2.1.2.105381888|4| +1.3.6.1.2.1.2.2.1.2.105512960|4| +1.3.6.1.2.1.2.2.1.2.105644032|4| +1.3.6.1.2.1.2.2.1.2.105775104|4| +1.3.6.1.2.1.2.2.1.2.105906176|4| +1.3.6.1.2.1.2.2.1.2.106037248|4| +1.3.6.1.2.1.2.2.1.2.106168320|4| +1.3.6.1.2.1.2.2.1.2.106299392|4| +1.3.6.1.2.1.2.2.1.2.106430464|4| +1.3.6.1.2.1.2.2.1.2.106561536|4| +1.3.6.1.2.1.2.2.1.2.106692608|4| +1.3.6.1.2.1.2.2.1.2.106823680|4| +1.3.6.1.2.1.2.2.1.2.113246272|4|Bridge +1.3.6.1.2.1.2.2.1.2.113247296|4|Bridge +1.3.6.1.2.1.2.2.1.2.113248320|4|Bridge +1.3.6.1.2.1.2.2.1.2.115343360|4|VlanPort +1.3.6.1.2.1.2.2.1.2.115343361|4|VlanPort +1.3.6.1.2.1.2.2.1.2.115343362|4|VlanPort +1.3.6.1.2.1.2.2.1.2.115343363|4|VlanPort +1.3.6.1.2.1.2.2.1.2.115343364|4|VlanPort +1.3.6.1.2.1.2.2.1.2.115343365|4|VlanPort +1.3.6.1.2.1.2.2.1.2.127926272|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.128057344|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.128188416|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.128319488|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.128450560|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.128581632|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.128712704|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.128843776|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.128974848|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.129105920|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.129236992|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.129368064|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.129499136|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.129630208|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.129761280|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.129892352|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.130023424|4|nokia FGLT-B ONT +1.3.6.1.2.1.2.2.1.2.130024448|4|nokia FGLT-B ONT +1.3.6.1.2.1.2.2.1.2.130025472|4|nokia FGLT-B ONT +1.3.6.1.2.1.2.2.1.2.205520896|4| +1.3.6.1.2.1.2.2.1.2.205651968|4| +1.3.6.1.2.1.2.2.1.2.205783040|4| +1.3.6.1.2.1.2.2.1.2.205914112|4| +1.3.6.1.2.1.2.2.1.2.206045184|4| +1.3.6.1.2.1.2.2.1.2.206176256|4| +1.3.6.1.2.1.2.2.1.2.206307328|4| +1.3.6.1.2.1.2.2.1.2.206438400|4| +1.3.6.1.2.1.2.2.1.2.206569472|4| +1.3.6.1.2.1.2.2.1.2.206700544|4| +1.3.6.1.2.1.2.2.1.2.206831616|4| +1.3.6.1.2.1.2.2.1.2.206962688|4| +1.3.6.1.2.1.2.2.1.2.207093760|4| +1.3.6.1.2.1.2.2.1.2.207224832|4| +1.3.6.1.2.1.2.2.1.2.207355904|4| +1.3.6.1.2.1.2.2.1.2.207486976|4| +1.3.6.1.2.1.2.2.1.2.228589568|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.228720640|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.228851712|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.228982784|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.229113856|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.229244928|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.229376000|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.229507072|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.229638144|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.229769216|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.229900288|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.230031360|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.230162432|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.230293504|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.230424576|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.230555648|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.306184192|4| +1.3.6.1.2.1.2.2.1.2.306315264|4| +1.3.6.1.2.1.2.2.1.2.306446336|4| +1.3.6.1.2.1.2.2.1.2.306577408|4| +1.3.6.1.2.1.2.2.1.2.306708480|4| +1.3.6.1.2.1.2.2.1.2.306839552|4| +1.3.6.1.2.1.2.2.1.2.306970624|4| +1.3.6.1.2.1.2.2.1.2.307101696|4| +1.3.6.1.2.1.2.2.1.2.307232768|4| +1.3.6.1.2.1.2.2.1.2.307363840|4| +1.3.6.1.2.1.2.2.1.2.307494912|4| +1.3.6.1.2.1.2.2.1.2.307625984|4| +1.3.6.1.2.1.2.2.1.2.307757056|4| +1.3.6.1.2.1.2.2.1.2.307888128|4| +1.3.6.1.2.1.2.2.1.2.308019200|4| +1.3.6.1.2.1.2.2.1.2.308150272|4| +1.3.6.1.2.1.2.2.1.2.329252864|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.329383936|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.329515008|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.329646080|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.329777152|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.329908224|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.330039296|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.330170368|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.330301440|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.330432512|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.330563584|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.330694656|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.330825728|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.330956800|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.331087872|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.331218944|4|nokia FGLT-B PON +1.3.6.1.2.1.2.2.1.2.1077936128|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077936640|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077937152|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077937664|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077938176|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077938688|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077939200|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077939712|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077940224|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077940736|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077941248|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077941760|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077942272|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077942784|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077943296|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077943808|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077944320|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077944832|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077945344|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077945856|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077946368|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077946880|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077947392|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077947904|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077948416|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077948928|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077949440|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077949952|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077950464|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077950976|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077951488|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077952000|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077952512|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077953024|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077953536|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1077954048|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1078198272|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078198784|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078199296|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078199808|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078200320|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078200832|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078201344|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078201856|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078202368|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078202880|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078203392|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078203904|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078204416|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078204928|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078205440|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078205952|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078206464|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078206976|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078207488|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078208000|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078208512|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078209024|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078209536|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078210048|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078210560|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078211072|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078211584|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078212096|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078212608|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078213120|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078213632|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078214144|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078214656|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078215168|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078215680|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078216192|4|LAG Interface Link +1.3.6.1.2.1.2.2.1.2.1078722560|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078723072|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078723584|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078724096|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078724608|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078725120|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078725632|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078726144|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078726656|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078727168|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078727680|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078728192|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078728704|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078729216|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078729728|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078730240|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078730752|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078731264|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078731776|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078732288|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078732800|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078733312|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078733824|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078734336|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078734848|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078735360|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078735872|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078736384|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078736896|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078737408|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078737920|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078738432|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078738944|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078739456|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078739968|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078740480|4|Bridge +1.3.6.1.2.1.2.2.1.2.1078853886|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078853887|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078854398|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078854399|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078854910|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078854911|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078855422|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078855423|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078855934|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078855935|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078856446|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078856447|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078856958|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078856959|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078857470|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078857471|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078857982|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078857983|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078858494|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078858495|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078859006|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078859007|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078859518|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078859519|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078860030|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078860031|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078860542|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078860543|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078861054|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078861055|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078861566|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078861567|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078862078|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078862079|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078862590|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078862591|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078863102|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078863103|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078863614|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078863615|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078864126|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078864127|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078864638|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078864639|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078865150|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078865151|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078865662|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078865663|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078866174|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078866175|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078866686|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078866687|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078867198|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078867199|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078867710|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078867711|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078868222|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078868223|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078868734|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078868735|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078869246|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078869247|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078869758|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078869759|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078870270|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078870271|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078870782|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078870783|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078871294|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078871295|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078871806|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1078871807|4|VlanPort +1.3.6.1.2.1.2.2.1.2.1079377920|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1081475072|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1087766528|4|Ethernet Link +1.3.6.1.2.1.2.2.1.2.1094057984|4|Ethernet Link +1.3.6.1.2.1.2.2.1.3.20971520|2|24 +1.3.6.1.2.1.2.2.1.3.20972032|2|28 +1.3.6.1.2.1.2.2.1.3.20972544|2|6 +1.3.6.1.2.1.2.2.1.3.100663360|2|271 +1.3.6.1.2.1.2.2.1.3.100664384|2|271 +1.3.6.1.2.1.2.2.1.3.100665408|2|271 +1.3.6.1.2.1.2.2.1.3.104857600|2|210 +1.3.6.1.2.1.2.2.1.3.104988672|2|210 +1.3.6.1.2.1.2.2.1.3.105119744|2|210 +1.3.6.1.2.1.2.2.1.3.105250816|2|210 +1.3.6.1.2.1.2.2.1.3.105381888|2|210 +1.3.6.1.2.1.2.2.1.3.105512960|2|210 +1.3.6.1.2.1.2.2.1.3.105644032|2|210 +1.3.6.1.2.1.2.2.1.3.105775104|2|210 +1.3.6.1.2.1.2.2.1.3.105906176|2|210 +1.3.6.1.2.1.2.2.1.3.106037248|2|210 +1.3.6.1.2.1.2.2.1.3.106168320|2|210 +1.3.6.1.2.1.2.2.1.3.106299392|2|210 +1.3.6.1.2.1.2.2.1.3.106430464|2|210 +1.3.6.1.2.1.2.2.1.3.106561536|2|210 +1.3.6.1.2.1.2.2.1.3.106692608|2|210 +1.3.6.1.2.1.2.2.1.3.106823680|2|210 +1.3.6.1.2.1.2.2.1.3.113246272|2|209 +1.3.6.1.2.1.2.2.1.3.113247296|2|209 +1.3.6.1.2.1.2.2.1.3.113248320|2|209 +1.3.6.1.2.1.2.2.1.3.115343360|2|135 +1.3.6.1.2.1.2.2.1.3.115343361|2|135 +1.3.6.1.2.1.2.2.1.3.115343362|2|135 +1.3.6.1.2.1.2.2.1.3.115343363|2|135 +1.3.6.1.2.1.2.2.1.3.115343364|2|135 +1.3.6.1.2.1.2.2.1.3.115343365|2|135 +1.3.6.1.2.1.2.2.1.3.127926272|2|250 +1.3.6.1.2.1.2.2.1.3.128057344|2|250 +1.3.6.1.2.1.2.2.1.3.128188416|2|250 +1.3.6.1.2.1.2.2.1.3.128319488|2|250 +1.3.6.1.2.1.2.2.1.3.128450560|2|250 +1.3.6.1.2.1.2.2.1.3.128581632|2|250 +1.3.6.1.2.1.2.2.1.3.128712704|2|250 +1.3.6.1.2.1.2.2.1.3.128843776|2|250 +1.3.6.1.2.1.2.2.1.3.128974848|2|250 +1.3.6.1.2.1.2.2.1.3.129105920|2|250 +1.3.6.1.2.1.2.2.1.3.129236992|2|250 +1.3.6.1.2.1.2.2.1.3.129368064|2|250 +1.3.6.1.2.1.2.2.1.3.129499136|2|250 +1.3.6.1.2.1.2.2.1.3.129630208|2|250 +1.3.6.1.2.1.2.2.1.3.129761280|2|250 +1.3.6.1.2.1.2.2.1.3.129892352|2|250 +1.3.6.1.2.1.2.2.1.3.130023424|2|270 +1.3.6.1.2.1.2.2.1.3.130024448|2|270 +1.3.6.1.2.1.2.2.1.3.130025472|2|270 +1.3.6.1.2.1.2.2.1.3.205520896|2|210 +1.3.6.1.2.1.2.2.1.3.205651968|2|210 +1.3.6.1.2.1.2.2.1.3.205783040|2|210 +1.3.6.1.2.1.2.2.1.3.205914112|2|210 +1.3.6.1.2.1.2.2.1.3.206045184|2|210 +1.3.6.1.2.1.2.2.1.3.206176256|2|210 +1.3.6.1.2.1.2.2.1.3.206307328|2|210 +1.3.6.1.2.1.2.2.1.3.206438400|2|210 +1.3.6.1.2.1.2.2.1.3.206569472|2|210 +1.3.6.1.2.1.2.2.1.3.206700544|2|210 +1.3.6.1.2.1.2.2.1.3.206831616|2|210 +1.3.6.1.2.1.2.2.1.3.206962688|2|210 +1.3.6.1.2.1.2.2.1.3.207093760|2|210 +1.3.6.1.2.1.2.2.1.3.207224832|2|210 +1.3.6.1.2.1.2.2.1.3.207355904|2|210 +1.3.6.1.2.1.2.2.1.3.207486976|2|210 +1.3.6.1.2.1.2.2.1.3.228589568|2|250 +1.3.6.1.2.1.2.2.1.3.228720640|2|250 +1.3.6.1.2.1.2.2.1.3.228851712|2|250 +1.3.6.1.2.1.2.2.1.3.228982784|2|250 +1.3.6.1.2.1.2.2.1.3.229113856|2|250 +1.3.6.1.2.1.2.2.1.3.229244928|2|250 +1.3.6.1.2.1.2.2.1.3.229376000|2|250 +1.3.6.1.2.1.2.2.1.3.229507072|2|250 +1.3.6.1.2.1.2.2.1.3.229638144|2|250 +1.3.6.1.2.1.2.2.1.3.229769216|2|250 +1.3.6.1.2.1.2.2.1.3.229900288|2|250 +1.3.6.1.2.1.2.2.1.3.230031360|2|250 +1.3.6.1.2.1.2.2.1.3.230162432|2|250 +1.3.6.1.2.1.2.2.1.3.230293504|2|250 +1.3.6.1.2.1.2.2.1.3.230424576|2|250 +1.3.6.1.2.1.2.2.1.3.230555648|2|250 +1.3.6.1.2.1.2.2.1.3.306184192|2|210 +1.3.6.1.2.1.2.2.1.3.306315264|2|210 +1.3.6.1.2.1.2.2.1.3.306446336|2|210 +1.3.6.1.2.1.2.2.1.3.306577408|2|210 +1.3.6.1.2.1.2.2.1.3.306708480|2|210 +1.3.6.1.2.1.2.2.1.3.306839552|2|210 +1.3.6.1.2.1.2.2.1.3.306970624|2|210 +1.3.6.1.2.1.2.2.1.3.307101696|2|210 +1.3.6.1.2.1.2.2.1.3.307232768|2|210 +1.3.6.1.2.1.2.2.1.3.307363840|2|210 +1.3.6.1.2.1.2.2.1.3.307494912|2|210 +1.3.6.1.2.1.2.2.1.3.307625984|2|210 +1.3.6.1.2.1.2.2.1.3.307757056|2|210 +1.3.6.1.2.1.2.2.1.3.307888128|2|210 +1.3.6.1.2.1.2.2.1.3.308019200|2|210 +1.3.6.1.2.1.2.2.1.3.308150272|2|210 +1.3.6.1.2.1.2.2.1.3.329252864|2|250 +1.3.6.1.2.1.2.2.1.3.329383936|2|250 +1.3.6.1.2.1.2.2.1.3.329515008|2|250 +1.3.6.1.2.1.2.2.1.3.329646080|2|250 +1.3.6.1.2.1.2.2.1.3.329777152|2|250 +1.3.6.1.2.1.2.2.1.3.329908224|2|250 +1.3.6.1.2.1.2.2.1.3.330039296|2|250 +1.3.6.1.2.1.2.2.1.3.330170368|2|250 +1.3.6.1.2.1.2.2.1.3.330301440|2|250 +1.3.6.1.2.1.2.2.1.3.330432512|2|250 +1.3.6.1.2.1.2.2.1.3.330563584|2|250 +1.3.6.1.2.1.2.2.1.3.330694656|2|250 +1.3.6.1.2.1.2.2.1.3.330825728|2|250 +1.3.6.1.2.1.2.2.1.3.330956800|2|250 +1.3.6.1.2.1.2.2.1.3.331087872|2|250 +1.3.6.1.2.1.2.2.1.3.331218944|2|250 +1.3.6.1.2.1.2.2.1.3.1077936128|2|6 +1.3.6.1.2.1.2.2.1.3.1077936640|2|6 +1.3.6.1.2.1.2.2.1.3.1077937152|2|6 +1.3.6.1.2.1.2.2.1.3.1077937664|2|6 +1.3.6.1.2.1.2.2.1.3.1077938176|2|6 +1.3.6.1.2.1.2.2.1.3.1077938688|2|6 +1.3.6.1.2.1.2.2.1.3.1077939200|2|6 +1.3.6.1.2.1.2.2.1.3.1077939712|2|6 +1.3.6.1.2.1.2.2.1.3.1077940224|2|6 +1.3.6.1.2.1.2.2.1.3.1077940736|2|6 +1.3.6.1.2.1.2.2.1.3.1077941248|2|6 +1.3.6.1.2.1.2.2.1.3.1077941760|2|6 +1.3.6.1.2.1.2.2.1.3.1077942272|2|6 +1.3.6.1.2.1.2.2.1.3.1077942784|2|6 +1.3.6.1.2.1.2.2.1.3.1077943296|2|6 +1.3.6.1.2.1.2.2.1.3.1077943808|2|6 +1.3.6.1.2.1.2.2.1.3.1077944320|2|6 +1.3.6.1.2.1.2.2.1.3.1077944832|2|6 +1.3.6.1.2.1.2.2.1.3.1077945344|2|6 +1.3.6.1.2.1.2.2.1.3.1077945856|2|6 +1.3.6.1.2.1.2.2.1.3.1077946368|2|6 +1.3.6.1.2.1.2.2.1.3.1077946880|2|6 +1.3.6.1.2.1.2.2.1.3.1077947392|2|6 +1.3.6.1.2.1.2.2.1.3.1077947904|2|6 +1.3.6.1.2.1.2.2.1.3.1077948416|2|6 +1.3.6.1.2.1.2.2.1.3.1077948928|2|6 +1.3.6.1.2.1.2.2.1.3.1077949440|2|6 +1.3.6.1.2.1.2.2.1.3.1077949952|2|6 +1.3.6.1.2.1.2.2.1.3.1077950464|2|6 +1.3.6.1.2.1.2.2.1.3.1077950976|2|6 +1.3.6.1.2.1.2.2.1.3.1077951488|2|6 +1.3.6.1.2.1.2.2.1.3.1077952000|2|6 +1.3.6.1.2.1.2.2.1.3.1077952512|2|6 +1.3.6.1.2.1.2.2.1.3.1077953024|2|6 +1.3.6.1.2.1.2.2.1.3.1077953536|2|6 +1.3.6.1.2.1.2.2.1.3.1077954048|2|6 +1.3.6.1.2.1.2.2.1.3.1078198272|2|161 +1.3.6.1.2.1.2.2.1.3.1078198784|2|161 +1.3.6.1.2.1.2.2.1.3.1078199296|2|161 +1.3.6.1.2.1.2.2.1.3.1078199808|2|161 +1.3.6.1.2.1.2.2.1.3.1078200320|2|161 +1.3.6.1.2.1.2.2.1.3.1078200832|2|161 +1.3.6.1.2.1.2.2.1.3.1078201344|2|161 +1.3.6.1.2.1.2.2.1.3.1078201856|2|161 +1.3.6.1.2.1.2.2.1.3.1078202368|2|161 +1.3.6.1.2.1.2.2.1.3.1078202880|2|161 +1.3.6.1.2.1.2.2.1.3.1078203392|2|161 +1.3.6.1.2.1.2.2.1.3.1078203904|2|161 +1.3.6.1.2.1.2.2.1.3.1078204416|2|161 +1.3.6.1.2.1.2.2.1.3.1078204928|2|161 +1.3.6.1.2.1.2.2.1.3.1078205440|2|161 +1.3.6.1.2.1.2.2.1.3.1078205952|2|161 +1.3.6.1.2.1.2.2.1.3.1078206464|2|161 +1.3.6.1.2.1.2.2.1.3.1078206976|2|161 +1.3.6.1.2.1.2.2.1.3.1078207488|2|161 +1.3.6.1.2.1.2.2.1.3.1078208000|2|161 +1.3.6.1.2.1.2.2.1.3.1078208512|2|161 +1.3.6.1.2.1.2.2.1.3.1078209024|2|161 +1.3.6.1.2.1.2.2.1.3.1078209536|2|161 +1.3.6.1.2.1.2.2.1.3.1078210048|2|161 +1.3.6.1.2.1.2.2.1.3.1078210560|2|161 +1.3.6.1.2.1.2.2.1.3.1078211072|2|161 +1.3.6.1.2.1.2.2.1.3.1078211584|2|161 +1.3.6.1.2.1.2.2.1.3.1078212096|2|161 +1.3.6.1.2.1.2.2.1.3.1078212608|2|161 +1.3.6.1.2.1.2.2.1.3.1078213120|2|161 +1.3.6.1.2.1.2.2.1.3.1078213632|2|161 +1.3.6.1.2.1.2.2.1.3.1078214144|2|161 +1.3.6.1.2.1.2.2.1.3.1078214656|2|161 +1.3.6.1.2.1.2.2.1.3.1078215168|2|161 +1.3.6.1.2.1.2.2.1.3.1078215680|2|161 +1.3.6.1.2.1.2.2.1.3.1078216192|2|161 +1.3.6.1.2.1.2.2.1.3.1078722560|2|209 +1.3.6.1.2.1.2.2.1.3.1078723072|2|209 +1.3.6.1.2.1.2.2.1.3.1078723584|2|209 +1.3.6.1.2.1.2.2.1.3.1078724096|2|209 +1.3.6.1.2.1.2.2.1.3.1078724608|2|209 +1.3.6.1.2.1.2.2.1.3.1078725120|2|209 +1.3.6.1.2.1.2.2.1.3.1078725632|2|209 +1.3.6.1.2.1.2.2.1.3.1078726144|2|209 +1.3.6.1.2.1.2.2.1.3.1078726656|2|209 +1.3.6.1.2.1.2.2.1.3.1078727168|2|209 +1.3.6.1.2.1.2.2.1.3.1078727680|2|209 +1.3.6.1.2.1.2.2.1.3.1078728192|2|209 +1.3.6.1.2.1.2.2.1.3.1078728704|2|209 +1.3.6.1.2.1.2.2.1.3.1078729216|2|209 +1.3.6.1.2.1.2.2.1.3.1078729728|2|209 +1.3.6.1.2.1.2.2.1.3.1078730240|2|209 +1.3.6.1.2.1.2.2.1.3.1078730752|2|209 +1.3.6.1.2.1.2.2.1.3.1078731264|2|209 +1.3.6.1.2.1.2.2.1.3.1078731776|2|209 +1.3.6.1.2.1.2.2.1.3.1078732288|2|209 +1.3.6.1.2.1.2.2.1.3.1078732800|2|209 +1.3.6.1.2.1.2.2.1.3.1078733312|2|209 +1.3.6.1.2.1.2.2.1.3.1078733824|2|209 +1.3.6.1.2.1.2.2.1.3.1078734336|2|209 +1.3.6.1.2.1.2.2.1.3.1078734848|2|209 +1.3.6.1.2.1.2.2.1.3.1078735360|2|209 +1.3.6.1.2.1.2.2.1.3.1078735872|2|209 +1.3.6.1.2.1.2.2.1.3.1078736384|2|209 +1.3.6.1.2.1.2.2.1.3.1078736896|2|209 +1.3.6.1.2.1.2.2.1.3.1078737408|2|209 +1.3.6.1.2.1.2.2.1.3.1078737920|2|209 +1.3.6.1.2.1.2.2.1.3.1078738432|2|209 +1.3.6.1.2.1.2.2.1.3.1078738944|2|209 +1.3.6.1.2.1.2.2.1.3.1078739456|2|209 +1.3.6.1.2.1.2.2.1.3.1078739968|2|209 +1.3.6.1.2.1.2.2.1.3.1078740480|2|209 +1.3.6.1.2.1.2.2.1.3.1078853886|2|135 +1.3.6.1.2.1.2.2.1.3.1078853887|2|135 +1.3.6.1.2.1.2.2.1.3.1078854398|2|135 +1.3.6.1.2.1.2.2.1.3.1078854399|2|135 +1.3.6.1.2.1.2.2.1.3.1078854910|2|135 +1.3.6.1.2.1.2.2.1.3.1078854911|2|135 +1.3.6.1.2.1.2.2.1.3.1078855422|2|135 +1.3.6.1.2.1.2.2.1.3.1078855423|2|135 +1.3.6.1.2.1.2.2.1.3.1078855934|2|135 +1.3.6.1.2.1.2.2.1.3.1078855935|2|135 +1.3.6.1.2.1.2.2.1.3.1078856446|2|135 +1.3.6.1.2.1.2.2.1.3.1078856447|2|135 +1.3.6.1.2.1.2.2.1.3.1078856958|2|135 +1.3.6.1.2.1.2.2.1.3.1078856959|2|135 +1.3.6.1.2.1.2.2.1.3.1078857470|2|135 +1.3.6.1.2.1.2.2.1.3.1078857471|2|135 +1.3.6.1.2.1.2.2.1.3.1078857982|2|135 +1.3.6.1.2.1.2.2.1.3.1078857983|2|135 +1.3.6.1.2.1.2.2.1.3.1078858494|2|135 +1.3.6.1.2.1.2.2.1.3.1078858495|2|135 +1.3.6.1.2.1.2.2.1.3.1078859006|2|135 +1.3.6.1.2.1.2.2.1.3.1078859007|2|135 +1.3.6.1.2.1.2.2.1.3.1078859518|2|135 +1.3.6.1.2.1.2.2.1.3.1078859519|2|135 +1.3.6.1.2.1.2.2.1.3.1078860030|2|135 +1.3.6.1.2.1.2.2.1.3.1078860031|2|135 +1.3.6.1.2.1.2.2.1.3.1078860542|2|135 +1.3.6.1.2.1.2.2.1.3.1078860543|2|135 +1.3.6.1.2.1.2.2.1.3.1078861054|2|135 +1.3.6.1.2.1.2.2.1.3.1078861055|2|135 +1.3.6.1.2.1.2.2.1.3.1078861566|2|135 +1.3.6.1.2.1.2.2.1.3.1078861567|2|135 +1.3.6.1.2.1.2.2.1.3.1078862078|2|135 +1.3.6.1.2.1.2.2.1.3.1078862079|2|135 +1.3.6.1.2.1.2.2.1.3.1078862590|2|135 +1.3.6.1.2.1.2.2.1.3.1078862591|2|135 +1.3.6.1.2.1.2.2.1.3.1078863102|2|135 +1.3.6.1.2.1.2.2.1.3.1078863103|2|135 +1.3.6.1.2.1.2.2.1.3.1078863614|2|135 +1.3.6.1.2.1.2.2.1.3.1078863615|2|135 +1.3.6.1.2.1.2.2.1.3.1078864126|2|135 +1.3.6.1.2.1.2.2.1.3.1078864127|2|135 +1.3.6.1.2.1.2.2.1.3.1078864638|2|135 +1.3.6.1.2.1.2.2.1.3.1078864639|2|135 +1.3.6.1.2.1.2.2.1.3.1078865150|2|135 +1.3.6.1.2.1.2.2.1.3.1078865151|2|135 +1.3.6.1.2.1.2.2.1.3.1078865662|2|135 +1.3.6.1.2.1.2.2.1.3.1078865663|2|135 +1.3.6.1.2.1.2.2.1.3.1078866174|2|135 +1.3.6.1.2.1.2.2.1.3.1078866175|2|135 +1.3.6.1.2.1.2.2.1.3.1078866686|2|135 +1.3.6.1.2.1.2.2.1.3.1078866687|2|135 +1.3.6.1.2.1.2.2.1.3.1078867198|2|135 +1.3.6.1.2.1.2.2.1.3.1078867199|2|135 +1.3.6.1.2.1.2.2.1.3.1078867710|2|135 +1.3.6.1.2.1.2.2.1.3.1078867711|2|135 +1.3.6.1.2.1.2.2.1.3.1078868222|2|135 +1.3.6.1.2.1.2.2.1.3.1078868223|2|135 +1.3.6.1.2.1.2.2.1.3.1078868734|2|135 +1.3.6.1.2.1.2.2.1.3.1078868735|2|135 +1.3.6.1.2.1.2.2.1.3.1078869246|2|135 +1.3.6.1.2.1.2.2.1.3.1078869247|2|135 +1.3.6.1.2.1.2.2.1.3.1078869758|2|135 +1.3.6.1.2.1.2.2.1.3.1078869759|2|135 +1.3.6.1.2.1.2.2.1.3.1078870270|2|135 +1.3.6.1.2.1.2.2.1.3.1078870271|2|135 +1.3.6.1.2.1.2.2.1.3.1078870782|2|135 +1.3.6.1.2.1.2.2.1.3.1078870783|2|135 +1.3.6.1.2.1.2.2.1.3.1078871294|2|135 +1.3.6.1.2.1.2.2.1.3.1078871295|2|135 +1.3.6.1.2.1.2.2.1.3.1078871806|2|135 +1.3.6.1.2.1.2.2.1.3.1078871807|2|135 +1.3.6.1.2.1.2.2.1.3.1079377920|2|6 +1.3.6.1.2.1.2.2.1.3.1081475072|2|6 +1.3.6.1.2.1.2.2.1.3.1087766528|2|6 +1.3.6.1.2.1.2.2.1.3.1094057984|2|6 +1.3.6.1.2.1.2.2.1.4.20971520|2|1500 +1.3.6.1.2.1.2.2.1.4.20972032|2|296 +1.3.6.1.2.1.2.2.1.4.20972544|2|1500 +1.3.6.1.2.1.2.2.1.4.1077936128|2|1980 +1.3.6.1.2.1.2.2.1.4.1077936640|2|1980 +1.3.6.1.2.1.2.2.1.4.1077937152|2|1980 +1.3.6.1.2.1.2.2.1.4.1077937664|2|1980 +1.3.6.1.2.1.2.2.1.4.1077938176|2|1980 +1.3.6.1.2.1.2.2.1.4.1077938688|2|1980 +1.3.6.1.2.1.2.2.1.4.1077939200|2|1980 +1.3.6.1.2.1.2.2.1.4.1077939712|2|1980 +1.3.6.1.2.1.2.2.1.4.1077940224|2|1980 +1.3.6.1.2.1.2.2.1.4.1077940736|2|1980 +1.3.6.1.2.1.2.2.1.4.1077941248|2|1980 +1.3.6.1.2.1.2.2.1.4.1077941760|2|1980 +1.3.6.1.2.1.2.2.1.4.1077942272|2|1980 +1.3.6.1.2.1.2.2.1.4.1077942784|2|1980 +1.3.6.1.2.1.2.2.1.4.1077943296|2|1980 +1.3.6.1.2.1.2.2.1.4.1077943808|2|1980 +1.3.6.1.2.1.2.2.1.4.1077944320|2|1980 +1.3.6.1.2.1.2.2.1.4.1077944832|2|1980 +1.3.6.1.2.1.2.2.1.4.1077945344|2|1980 +1.3.6.1.2.1.2.2.1.4.1077945856|2|1980 +1.3.6.1.2.1.2.2.1.4.1077946368|2|1980 +1.3.6.1.2.1.2.2.1.4.1077946880|2|1980 +1.3.6.1.2.1.2.2.1.4.1077947392|2|1980 +1.3.6.1.2.1.2.2.1.4.1077947904|2|1980 +1.3.6.1.2.1.2.2.1.4.1077948416|2|1980 +1.3.6.1.2.1.2.2.1.4.1077948928|2|1980 +1.3.6.1.2.1.2.2.1.4.1077949440|2|1980 +1.3.6.1.2.1.2.2.1.4.1077949952|2|1980 +1.3.6.1.2.1.2.2.1.4.1077950464|2|1980 +1.3.6.1.2.1.2.2.1.4.1077950976|2|1980 +1.3.6.1.2.1.2.2.1.4.1077951488|2|1980 +1.3.6.1.2.1.2.2.1.4.1077952000|2|1980 +1.3.6.1.2.1.2.2.1.4.1077952512|2|1980 +1.3.6.1.2.1.2.2.1.4.1077953024|2|1980 +1.3.6.1.2.1.2.2.1.4.1077953536|2|1980 +1.3.6.1.2.1.2.2.1.4.1077954048|2|1980 +1.3.6.1.2.1.2.2.1.4.1079377920|2|9212 +1.3.6.1.2.1.2.2.1.4.1081475072|2|1980 +1.3.6.1.2.1.2.2.1.4.1087766528|2|1980 +1.3.6.1.2.1.2.2.1.4.1094057984|2|1980 +1.3.6.1.2.1.2.2.1.5.20971520|66|0 +1.3.6.1.2.1.2.2.1.5.20972032|66|9600 +1.3.6.1.2.1.2.2.1.5.20972544|66|10000000 +1.3.6.1.2.1.2.2.1.5.104857600|66|0 +1.3.6.1.2.1.2.2.1.5.104988672|66|0 +1.3.6.1.2.1.2.2.1.5.105119744|66|0 +1.3.6.1.2.1.2.2.1.5.105250816|66|0 +1.3.6.1.2.1.2.2.1.5.105381888|66|0 +1.3.6.1.2.1.2.2.1.5.105512960|66|0 +1.3.6.1.2.1.2.2.1.5.105644032|66|0 +1.3.6.1.2.1.2.2.1.5.105775104|66|0 +1.3.6.1.2.1.2.2.1.5.105906176|66|0 +1.3.6.1.2.1.2.2.1.5.106037248|66|0 +1.3.6.1.2.1.2.2.1.5.106168320|66|0 +1.3.6.1.2.1.2.2.1.5.106299392|66|0 +1.3.6.1.2.1.2.2.1.5.106430464|66|0 +1.3.6.1.2.1.2.2.1.5.106561536|66|0 +1.3.6.1.2.1.2.2.1.5.106692608|66|0 +1.3.6.1.2.1.2.2.1.5.106823680|66|0 +1.3.6.1.2.1.2.2.1.5.127926272|66|1244000000 +1.3.6.1.2.1.2.2.1.5.128057344|66|1244000000 +1.3.6.1.2.1.2.2.1.5.128188416|66|1244000000 +1.3.6.1.2.1.2.2.1.5.128319488|66|1244000000 +1.3.6.1.2.1.2.2.1.5.128450560|66|1244000000 +1.3.6.1.2.1.2.2.1.5.128581632|66|1244000000 +1.3.6.1.2.1.2.2.1.5.128712704|66|1244000000 +1.3.6.1.2.1.2.2.1.5.128843776|66|1244000000 +1.3.6.1.2.1.2.2.1.5.128974848|66|1244000000 +1.3.6.1.2.1.2.2.1.5.129105920|66|1244000000 +1.3.6.1.2.1.2.2.1.5.129236992|66|1244000000 +1.3.6.1.2.1.2.2.1.5.129368064|66|1244000000 +1.3.6.1.2.1.2.2.1.5.129499136|66|1244000000 +1.3.6.1.2.1.2.2.1.5.129630208|66|1244000000 +1.3.6.1.2.1.2.2.1.5.129761280|66|1244000000 +1.3.6.1.2.1.2.2.1.5.129892352|66|1244000000 +1.3.6.1.2.1.2.2.1.5.205520896|66|0 +1.3.6.1.2.1.2.2.1.5.205651968|66|0 +1.3.6.1.2.1.2.2.1.5.205783040|66|0 +1.3.6.1.2.1.2.2.1.5.205914112|66|0 +1.3.6.1.2.1.2.2.1.5.206045184|66|0 +1.3.6.1.2.1.2.2.1.5.206176256|66|0 +1.3.6.1.2.1.2.2.1.5.206307328|66|0 +1.3.6.1.2.1.2.2.1.5.206438400|66|0 +1.3.6.1.2.1.2.2.1.5.206569472|66|0 +1.3.6.1.2.1.2.2.1.5.206700544|66|0 +1.3.6.1.2.1.2.2.1.5.206831616|66|0 +1.3.6.1.2.1.2.2.1.5.206962688|66|0 +1.3.6.1.2.1.2.2.1.5.207093760|66|0 +1.3.6.1.2.1.2.2.1.5.207224832|66|0 +1.3.6.1.2.1.2.2.1.5.207355904|66|0 +1.3.6.1.2.1.2.2.1.5.207486976|66|0 +1.3.6.1.2.1.2.2.1.5.228589568|66|1244000000 +1.3.6.1.2.1.2.2.1.5.228720640|66|1244000000 +1.3.6.1.2.1.2.2.1.5.228851712|66|1244000000 +1.3.6.1.2.1.2.2.1.5.228982784|66|1244000000 +1.3.6.1.2.1.2.2.1.5.229113856|66|1244000000 +1.3.6.1.2.1.2.2.1.5.229244928|66|1244000000 +1.3.6.1.2.1.2.2.1.5.229376000|66|1244000000 +1.3.6.1.2.1.2.2.1.5.229507072|66|1244000000 +1.3.6.1.2.1.2.2.1.5.229638144|66|1244000000 +1.3.6.1.2.1.2.2.1.5.229769216|66|1244000000 +1.3.6.1.2.1.2.2.1.5.229900288|66|1244000000 +1.3.6.1.2.1.2.2.1.5.230031360|66|1244000000 +1.3.6.1.2.1.2.2.1.5.230162432|66|1244000000 +1.3.6.1.2.1.2.2.1.5.230293504|66|1244000000 +1.3.6.1.2.1.2.2.1.5.230424576|66|1244000000 +1.3.6.1.2.1.2.2.1.5.230555648|66|1244000000 +1.3.6.1.2.1.2.2.1.5.306184192|66|0 +1.3.6.1.2.1.2.2.1.5.306315264|66|0 +1.3.6.1.2.1.2.2.1.5.306446336|66|0 +1.3.6.1.2.1.2.2.1.5.306577408|66|0 +1.3.6.1.2.1.2.2.1.5.306708480|66|0 +1.3.6.1.2.1.2.2.1.5.306839552|66|0 +1.3.6.1.2.1.2.2.1.5.306970624|66|0 +1.3.6.1.2.1.2.2.1.5.307101696|66|0 +1.3.6.1.2.1.2.2.1.5.307232768|66|0 +1.3.6.1.2.1.2.2.1.5.307363840|66|0 +1.3.6.1.2.1.2.2.1.5.307494912|66|0 +1.3.6.1.2.1.2.2.1.5.307625984|66|0 +1.3.6.1.2.1.2.2.1.5.307757056|66|0 +1.3.6.1.2.1.2.2.1.5.307888128|66|0 +1.3.6.1.2.1.2.2.1.5.308019200|66|0 +1.3.6.1.2.1.2.2.1.5.308150272|66|0 +1.3.6.1.2.1.2.2.1.5.329252864|66|1244000000 +1.3.6.1.2.1.2.2.1.5.329383936|66|1244000000 +1.3.6.1.2.1.2.2.1.5.329515008|66|1244000000 +1.3.6.1.2.1.2.2.1.5.329646080|66|1244000000 +1.3.6.1.2.1.2.2.1.5.329777152|66|1244000000 +1.3.6.1.2.1.2.2.1.5.329908224|66|1244000000 +1.3.6.1.2.1.2.2.1.5.330039296|66|1244000000 +1.3.6.1.2.1.2.2.1.5.330170368|66|1244000000 +1.3.6.1.2.1.2.2.1.5.330301440|66|1244000000 +1.3.6.1.2.1.2.2.1.5.330432512|66|1244000000 +1.3.6.1.2.1.2.2.1.5.330563584|66|1244000000 +1.3.6.1.2.1.2.2.1.5.330694656|66|1244000000 +1.3.6.1.2.1.2.2.1.5.330825728|66|1244000000 +1.3.6.1.2.1.2.2.1.5.330956800|66|1244000000 +1.3.6.1.2.1.2.2.1.5.331087872|66|1244000000 +1.3.6.1.2.1.2.2.1.5.331218944|66|1244000000 +1.3.6.1.2.1.2.2.1.5.1077936128|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1077936640|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1077937152|66|0 +1.3.6.1.2.1.2.2.1.5.1077937664|66|0 +1.3.6.1.2.1.2.2.1.5.1077938176|66|0 +1.3.6.1.2.1.2.2.1.5.1077938688|66|0 +1.3.6.1.2.1.2.2.1.5.1077939200|66|0 +1.3.6.1.2.1.2.2.1.5.1077939712|66|0 +1.3.6.1.2.1.2.2.1.5.1077940224|66|0 +1.3.6.1.2.1.2.2.1.5.1077940736|66|0 +1.3.6.1.2.1.2.2.1.5.1077941248|66|0 +1.3.6.1.2.1.2.2.1.5.1077941760|66|0 +1.3.6.1.2.1.2.2.1.5.1077942272|66|0 +1.3.6.1.2.1.2.2.1.5.1077942784|66|0 +1.3.6.1.2.1.2.2.1.5.1077943296|66|0 +1.3.6.1.2.1.2.2.1.5.1077943808|66|0 +1.3.6.1.2.1.2.2.1.5.1077944320|66|0 +1.3.6.1.2.1.2.2.1.5.1077944832|66|0 +1.3.6.1.2.1.2.2.1.5.1077945344|66|0 +1.3.6.1.2.1.2.2.1.5.1077945856|66|0 +1.3.6.1.2.1.2.2.1.5.1077946368|66|0 +1.3.6.1.2.1.2.2.1.5.1077946880|66|0 +1.3.6.1.2.1.2.2.1.5.1077947392|66|0 +1.3.6.1.2.1.2.2.1.5.1077947904|66|0 +1.3.6.1.2.1.2.2.1.5.1077948416|66|0 +1.3.6.1.2.1.2.2.1.5.1077948928|66|0 +1.3.6.1.2.1.2.2.1.5.1077949440|66|0 +1.3.6.1.2.1.2.2.1.5.1077949952|66|0 +1.3.6.1.2.1.2.2.1.5.1077950464|66|0 +1.3.6.1.2.1.2.2.1.5.1077950976|66|0 +1.3.6.1.2.1.2.2.1.5.1077951488|66|0 +1.3.6.1.2.1.2.2.1.5.1077952000|66|0 +1.3.6.1.2.1.2.2.1.5.1077952512|66|0 +1.3.6.1.2.1.2.2.1.5.1077953024|66|0 +1.3.6.1.2.1.2.2.1.5.1077953536|66|0 +1.3.6.1.2.1.2.2.1.5.1077954048|66|0 +1.3.6.1.2.1.2.2.1.5.1078198272|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078198784|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078199296|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078199808|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078200320|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078200832|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078201344|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078201856|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078202368|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078202880|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078203392|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078203904|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078204416|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078204928|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078205440|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078205952|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078206464|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078206976|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078207488|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078208000|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078208512|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078209024|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078209536|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078210048|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078210560|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078211072|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078211584|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078212096|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078212608|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078213120|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078213632|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078214144|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078214656|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078215168|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078215680|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1078216192|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1079377920|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1081475072|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1087766528|66|1000000000 +1.3.6.1.2.1.2.2.1.5.1094057984|66|1000000000 +1.3.6.1.2.1.2.2.1.6.20971520|4| +1.3.6.1.2.1.2.2.1.6.20972032|4| +1.3.6.1.2.1.2.2.1.6.20972544|4x|060000000080 +1.3.6.1.2.1.2.2.1.6.1077936128|4x|3C8BCDEFC529 +1.3.6.1.2.1.2.2.1.6.1077936640|4x|3C8BCDEFC52A +1.3.6.1.2.1.2.2.1.6.1077937152|4x|3C8BCDEFC52B +1.3.6.1.2.1.2.2.1.6.1077937664|4x|3C8BCDEFC52C +1.3.6.1.2.1.2.2.1.6.1077938176|4x|3C8BCDEFC52D +1.3.6.1.2.1.2.2.1.6.1077938688|4x|3C8BCDEFC52E +1.3.6.1.2.1.2.2.1.6.1077939200|4x|3C8BCDEFC52F +1.3.6.1.2.1.2.2.1.6.1077939712|4x|3C8BCDEFC530 +1.3.6.1.2.1.2.2.1.6.1077940224|4x|3C8BCDEFC531 +1.3.6.1.2.1.2.2.1.6.1077940736|4x|3C8BCDEFC532 +1.3.6.1.2.1.2.2.1.6.1077941248|4x|3C8BCDEFC533 +1.3.6.1.2.1.2.2.1.6.1077941760|4x|3C8BCDEFC534 +1.3.6.1.2.1.2.2.1.6.1077942272|4x|3C8BCDEFC535 +1.3.6.1.2.1.2.2.1.6.1077942784|4x|3C8BCDEFC536 +1.3.6.1.2.1.2.2.1.6.1077943296|4x|3C8BCDEFC537 +1.3.6.1.2.1.2.2.1.6.1077943808|4x|3C8BCDEFC538 +1.3.6.1.2.1.2.2.1.6.1077944320|4x|3C8BCDEFC539 +1.3.6.1.2.1.2.2.1.6.1077944832|4x|3C8BCDEFC53A +1.3.6.1.2.1.2.2.1.6.1077945344|4x|3C8BCDEFC53B +1.3.6.1.2.1.2.2.1.6.1077945856|4x|3C8BCDEFC53C +1.3.6.1.2.1.2.2.1.6.1077946368|4x|3C8BCDEFC53D +1.3.6.1.2.1.2.2.1.6.1077946880|4x|3C8BCDEFC53E +1.3.6.1.2.1.2.2.1.6.1077947392|4x|3C8BCDEFC53F +1.3.6.1.2.1.2.2.1.6.1077947904|4x|3C8BCDEFC540 +1.3.6.1.2.1.2.2.1.6.1077948416|4x|3C8BCDEFC541 +1.3.6.1.2.1.2.2.1.6.1077948928|4x|3C8BCDEFC542 +1.3.6.1.2.1.2.2.1.6.1077949440|4x|3C8BCDEFC543 +1.3.6.1.2.1.2.2.1.6.1077949952|4x|3C8BCDEFC544 +1.3.6.1.2.1.2.2.1.6.1077950464|4x|3C8BCDEFC545 +1.3.6.1.2.1.2.2.1.6.1077950976|4x|3C8BCDEFC546 +1.3.6.1.2.1.2.2.1.6.1077951488|4x|3C8BCDEFC547 +1.3.6.1.2.1.2.2.1.6.1077952000|4x|3C8BCDEFC548 +1.3.6.1.2.1.2.2.1.6.1077952512|4x|3C8BCDEFC549 +1.3.6.1.2.1.2.2.1.6.1077953024|4x|3C8BCDEFC54A +1.3.6.1.2.1.2.2.1.6.1077953536|4x|3C8BCDEFC54B +1.3.6.1.2.1.2.2.1.6.1077954048|4x|3C8BCDEFC54C +1.3.6.1.2.1.2.2.1.6.1078198272|4| +1.3.6.1.2.1.2.2.1.6.1078198784|4| +1.3.6.1.2.1.2.2.1.6.1078199296|4| +1.3.6.1.2.1.2.2.1.6.1078199808|4| +1.3.6.1.2.1.2.2.1.6.1078200320|4| +1.3.6.1.2.1.2.2.1.6.1078200832|4| +1.3.6.1.2.1.2.2.1.6.1078201344|4| +1.3.6.1.2.1.2.2.1.6.1078201856|4| +1.3.6.1.2.1.2.2.1.6.1078202368|4| +1.3.6.1.2.1.2.2.1.6.1078202880|4| +1.3.6.1.2.1.2.2.1.6.1078203392|4| +1.3.6.1.2.1.2.2.1.6.1078203904|4| +1.3.6.1.2.1.2.2.1.6.1078204416|4| +1.3.6.1.2.1.2.2.1.6.1078204928|4| +1.3.6.1.2.1.2.2.1.6.1078205440|4| +1.3.6.1.2.1.2.2.1.6.1078205952|4| +1.3.6.1.2.1.2.2.1.6.1078206464|4| +1.3.6.1.2.1.2.2.1.6.1078206976|4| +1.3.6.1.2.1.2.2.1.6.1078207488|4| +1.3.6.1.2.1.2.2.1.6.1078208000|4| +1.3.6.1.2.1.2.2.1.6.1078208512|4| +1.3.6.1.2.1.2.2.1.6.1078209024|4| +1.3.6.1.2.1.2.2.1.6.1078209536|4| +1.3.6.1.2.1.2.2.1.6.1078210048|4| +1.3.6.1.2.1.2.2.1.6.1078210560|4| +1.3.6.1.2.1.2.2.1.6.1078211072|4| +1.3.6.1.2.1.2.2.1.6.1078211584|4| +1.3.6.1.2.1.2.2.1.6.1078212096|4| +1.3.6.1.2.1.2.2.1.6.1078212608|4| +1.3.6.1.2.1.2.2.1.6.1078213120|4| +1.3.6.1.2.1.2.2.1.6.1078213632|4| +1.3.6.1.2.1.2.2.1.6.1078214144|4| +1.3.6.1.2.1.2.2.1.6.1078214656|4| +1.3.6.1.2.1.2.2.1.6.1078215168|4| +1.3.6.1.2.1.2.2.1.6.1078215680|4| +1.3.6.1.2.1.2.2.1.6.1078216192|4| +1.3.6.1.2.1.2.2.1.6.1079377920|4x|3C8BCDEFC529 +1.3.6.1.2.1.2.2.1.6.1081475072|4| +1.3.6.1.2.1.2.2.1.6.1087766528|4| +1.3.6.1.2.1.2.2.1.6.1094057984|4| +1.3.6.1.2.1.2.2.1.7.20971520|2|1 +1.3.6.1.2.1.2.2.1.7.20972032|2|1 +1.3.6.1.2.1.2.2.1.7.20972544|2|1 +1.3.6.1.2.1.2.2.1.7.100663360|2|1 +1.3.6.1.2.1.2.2.1.7.100664384|2|1 +1.3.6.1.2.1.2.2.1.7.100665408|2|1 +1.3.6.1.2.1.2.2.1.7.115343360|2|1 +1.3.6.1.2.1.2.2.1.7.115343361|2|1 +1.3.6.1.2.1.2.2.1.7.115343362|2|1 +1.3.6.1.2.1.2.2.1.7.115343363|2|1 +1.3.6.1.2.1.2.2.1.7.115343364|2|1 +1.3.6.1.2.1.2.2.1.7.115343365|2|1 +1.3.6.1.2.1.2.2.1.7.127926272|2|1 +1.3.6.1.2.1.2.2.1.7.128057344|2|1 +1.3.6.1.2.1.2.2.1.7.128188416|2|2 +1.3.6.1.2.1.2.2.1.7.128319488|2|2 +1.3.6.1.2.1.2.2.1.7.128450560|2|2 +1.3.6.1.2.1.2.2.1.7.128581632|2|2 +1.3.6.1.2.1.2.2.1.7.128712704|2|2 +1.3.6.1.2.1.2.2.1.7.128843776|2|2 +1.3.6.1.2.1.2.2.1.7.128974848|2|2 +1.3.6.1.2.1.2.2.1.7.129105920|2|2 +1.3.6.1.2.1.2.2.1.7.129236992|2|2 +1.3.6.1.2.1.2.2.1.7.129368064|2|2 +1.3.6.1.2.1.2.2.1.7.129499136|2|2 +1.3.6.1.2.1.2.2.1.7.129630208|2|2 +1.3.6.1.2.1.2.2.1.7.129761280|2|2 +1.3.6.1.2.1.2.2.1.7.129892352|2|2 +1.3.6.1.2.1.2.2.1.7.130023424|2|1 +1.3.6.1.2.1.2.2.1.7.130024448|2|1 +1.3.6.1.2.1.2.2.1.7.130025472|2|1 +1.3.6.1.2.1.2.2.1.7.228589568|2|1 +1.3.6.1.2.1.2.2.1.7.228720640|2|2 +1.3.6.1.2.1.2.2.1.7.228851712|2|2 +1.3.6.1.2.1.2.2.1.7.228982784|2|2 +1.3.6.1.2.1.2.2.1.7.229113856|2|2 +1.3.6.1.2.1.2.2.1.7.229244928|2|2 +1.3.6.1.2.1.2.2.1.7.229376000|2|2 +1.3.6.1.2.1.2.2.1.7.229507072|2|2 +1.3.6.1.2.1.2.2.1.7.229638144|2|2 +1.3.6.1.2.1.2.2.1.7.229769216|2|2 +1.3.6.1.2.1.2.2.1.7.229900288|2|2 +1.3.6.1.2.1.2.2.1.7.230031360|2|2 +1.3.6.1.2.1.2.2.1.7.230162432|2|2 +1.3.6.1.2.1.2.2.1.7.230293504|2|2 +1.3.6.1.2.1.2.2.1.7.230424576|2|2 +1.3.6.1.2.1.2.2.1.7.230555648|2|2 +1.3.6.1.2.1.2.2.1.7.329252864|2|1 +1.3.6.1.2.1.2.2.1.7.329383936|2|1 +1.3.6.1.2.1.2.2.1.7.329515008|2|1 +1.3.6.1.2.1.2.2.1.7.329646080|2|1 +1.3.6.1.2.1.2.2.1.7.329777152|2|1 +1.3.6.1.2.1.2.2.1.7.329908224|2|1 +1.3.6.1.2.1.2.2.1.7.330039296|2|1 +1.3.6.1.2.1.2.2.1.7.330170368|2|1 +1.3.6.1.2.1.2.2.1.7.330301440|2|1 +1.3.6.1.2.1.2.2.1.7.330432512|2|1 +1.3.6.1.2.1.2.2.1.7.330563584|2|1 +1.3.6.1.2.1.2.2.1.7.330694656|2|1 +1.3.6.1.2.1.2.2.1.7.330825728|2|1 +1.3.6.1.2.1.2.2.1.7.330956800|2|1 +1.3.6.1.2.1.2.2.1.7.331087872|2|1 +1.3.6.1.2.1.2.2.1.7.331218944|2|1 +1.3.6.1.2.1.2.2.1.7.1077936128|2|1 +1.3.6.1.2.1.2.2.1.7.1077936640|2|1 +1.3.6.1.2.1.2.2.1.7.1077937152|2|1 +1.3.6.1.2.1.2.2.1.7.1077937664|2|1 +1.3.6.1.2.1.2.2.1.7.1077938176|2|1 +1.3.6.1.2.1.2.2.1.7.1077938688|2|1 +1.3.6.1.2.1.2.2.1.7.1077939200|2|1 +1.3.6.1.2.1.2.2.1.7.1077939712|2|1 +1.3.6.1.2.1.2.2.1.7.1077940224|2|1 +1.3.6.1.2.1.2.2.1.7.1077940736|2|1 +1.3.6.1.2.1.2.2.1.7.1077941248|2|1 +1.3.6.1.2.1.2.2.1.7.1077941760|2|1 +1.3.6.1.2.1.2.2.1.7.1077942272|2|1 +1.3.6.1.2.1.2.2.1.7.1077942784|2|1 +1.3.6.1.2.1.2.2.1.7.1077943296|2|1 +1.3.6.1.2.1.2.2.1.7.1077943808|2|1 +1.3.6.1.2.1.2.2.1.7.1077944320|2|1 +1.3.6.1.2.1.2.2.1.7.1077944832|2|1 +1.3.6.1.2.1.2.2.1.7.1077945344|2|1 +1.3.6.1.2.1.2.2.1.7.1077945856|2|1 +1.3.6.1.2.1.2.2.1.7.1077946368|2|1 +1.3.6.1.2.1.2.2.1.7.1077946880|2|1 +1.3.6.1.2.1.2.2.1.7.1077947392|2|1 +1.3.6.1.2.1.2.2.1.7.1077947904|2|1 +1.3.6.1.2.1.2.2.1.7.1077948416|2|1 +1.3.6.1.2.1.2.2.1.7.1077948928|2|1 +1.3.6.1.2.1.2.2.1.7.1077949440|2|1 +1.3.6.1.2.1.2.2.1.7.1077949952|2|1 +1.3.6.1.2.1.2.2.1.7.1077950464|2|1 +1.3.6.1.2.1.2.2.1.7.1077950976|2|1 +1.3.6.1.2.1.2.2.1.7.1077951488|2|1 +1.3.6.1.2.1.2.2.1.7.1077952000|2|1 +1.3.6.1.2.1.2.2.1.7.1077952512|2|1 +1.3.6.1.2.1.2.2.1.7.1077953024|2|1 +1.3.6.1.2.1.2.2.1.7.1077953536|2|1 +1.3.6.1.2.1.2.2.1.7.1077954048|2|1 +1.3.6.1.2.1.2.2.1.7.1078198272|2|1 +1.3.6.1.2.1.2.2.1.7.1078198784|2|1 +1.3.6.1.2.1.2.2.1.7.1078199296|2|1 +1.3.6.1.2.1.2.2.1.7.1078199808|2|1 +1.3.6.1.2.1.2.2.1.7.1078200320|2|1 +1.3.6.1.2.1.2.2.1.7.1078200832|2|1 +1.3.6.1.2.1.2.2.1.7.1078201344|2|1 +1.3.6.1.2.1.2.2.1.7.1078201856|2|1 +1.3.6.1.2.1.2.2.1.7.1078202368|2|1 +1.3.6.1.2.1.2.2.1.7.1078202880|2|1 +1.3.6.1.2.1.2.2.1.7.1078203392|2|1 +1.3.6.1.2.1.2.2.1.7.1078203904|2|1 +1.3.6.1.2.1.2.2.1.7.1078204416|2|1 +1.3.6.1.2.1.2.2.1.7.1078204928|2|1 +1.3.6.1.2.1.2.2.1.7.1078205440|2|1 +1.3.6.1.2.1.2.2.1.7.1078205952|2|1 +1.3.6.1.2.1.2.2.1.7.1078206464|2|1 +1.3.6.1.2.1.2.2.1.7.1078206976|2|1 +1.3.6.1.2.1.2.2.1.7.1078207488|2|1 +1.3.6.1.2.1.2.2.1.7.1078208000|2|1 +1.3.6.1.2.1.2.2.1.7.1078208512|2|1 +1.3.6.1.2.1.2.2.1.7.1078209024|2|1 +1.3.6.1.2.1.2.2.1.7.1078209536|2|1 +1.3.6.1.2.1.2.2.1.7.1078210048|2|1 +1.3.6.1.2.1.2.2.1.7.1078210560|2|1 +1.3.6.1.2.1.2.2.1.7.1078211072|2|1 +1.3.6.1.2.1.2.2.1.7.1078211584|2|1 +1.3.6.1.2.1.2.2.1.7.1078212096|2|1 +1.3.6.1.2.1.2.2.1.7.1078212608|2|1 +1.3.6.1.2.1.2.2.1.7.1078213120|2|1 +1.3.6.1.2.1.2.2.1.7.1078213632|2|1 +1.3.6.1.2.1.2.2.1.7.1078214144|2|1 +1.3.6.1.2.1.2.2.1.7.1078214656|2|1 +1.3.6.1.2.1.2.2.1.7.1078215168|2|1 +1.3.6.1.2.1.2.2.1.7.1078215680|2|1 +1.3.6.1.2.1.2.2.1.7.1078216192|2|1 +1.3.6.1.2.1.2.2.1.7.1078853886|2|1 +1.3.6.1.2.1.2.2.1.7.1078853887|2|1 +1.3.6.1.2.1.2.2.1.7.1078854398|2|1 +1.3.6.1.2.1.2.2.1.7.1078854399|2|1 +1.3.6.1.2.1.2.2.1.7.1078854910|2|1 +1.3.6.1.2.1.2.2.1.7.1078854911|2|1 +1.3.6.1.2.1.2.2.1.7.1078855422|2|1 +1.3.6.1.2.1.2.2.1.7.1078855423|2|1 +1.3.6.1.2.1.2.2.1.7.1078855934|2|1 +1.3.6.1.2.1.2.2.1.7.1078855935|2|1 +1.3.6.1.2.1.2.2.1.7.1078856446|2|1 +1.3.6.1.2.1.2.2.1.7.1078856447|2|1 +1.3.6.1.2.1.2.2.1.7.1078856958|2|1 +1.3.6.1.2.1.2.2.1.7.1078856959|2|1 +1.3.6.1.2.1.2.2.1.7.1078857470|2|1 +1.3.6.1.2.1.2.2.1.7.1078857471|2|1 +1.3.6.1.2.1.2.2.1.7.1078857982|2|1 +1.3.6.1.2.1.2.2.1.7.1078857983|2|1 +1.3.6.1.2.1.2.2.1.7.1078858494|2|1 +1.3.6.1.2.1.2.2.1.7.1078858495|2|1 +1.3.6.1.2.1.2.2.1.7.1078859006|2|1 +1.3.6.1.2.1.2.2.1.7.1078859007|2|1 +1.3.6.1.2.1.2.2.1.7.1078859518|2|1 +1.3.6.1.2.1.2.2.1.7.1078859519|2|1 +1.3.6.1.2.1.2.2.1.7.1078860030|2|1 +1.3.6.1.2.1.2.2.1.7.1078860031|2|1 +1.3.6.1.2.1.2.2.1.7.1078860542|2|1 +1.3.6.1.2.1.2.2.1.7.1078860543|2|1 +1.3.6.1.2.1.2.2.1.7.1078861054|2|1 +1.3.6.1.2.1.2.2.1.7.1078861055|2|1 +1.3.6.1.2.1.2.2.1.7.1078861566|2|1 +1.3.6.1.2.1.2.2.1.7.1078861567|2|1 +1.3.6.1.2.1.2.2.1.7.1078862078|2|1 +1.3.6.1.2.1.2.2.1.7.1078862079|2|1 +1.3.6.1.2.1.2.2.1.7.1078862590|2|1 +1.3.6.1.2.1.2.2.1.7.1078862591|2|1 +1.3.6.1.2.1.2.2.1.7.1078863102|2|1 +1.3.6.1.2.1.2.2.1.7.1078863103|2|1 +1.3.6.1.2.1.2.2.1.7.1078863614|2|1 +1.3.6.1.2.1.2.2.1.7.1078863615|2|1 +1.3.6.1.2.1.2.2.1.7.1078864126|2|1 +1.3.6.1.2.1.2.2.1.7.1078864127|2|1 +1.3.6.1.2.1.2.2.1.7.1078864638|2|1 +1.3.6.1.2.1.2.2.1.7.1078864639|2|1 +1.3.6.1.2.1.2.2.1.7.1078865150|2|1 +1.3.6.1.2.1.2.2.1.7.1078865151|2|1 +1.3.6.1.2.1.2.2.1.7.1078865662|2|1 +1.3.6.1.2.1.2.2.1.7.1078865663|2|1 +1.3.6.1.2.1.2.2.1.7.1078866174|2|1 +1.3.6.1.2.1.2.2.1.7.1078866175|2|1 +1.3.6.1.2.1.2.2.1.7.1078866686|2|1 +1.3.6.1.2.1.2.2.1.7.1078866687|2|1 +1.3.6.1.2.1.2.2.1.7.1078867198|2|1 +1.3.6.1.2.1.2.2.1.7.1078867199|2|1 +1.3.6.1.2.1.2.2.1.7.1078867710|2|1 +1.3.6.1.2.1.2.2.1.7.1078867711|2|1 +1.3.6.1.2.1.2.2.1.7.1078868222|2|1 +1.3.6.1.2.1.2.2.1.7.1078868223|2|1 +1.3.6.1.2.1.2.2.1.7.1078868734|2|1 +1.3.6.1.2.1.2.2.1.7.1078868735|2|1 +1.3.6.1.2.1.2.2.1.7.1078869246|2|1 +1.3.6.1.2.1.2.2.1.7.1078869247|2|1 +1.3.6.1.2.1.2.2.1.7.1078869758|2|1 +1.3.6.1.2.1.2.2.1.7.1078869759|2|1 +1.3.6.1.2.1.2.2.1.7.1078870270|2|1 +1.3.6.1.2.1.2.2.1.7.1078870271|2|1 +1.3.6.1.2.1.2.2.1.7.1078870782|2|1 +1.3.6.1.2.1.2.2.1.7.1078870783|2|1 +1.3.6.1.2.1.2.2.1.7.1078871294|2|1 +1.3.6.1.2.1.2.2.1.7.1078871295|2|1 +1.3.6.1.2.1.2.2.1.7.1078871806|2|1 +1.3.6.1.2.1.2.2.1.7.1078871807|2|1 +1.3.6.1.2.1.2.2.1.8.20971520|2|1 +1.3.6.1.2.1.2.2.1.8.20972032|2|1 +1.3.6.1.2.1.2.2.1.8.20972544|2|1 +1.3.6.1.2.1.2.2.1.8.100663360|2|1 +1.3.6.1.2.1.2.2.1.8.100664384|2|2 +1.3.6.1.2.1.2.2.1.8.100665408|2|2 +1.3.6.1.2.1.2.2.1.8.104857600|2|1 +1.3.6.1.2.1.2.2.1.8.104988672|2|2 +1.3.6.1.2.1.2.2.1.8.105119744|2|2 +1.3.6.1.2.1.2.2.1.8.105250816|2|2 +1.3.6.1.2.1.2.2.1.8.105381888|2|2 +1.3.6.1.2.1.2.2.1.8.105512960|2|2 +1.3.6.1.2.1.2.2.1.8.105644032|2|2 +1.3.6.1.2.1.2.2.1.8.105775104|2|2 +1.3.6.1.2.1.2.2.1.8.105906176|2|2 +1.3.6.1.2.1.2.2.1.8.106037248|2|2 +1.3.6.1.2.1.2.2.1.8.106168320|2|2 +1.3.6.1.2.1.2.2.1.8.106299392|2|2 +1.3.6.1.2.1.2.2.1.8.106430464|2|2 +1.3.6.1.2.1.2.2.1.8.106561536|2|2 +1.3.6.1.2.1.2.2.1.8.106692608|2|2 +1.3.6.1.2.1.2.2.1.8.106823680|2|2 +1.3.6.1.2.1.2.2.1.8.113246272|2|1 +1.3.6.1.2.1.2.2.1.8.113247296|2|2 +1.3.6.1.2.1.2.2.1.8.113248320|2|2 +1.3.6.1.2.1.2.2.1.8.115343360|2|1 +1.3.6.1.2.1.2.2.1.8.115343361|2|1 +1.3.6.1.2.1.2.2.1.8.115343362|2|2 +1.3.6.1.2.1.2.2.1.8.115343363|2|2 +1.3.6.1.2.1.2.2.1.8.115343364|2|2 +1.3.6.1.2.1.2.2.1.8.115343365|2|2 +1.3.6.1.2.1.2.2.1.8.127926272|2|1 +1.3.6.1.2.1.2.2.1.8.128057344|2|2 +1.3.6.1.2.1.2.2.1.8.128188416|2|2 +1.3.6.1.2.1.2.2.1.8.128319488|2|2 +1.3.6.1.2.1.2.2.1.8.128450560|2|2 +1.3.6.1.2.1.2.2.1.8.128581632|2|2 +1.3.6.1.2.1.2.2.1.8.128712704|2|2 +1.3.6.1.2.1.2.2.1.8.128843776|2|2 +1.3.6.1.2.1.2.2.1.8.128974848|2|2 +1.3.6.1.2.1.2.2.1.8.129105920|2|2 +1.3.6.1.2.1.2.2.1.8.129236992|2|2 +1.3.6.1.2.1.2.2.1.8.129368064|2|2 +1.3.6.1.2.1.2.2.1.8.129499136|2|2 +1.3.6.1.2.1.2.2.1.8.129630208|2|2 +1.3.6.1.2.1.2.2.1.8.129761280|2|2 +1.3.6.1.2.1.2.2.1.8.129892352|2|2 +1.3.6.1.2.1.2.2.1.8.130023424|2|1 +1.3.6.1.2.1.2.2.1.8.130024448|2|2 +1.3.6.1.2.1.2.2.1.8.130025472|2|2 +1.3.6.1.2.1.2.2.1.8.205520896|2|2 +1.3.6.1.2.1.2.2.1.8.205651968|2|2 +1.3.6.1.2.1.2.2.1.8.205783040|2|2 +1.3.6.1.2.1.2.2.1.8.205914112|2|2 +1.3.6.1.2.1.2.2.1.8.206045184|2|2 +1.3.6.1.2.1.2.2.1.8.206176256|2|2 +1.3.6.1.2.1.2.2.1.8.206307328|2|2 +1.3.6.1.2.1.2.2.1.8.206438400|2|2 +1.3.6.1.2.1.2.2.1.8.206569472|2|2 +1.3.6.1.2.1.2.2.1.8.206700544|2|2 +1.3.6.1.2.1.2.2.1.8.206831616|2|2 +1.3.6.1.2.1.2.2.1.8.206962688|2|2 +1.3.6.1.2.1.2.2.1.8.207093760|2|2 +1.3.6.1.2.1.2.2.1.8.207224832|2|2 +1.3.6.1.2.1.2.2.1.8.207355904|2|2 +1.3.6.1.2.1.2.2.1.8.207486976|2|2 +1.3.6.1.2.1.2.2.1.8.228589568|2|2 +1.3.6.1.2.1.2.2.1.8.228720640|2|2 +1.3.6.1.2.1.2.2.1.8.228851712|2|2 +1.3.6.1.2.1.2.2.1.8.228982784|2|2 +1.3.6.1.2.1.2.2.1.8.229113856|2|2 +1.3.6.1.2.1.2.2.1.8.229244928|2|2 +1.3.6.1.2.1.2.2.1.8.229376000|2|2 +1.3.6.1.2.1.2.2.1.8.229507072|2|2 +1.3.6.1.2.1.2.2.1.8.229638144|2|2 +1.3.6.1.2.1.2.2.1.8.229769216|2|2 +1.3.6.1.2.1.2.2.1.8.229900288|2|2 +1.3.6.1.2.1.2.2.1.8.230031360|2|2 +1.3.6.1.2.1.2.2.1.8.230162432|2|2 +1.3.6.1.2.1.2.2.1.8.230293504|2|2 +1.3.6.1.2.1.2.2.1.8.230424576|2|2 +1.3.6.1.2.1.2.2.1.8.230555648|2|2 +1.3.6.1.2.1.2.2.1.8.306184192|2|2 +1.3.6.1.2.1.2.2.1.8.306315264|2|2 +1.3.6.1.2.1.2.2.1.8.306446336|2|2 +1.3.6.1.2.1.2.2.1.8.306577408|2|2 +1.3.6.1.2.1.2.2.1.8.306708480|2|2 +1.3.6.1.2.1.2.2.1.8.306839552|2|2 +1.3.6.1.2.1.2.2.1.8.306970624|2|2 +1.3.6.1.2.1.2.2.1.8.307101696|2|2 +1.3.6.1.2.1.2.2.1.8.307232768|2|2 +1.3.6.1.2.1.2.2.1.8.307363840|2|2 +1.3.6.1.2.1.2.2.1.8.307494912|2|2 +1.3.6.1.2.1.2.2.1.8.307625984|2|2 +1.3.6.1.2.1.2.2.1.8.307757056|2|2 +1.3.6.1.2.1.2.2.1.8.307888128|2|2 +1.3.6.1.2.1.2.2.1.8.308019200|2|2 +1.3.6.1.2.1.2.2.1.8.308150272|2|2 +1.3.6.1.2.1.2.2.1.8.329252864|2|2 +1.3.6.1.2.1.2.2.1.8.329383936|2|2 +1.3.6.1.2.1.2.2.1.8.329515008|2|2 +1.3.6.1.2.1.2.2.1.8.329646080|2|2 +1.3.6.1.2.1.2.2.1.8.329777152|2|2 +1.3.6.1.2.1.2.2.1.8.329908224|2|2 +1.3.6.1.2.1.2.2.1.8.330039296|2|2 +1.3.6.1.2.1.2.2.1.8.330170368|2|2 +1.3.6.1.2.1.2.2.1.8.330301440|2|2 +1.3.6.1.2.1.2.2.1.8.330432512|2|2 +1.3.6.1.2.1.2.2.1.8.330563584|2|2 +1.3.6.1.2.1.2.2.1.8.330694656|2|2 +1.3.6.1.2.1.2.2.1.8.330825728|2|2 +1.3.6.1.2.1.2.2.1.8.330956800|2|2 +1.3.6.1.2.1.2.2.1.8.331087872|2|2 +1.3.6.1.2.1.2.2.1.8.331218944|2|2 +1.3.6.1.2.1.2.2.1.8.1077936128|2|1 +1.3.6.1.2.1.2.2.1.8.1077936640|2|1 +1.3.6.1.2.1.2.2.1.8.1077937152|2|2 +1.3.6.1.2.1.2.2.1.8.1077937664|2|2 +1.3.6.1.2.1.2.2.1.8.1077938176|2|2 +1.3.6.1.2.1.2.2.1.8.1077938688|2|2 +1.3.6.1.2.1.2.2.1.8.1077939200|2|2 +1.3.6.1.2.1.2.2.1.8.1077939712|2|2 +1.3.6.1.2.1.2.2.1.8.1077940224|2|2 +1.3.6.1.2.1.2.2.1.8.1077940736|2|2 +1.3.6.1.2.1.2.2.1.8.1077941248|2|2 +1.3.6.1.2.1.2.2.1.8.1077941760|2|2 +1.3.6.1.2.1.2.2.1.8.1077942272|2|2 +1.3.6.1.2.1.2.2.1.8.1077942784|2|2 +1.3.6.1.2.1.2.2.1.8.1077943296|2|2 +1.3.6.1.2.1.2.2.1.8.1077943808|2|2 +1.3.6.1.2.1.2.2.1.8.1077944320|2|2 +1.3.6.1.2.1.2.2.1.8.1077944832|2|2 +1.3.6.1.2.1.2.2.1.8.1077945344|2|2 +1.3.6.1.2.1.2.2.1.8.1077945856|2|2 +1.3.6.1.2.1.2.2.1.8.1077946368|2|2 +1.3.6.1.2.1.2.2.1.8.1077946880|2|2 +1.3.6.1.2.1.2.2.1.8.1077947392|2|2 +1.3.6.1.2.1.2.2.1.8.1077947904|2|2 +1.3.6.1.2.1.2.2.1.8.1077948416|2|2 +1.3.6.1.2.1.2.2.1.8.1077948928|2|2 +1.3.6.1.2.1.2.2.1.8.1077949440|2|2 +1.3.6.1.2.1.2.2.1.8.1077949952|2|2 +1.3.6.1.2.1.2.2.1.8.1077950464|2|2 +1.3.6.1.2.1.2.2.1.8.1077950976|2|2 +1.3.6.1.2.1.2.2.1.8.1077951488|2|2 +1.3.6.1.2.1.2.2.1.8.1077952000|2|2 +1.3.6.1.2.1.2.2.1.8.1077952512|2|2 +1.3.6.1.2.1.2.2.1.8.1077953024|2|2 +1.3.6.1.2.1.2.2.1.8.1077953536|2|2 +1.3.6.1.2.1.2.2.1.8.1077954048|2|2 +1.3.6.1.2.1.2.2.1.8.1078198272|2|1 +1.3.6.1.2.1.2.2.1.8.1078198784|2|1 +1.3.6.1.2.1.2.2.1.8.1078199296|2|2 +1.3.6.1.2.1.2.2.1.8.1078199808|2|2 +1.3.6.1.2.1.2.2.1.8.1078200320|2|2 +1.3.6.1.2.1.2.2.1.8.1078200832|2|2 +1.3.6.1.2.1.2.2.1.8.1078201344|2|2 +1.3.6.1.2.1.2.2.1.8.1078201856|2|2 +1.3.6.1.2.1.2.2.1.8.1078202368|2|2 +1.3.6.1.2.1.2.2.1.8.1078202880|2|2 +1.3.6.1.2.1.2.2.1.8.1078203392|2|2 +1.3.6.1.2.1.2.2.1.8.1078203904|2|2 +1.3.6.1.2.1.2.2.1.8.1078204416|2|2 +1.3.6.1.2.1.2.2.1.8.1078204928|2|2 +1.3.6.1.2.1.2.2.1.8.1078205440|2|2 +1.3.6.1.2.1.2.2.1.8.1078205952|2|2 +1.3.6.1.2.1.2.2.1.8.1078206464|2|2 +1.3.6.1.2.1.2.2.1.8.1078206976|2|2 +1.3.6.1.2.1.2.2.1.8.1078207488|2|2 +1.3.6.1.2.1.2.2.1.8.1078208000|2|2 +1.3.6.1.2.1.2.2.1.8.1078208512|2|2 +1.3.6.1.2.1.2.2.1.8.1078209024|2|2 +1.3.6.1.2.1.2.2.1.8.1078209536|2|2 +1.3.6.1.2.1.2.2.1.8.1078210048|2|2 +1.3.6.1.2.1.2.2.1.8.1078210560|2|2 +1.3.6.1.2.1.2.2.1.8.1078211072|2|2 +1.3.6.1.2.1.2.2.1.8.1078211584|2|2 +1.3.6.1.2.1.2.2.1.8.1078212096|2|2 +1.3.6.1.2.1.2.2.1.8.1078212608|2|2 +1.3.6.1.2.1.2.2.1.8.1078213120|2|2 +1.3.6.1.2.1.2.2.1.8.1078213632|2|2 +1.3.6.1.2.1.2.2.1.8.1078214144|2|2 +1.3.6.1.2.1.2.2.1.8.1078214656|2|2 +1.3.6.1.2.1.2.2.1.8.1078215168|2|2 +1.3.6.1.2.1.2.2.1.8.1078215680|2|2 +1.3.6.1.2.1.2.2.1.8.1078216192|2|2 +1.3.6.1.2.1.2.2.1.8.1078722560|2|1 +1.3.6.1.2.1.2.2.1.8.1078723072|2|1 +1.3.6.1.2.1.2.2.1.8.1078723584|2|2 +1.3.6.1.2.1.2.2.1.8.1078724096|2|2 +1.3.6.1.2.1.2.2.1.8.1078724608|2|2 +1.3.6.1.2.1.2.2.1.8.1078725120|2|2 +1.3.6.1.2.1.2.2.1.8.1078725632|2|2 +1.3.6.1.2.1.2.2.1.8.1078726144|2|2 +1.3.6.1.2.1.2.2.1.8.1078726656|2|2 +1.3.6.1.2.1.2.2.1.8.1078727168|2|2 +1.3.6.1.2.1.2.2.1.8.1078727680|2|2 +1.3.6.1.2.1.2.2.1.8.1078728192|2|2 +1.3.6.1.2.1.2.2.1.8.1078728704|2|2 +1.3.6.1.2.1.2.2.1.8.1078729216|2|2 +1.3.6.1.2.1.2.2.1.8.1078729728|2|2 +1.3.6.1.2.1.2.2.1.8.1078730240|2|2 +1.3.6.1.2.1.2.2.1.8.1078730752|2|2 +1.3.6.1.2.1.2.2.1.8.1078731264|2|2 +1.3.6.1.2.1.2.2.1.8.1078731776|2|2 +1.3.6.1.2.1.2.2.1.8.1078732288|2|2 +1.3.6.1.2.1.2.2.1.8.1078732800|2|2 +1.3.6.1.2.1.2.2.1.8.1078733312|2|2 +1.3.6.1.2.1.2.2.1.8.1078733824|2|2 +1.3.6.1.2.1.2.2.1.8.1078734336|2|2 +1.3.6.1.2.1.2.2.1.8.1078734848|2|2 +1.3.6.1.2.1.2.2.1.8.1078735360|2|2 +1.3.6.1.2.1.2.2.1.8.1078735872|2|2 +1.3.6.1.2.1.2.2.1.8.1078736384|2|2 +1.3.6.1.2.1.2.2.1.8.1078736896|2|2 +1.3.6.1.2.1.2.2.1.8.1078737408|2|2 +1.3.6.1.2.1.2.2.1.8.1078737920|2|2 +1.3.6.1.2.1.2.2.1.8.1078738432|2|2 +1.3.6.1.2.1.2.2.1.8.1078738944|2|2 +1.3.6.1.2.1.2.2.1.8.1078739456|2|2 +1.3.6.1.2.1.2.2.1.8.1078739968|2|2 +1.3.6.1.2.1.2.2.1.8.1078740480|2|2 +1.3.6.1.2.1.2.2.1.8.1078853886|2|1 +1.3.6.1.2.1.2.2.1.8.1078853887|2|1 +1.3.6.1.2.1.2.2.1.8.1078854398|2|1 +1.3.6.1.2.1.2.2.1.8.1078854399|2|1 +1.3.6.1.2.1.2.2.1.8.1078854910|2|2 +1.3.6.1.2.1.2.2.1.8.1078854911|2|2 +1.3.6.1.2.1.2.2.1.8.1078855422|2|2 +1.3.6.1.2.1.2.2.1.8.1078855423|2|2 +1.3.6.1.2.1.2.2.1.8.1078855934|2|2 +1.3.6.1.2.1.2.2.1.8.1078855935|2|2 +1.3.6.1.2.1.2.2.1.8.1078856446|2|2 +1.3.6.1.2.1.2.2.1.8.1078856447|2|2 +1.3.6.1.2.1.2.2.1.8.1078856958|2|2 +1.3.6.1.2.1.2.2.1.8.1078856959|2|2 +1.3.6.1.2.1.2.2.1.8.1078857470|2|2 +1.3.6.1.2.1.2.2.1.8.1078857471|2|2 +1.3.6.1.2.1.2.2.1.8.1078857982|2|2 +1.3.6.1.2.1.2.2.1.8.1078857983|2|2 +1.3.6.1.2.1.2.2.1.8.1078858494|2|2 +1.3.6.1.2.1.2.2.1.8.1078858495|2|2 +1.3.6.1.2.1.2.2.1.8.1078859006|2|2 +1.3.6.1.2.1.2.2.1.8.1078859007|2|2 +1.3.6.1.2.1.2.2.1.8.1078859518|2|2 +1.3.6.1.2.1.2.2.1.8.1078859519|2|2 +1.3.6.1.2.1.2.2.1.8.1078860030|2|2 +1.3.6.1.2.1.2.2.1.8.1078860031|2|2 +1.3.6.1.2.1.2.2.1.8.1078860542|2|2 +1.3.6.1.2.1.2.2.1.8.1078860543|2|2 +1.3.6.1.2.1.2.2.1.8.1078861054|2|2 +1.3.6.1.2.1.2.2.1.8.1078861055|2|2 +1.3.6.1.2.1.2.2.1.8.1078861566|2|2 +1.3.6.1.2.1.2.2.1.8.1078861567|2|2 +1.3.6.1.2.1.2.2.1.8.1078862078|2|2 +1.3.6.1.2.1.2.2.1.8.1078862079|2|2 +1.3.6.1.2.1.2.2.1.8.1078862590|2|2 +1.3.6.1.2.1.2.2.1.8.1078862591|2|2 +1.3.6.1.2.1.2.2.1.8.1078863102|2|2 +1.3.6.1.2.1.2.2.1.8.1078863103|2|2 +1.3.6.1.2.1.2.2.1.8.1078863614|2|2 +1.3.6.1.2.1.2.2.1.8.1078863615|2|2 +1.3.6.1.2.1.2.2.1.8.1078864126|2|2 +1.3.6.1.2.1.2.2.1.8.1078864127|2|2 +1.3.6.1.2.1.2.2.1.8.1078864638|2|2 +1.3.6.1.2.1.2.2.1.8.1078864639|2|2 +1.3.6.1.2.1.2.2.1.8.1078865150|2|2 +1.3.6.1.2.1.2.2.1.8.1078865151|2|2 +1.3.6.1.2.1.2.2.1.8.1078865662|2|2 +1.3.6.1.2.1.2.2.1.8.1078865663|2|2 +1.3.6.1.2.1.2.2.1.8.1078866174|2|2 +1.3.6.1.2.1.2.2.1.8.1078866175|2|2 +1.3.6.1.2.1.2.2.1.8.1078866686|2|2 +1.3.6.1.2.1.2.2.1.8.1078866687|2|2 +1.3.6.1.2.1.2.2.1.8.1078867198|2|2 +1.3.6.1.2.1.2.2.1.8.1078867199|2|2 +1.3.6.1.2.1.2.2.1.8.1078867710|2|2 +1.3.6.1.2.1.2.2.1.8.1078867711|2|2 +1.3.6.1.2.1.2.2.1.8.1078868222|2|2 +1.3.6.1.2.1.2.2.1.8.1078868223|2|2 +1.3.6.1.2.1.2.2.1.8.1078868734|2|2 +1.3.6.1.2.1.2.2.1.8.1078868735|2|2 +1.3.6.1.2.1.2.2.1.8.1078869246|2|2 +1.3.6.1.2.1.2.2.1.8.1078869247|2|2 +1.3.6.1.2.1.2.2.1.8.1078869758|2|2 +1.3.6.1.2.1.2.2.1.8.1078869759|2|2 +1.3.6.1.2.1.2.2.1.8.1078870270|2|2 +1.3.6.1.2.1.2.2.1.8.1078870271|2|2 +1.3.6.1.2.1.2.2.1.8.1078870782|2|2 +1.3.6.1.2.1.2.2.1.8.1078870783|2|2 +1.3.6.1.2.1.2.2.1.8.1078871294|2|2 +1.3.6.1.2.1.2.2.1.8.1078871295|2|2 +1.3.6.1.2.1.2.2.1.8.1078871806|2|2 +1.3.6.1.2.1.2.2.1.8.1078871807|2|2 +1.3.6.1.2.1.2.2.1.9.20971520|67|0 +1.3.6.1.2.1.2.2.1.9.20972032|67|0 +1.3.6.1.2.1.2.2.1.9.20972544|67|0 +1.3.6.1.2.1.2.2.1.9.100663360|67|58241398 +1.3.6.1.2.1.2.2.1.9.100664384|67|51546553 +1.3.6.1.2.1.2.2.1.9.100665408|67|51152562 +1.3.6.1.2.1.2.2.1.9.104857600|67|58239398 +1.3.6.1.2.1.2.2.1.9.104988672|67|24771 +1.3.6.1.2.1.2.2.1.9.105119744|67|0 +1.3.6.1.2.1.2.2.1.9.105250816|67|0 +1.3.6.1.2.1.2.2.1.9.105381888|67|0 +1.3.6.1.2.1.2.2.1.9.105512960|67|0 +1.3.6.1.2.1.2.2.1.9.105644032|67|0 +1.3.6.1.2.1.2.2.1.9.105775104|67|0 +1.3.6.1.2.1.2.2.1.9.105906176|67|0 +1.3.6.1.2.1.2.2.1.9.106037248|67|0 +1.3.6.1.2.1.2.2.1.9.106168320|67|0 +1.3.6.1.2.1.2.2.1.9.106299392|67|0 +1.3.6.1.2.1.2.2.1.9.106430464|67|0 +1.3.6.1.2.1.2.2.1.9.106561536|67|0 +1.3.6.1.2.1.2.2.1.9.106692608|67|0 +1.3.6.1.2.1.2.2.1.9.106823680|67|0 +1.3.6.1.2.1.2.2.1.9.113246272|67|58241398 +1.3.6.1.2.1.2.2.1.9.113247296|67|51546553 +1.3.6.1.2.1.2.2.1.9.113248320|67|51152562 +1.3.6.1.2.1.2.2.1.9.115343360|67|58241398 +1.3.6.1.2.1.2.2.1.9.115343361|67|58241398 +1.3.6.1.2.1.2.2.1.9.115343362|67|51546553 +1.3.6.1.2.1.2.2.1.9.115343363|67|51546553 +1.3.6.1.2.1.2.2.1.9.115343364|67|51152562 +1.3.6.1.2.1.2.2.1.9.115343365|67|51152562 +1.3.6.1.2.1.2.2.1.9.127926272|67|58239398 +1.3.6.1.2.1.2.2.1.9.128057344|67|24771 +1.3.6.1.2.1.2.2.1.9.128188416|67|0 +1.3.6.1.2.1.2.2.1.9.128319488|67|0 +1.3.6.1.2.1.2.2.1.9.128450560|67|0 +1.3.6.1.2.1.2.2.1.9.128581632|67|0 +1.3.6.1.2.1.2.2.1.9.128712704|67|0 +1.3.6.1.2.1.2.2.1.9.128843776|67|0 +1.3.6.1.2.1.2.2.1.9.128974848|67|0 +1.3.6.1.2.1.2.2.1.9.129105920|67|0 +1.3.6.1.2.1.2.2.1.9.129236992|67|0 +1.3.6.1.2.1.2.2.1.9.129368064|67|0 +1.3.6.1.2.1.2.2.1.9.129499136|67|0 +1.3.6.1.2.1.2.2.1.9.129630208|67|0 +1.3.6.1.2.1.2.2.1.9.129761280|67|0 +1.3.6.1.2.1.2.2.1.9.129892352|67|0 +1.3.6.1.2.1.2.2.1.9.130023424|67|58240398 +1.3.6.1.2.1.2.2.1.9.130024448|67|51546552 +1.3.6.1.2.1.2.2.1.9.130025472|67|51907544 +1.3.6.1.2.1.2.2.1.9.205520896|67|24769 +1.3.6.1.2.1.2.2.1.9.205651968|67|0 +1.3.6.1.2.1.2.2.1.9.205783040|67|0 +1.3.6.1.2.1.2.2.1.9.205914112|67|0 +1.3.6.1.2.1.2.2.1.9.206045184|67|0 +1.3.6.1.2.1.2.2.1.9.206176256|67|0 +1.3.6.1.2.1.2.2.1.9.206307328|67|0 +1.3.6.1.2.1.2.2.1.9.206438400|67|0 +1.3.6.1.2.1.2.2.1.9.206569472|67|0 +1.3.6.1.2.1.2.2.1.9.206700544|67|0 +1.3.6.1.2.1.2.2.1.9.206831616|67|0 +1.3.6.1.2.1.2.2.1.9.206962688|67|0 +1.3.6.1.2.1.2.2.1.9.207093760|67|0 +1.3.6.1.2.1.2.2.1.9.207224832|67|0 +1.3.6.1.2.1.2.2.1.9.207355904|67|0 +1.3.6.1.2.1.2.2.1.9.207486976|67|0 +1.3.6.1.2.1.2.2.1.9.228589568|67|24769 +1.3.6.1.2.1.2.2.1.9.228720640|67|0 +1.3.6.1.2.1.2.2.1.9.228851712|67|0 +1.3.6.1.2.1.2.2.1.9.228982784|67|0 +1.3.6.1.2.1.2.2.1.9.229113856|67|0 +1.3.6.1.2.1.2.2.1.9.229244928|67|0 +1.3.6.1.2.1.2.2.1.9.229376000|67|0 +1.3.6.1.2.1.2.2.1.9.229507072|67|0 +1.3.6.1.2.1.2.2.1.9.229638144|67|0 +1.3.6.1.2.1.2.2.1.9.229769216|67|0 +1.3.6.1.2.1.2.2.1.9.229900288|67|0 +1.3.6.1.2.1.2.2.1.9.230031360|67|0 +1.3.6.1.2.1.2.2.1.9.230162432|67|0 +1.3.6.1.2.1.2.2.1.9.230293504|67|0 +1.3.6.1.2.1.2.2.1.9.230424576|67|0 +1.3.6.1.2.1.2.2.1.9.230555648|67|0 +1.3.6.1.2.1.2.2.1.9.306184192|67|0 +1.3.6.1.2.1.2.2.1.9.306315264|67|0 +1.3.6.1.2.1.2.2.1.9.306446336|67|0 +1.3.6.1.2.1.2.2.1.9.306577408|67|0 +1.3.6.1.2.1.2.2.1.9.306708480|67|0 +1.3.6.1.2.1.2.2.1.9.306839552|67|0 +1.3.6.1.2.1.2.2.1.9.306970624|67|0 +1.3.6.1.2.1.2.2.1.9.307101696|67|0 +1.3.6.1.2.1.2.2.1.9.307232768|67|0 +1.3.6.1.2.1.2.2.1.9.307363840|67|0 +1.3.6.1.2.1.2.2.1.9.307494912|67|0 +1.3.6.1.2.1.2.2.1.9.307625984|67|0 +1.3.6.1.2.1.2.2.1.9.307757056|67|0 +1.3.6.1.2.1.2.2.1.9.307888128|67|0 +1.3.6.1.2.1.2.2.1.9.308019200|67|0 +1.3.6.1.2.1.2.2.1.9.308150272|67|0 +1.3.6.1.2.1.2.2.1.9.329252864|67|0 +1.3.6.1.2.1.2.2.1.9.329383936|67|0 +1.3.6.1.2.1.2.2.1.9.329515008|67|0 +1.3.6.1.2.1.2.2.1.9.329646080|67|0 +1.3.6.1.2.1.2.2.1.9.329777152|67|0 +1.3.6.1.2.1.2.2.1.9.329908224|67|0 +1.3.6.1.2.1.2.2.1.9.330039296|67|0 +1.3.6.1.2.1.2.2.1.9.330170368|67|0 +1.3.6.1.2.1.2.2.1.9.330301440|67|0 +1.3.6.1.2.1.2.2.1.9.330432512|67|0 +1.3.6.1.2.1.2.2.1.9.330563584|67|0 +1.3.6.1.2.1.2.2.1.9.330694656|67|0 +1.3.6.1.2.1.2.2.1.9.330825728|67|0 +1.3.6.1.2.1.2.2.1.9.330956800|67|0 +1.3.6.1.2.1.2.2.1.9.331087872|67|0 +1.3.6.1.2.1.2.2.1.9.331218944|67|0 +1.3.6.1.2.1.2.2.1.9.1077936128|67|24225 +1.3.6.1.2.1.2.2.1.9.1077936640|67|24445 +1.3.6.1.2.1.2.2.1.9.1077937152|67|23566 +1.3.6.1.2.1.2.2.1.9.1077937664|67|23566 +1.3.6.1.2.1.2.2.1.9.1077938176|67|23567 +1.3.6.1.2.1.2.2.1.9.1077938688|67|23568 +1.3.6.1.2.1.2.2.1.9.1077939200|67|23569 +1.3.6.1.2.1.2.2.1.9.1077939712|67|23569 +1.3.6.1.2.1.2.2.1.9.1077940224|67|23570 +1.3.6.1.2.1.2.2.1.9.1077940736|67|23571 +1.3.6.1.2.1.2.2.1.9.1077941248|67|23571 +1.3.6.1.2.1.2.2.1.9.1077941760|67|23572 +1.3.6.1.2.1.2.2.1.9.1077942272|67|23573 +1.3.6.1.2.1.2.2.1.9.1077942784|67|23573 +1.3.6.1.2.1.2.2.1.9.1077943296|67|23574 +1.3.6.1.2.1.2.2.1.9.1077943808|67|23575 +1.3.6.1.2.1.2.2.1.9.1077944320|67|23576 +1.3.6.1.2.1.2.2.1.9.1077944832|67|23577 +1.3.6.1.2.1.2.2.1.9.1077945344|67|23578 +1.3.6.1.2.1.2.2.1.9.1077945856|67|23578 +1.3.6.1.2.1.2.2.1.9.1077946368|67|23579 +1.3.6.1.2.1.2.2.1.9.1077946880|67|23580 +1.3.6.1.2.1.2.2.1.9.1077947392|67|23581 +1.3.6.1.2.1.2.2.1.9.1077947904|67|23581 +1.3.6.1.2.1.2.2.1.9.1077948416|67|23582 +1.3.6.1.2.1.2.2.1.9.1077948928|67|23583 +1.3.6.1.2.1.2.2.1.9.1077949440|67|23583 +1.3.6.1.2.1.2.2.1.9.1077949952|67|23584 +1.3.6.1.2.1.2.2.1.9.1077950464|67|23585 +1.3.6.1.2.1.2.2.1.9.1077950976|67|23585 +1.3.6.1.2.1.2.2.1.9.1077951488|67|23586 +1.3.6.1.2.1.2.2.1.9.1077952000|67|23587 +1.3.6.1.2.1.2.2.1.9.1077952512|67|23587 +1.3.6.1.2.1.2.2.1.9.1077953024|67|23588 +1.3.6.1.2.1.2.2.1.9.1077953536|67|23589 +1.3.6.1.2.1.2.2.1.9.1077954048|67|23590 +1.3.6.1.2.1.2.2.1.9.1078198272|67|0 +1.3.6.1.2.1.2.2.1.9.1078198784|67|0 +1.3.6.1.2.1.2.2.1.9.1078199296|67|0 +1.3.6.1.2.1.2.2.1.9.1078199808|67|0 +1.3.6.1.2.1.2.2.1.9.1078200320|67|0 +1.3.6.1.2.1.2.2.1.9.1078200832|67|0 +1.3.6.1.2.1.2.2.1.9.1078201344|67|0 +1.3.6.1.2.1.2.2.1.9.1078201856|67|0 +1.3.6.1.2.1.2.2.1.9.1078202368|67|0 +1.3.6.1.2.1.2.2.1.9.1078202880|67|0 +1.3.6.1.2.1.2.2.1.9.1078203392|67|0 +1.3.6.1.2.1.2.2.1.9.1078203904|67|0 +1.3.6.1.2.1.2.2.1.9.1078204416|67|0 +1.3.6.1.2.1.2.2.1.9.1078204928|67|0 +1.3.6.1.2.1.2.2.1.9.1078205440|67|0 +1.3.6.1.2.1.2.2.1.9.1078205952|67|0 +1.3.6.1.2.1.2.2.1.9.1078206464|67|0 +1.3.6.1.2.1.2.2.1.9.1078206976|67|0 +1.3.6.1.2.1.2.2.1.9.1078207488|67|0 +1.3.6.1.2.1.2.2.1.9.1078208000|67|0 +1.3.6.1.2.1.2.2.1.9.1078208512|67|0 +1.3.6.1.2.1.2.2.1.9.1078209024|67|0 +1.3.6.1.2.1.2.2.1.9.1078209536|67|0 +1.3.6.1.2.1.2.2.1.9.1078210048|67|0 +1.3.6.1.2.1.2.2.1.9.1078210560|67|0 +1.3.6.1.2.1.2.2.1.9.1078211072|67|0 +1.3.6.1.2.1.2.2.1.9.1078211584|67|0 +1.3.6.1.2.1.2.2.1.9.1078212096|67|0 +1.3.6.1.2.1.2.2.1.9.1078212608|67|0 +1.3.6.1.2.1.2.2.1.9.1078213120|67|0 +1.3.6.1.2.1.2.2.1.9.1078213632|67|0 +1.3.6.1.2.1.2.2.1.9.1078214144|67|0 +1.3.6.1.2.1.2.2.1.9.1078214656|67|0 +1.3.6.1.2.1.2.2.1.9.1078215168|67|0 +1.3.6.1.2.1.2.2.1.9.1078215680|67|0 +1.3.6.1.2.1.2.2.1.9.1078216192|67|0 +1.3.6.1.2.1.2.2.1.9.1078722560|67|24225 +1.3.6.1.2.1.2.2.1.9.1078723072|67|24445 +1.3.6.1.2.1.2.2.1.9.1078723584|67|23566 +1.3.6.1.2.1.2.2.1.9.1078724096|67|23566 +1.3.6.1.2.1.2.2.1.9.1078724608|67|23567 +1.3.6.1.2.1.2.2.1.9.1078725120|67|23568 +1.3.6.1.2.1.2.2.1.9.1078725632|67|23569 +1.3.6.1.2.1.2.2.1.9.1078726144|67|23569 +1.3.6.1.2.1.2.2.1.9.1078726656|67|23570 +1.3.6.1.2.1.2.2.1.9.1078727168|67|23571 +1.3.6.1.2.1.2.2.1.9.1078727680|67|23571 +1.3.6.1.2.1.2.2.1.9.1078728192|67|23572 +1.3.6.1.2.1.2.2.1.9.1078728704|67|23573 +1.3.6.1.2.1.2.2.1.9.1078729216|67|23573 +1.3.6.1.2.1.2.2.1.9.1078729728|67|23574 +1.3.6.1.2.1.2.2.1.9.1078730240|67|23575 +1.3.6.1.2.1.2.2.1.9.1078730752|67|23576 +1.3.6.1.2.1.2.2.1.9.1078731264|67|23577 +1.3.6.1.2.1.2.2.1.9.1078731776|67|23578 +1.3.6.1.2.1.2.2.1.9.1078732288|67|23578 +1.3.6.1.2.1.2.2.1.9.1078732800|67|23579 +1.3.6.1.2.1.2.2.1.9.1078733312|67|23580 +1.3.6.1.2.1.2.2.1.9.1078733824|67|23581 +1.3.6.1.2.1.2.2.1.9.1078734336|67|23581 +1.3.6.1.2.1.2.2.1.9.1078734848|67|23582 +1.3.6.1.2.1.2.2.1.9.1078735360|67|23583 +1.3.6.1.2.1.2.2.1.9.1078735872|67|23583 +1.3.6.1.2.1.2.2.1.9.1078736384|67|23584 +1.3.6.1.2.1.2.2.1.9.1078736896|67|23585 +1.3.6.1.2.1.2.2.1.9.1078737408|67|23585 +1.3.6.1.2.1.2.2.1.9.1078737920|67|23586 +1.3.6.1.2.1.2.2.1.9.1078738432|67|23587 +1.3.6.1.2.1.2.2.1.9.1078738944|67|23587 +1.3.6.1.2.1.2.2.1.9.1078739456|67|23588 +1.3.6.1.2.1.2.2.1.9.1078739968|67|23589 +1.3.6.1.2.1.2.2.1.9.1078740480|67|23590 +1.3.6.1.2.1.2.2.1.9.1078853886|67|24225 +1.3.6.1.2.1.2.2.1.9.1078853887|67|24225 +1.3.6.1.2.1.2.2.1.9.1078854398|67|24445 +1.3.6.1.2.1.2.2.1.9.1078854399|67|24445 +1.3.6.1.2.1.2.2.1.9.1078854910|67|23566 +1.3.6.1.2.1.2.2.1.9.1078854911|67|23566 +1.3.6.1.2.1.2.2.1.9.1078855422|67|23566 +1.3.6.1.2.1.2.2.1.9.1078855423|67|23566 +1.3.6.1.2.1.2.2.1.9.1078855934|67|23567 +1.3.6.1.2.1.2.2.1.9.1078855935|67|23567 +1.3.6.1.2.1.2.2.1.9.1078856446|67|23568 +1.3.6.1.2.1.2.2.1.9.1078856447|67|23568 +1.3.6.1.2.1.2.2.1.9.1078856958|67|23569 +1.3.6.1.2.1.2.2.1.9.1078856959|67|23569 +1.3.6.1.2.1.2.2.1.9.1078857470|67|23569 +1.3.6.1.2.1.2.2.1.9.1078857471|67|23569 +1.3.6.1.2.1.2.2.1.9.1078857982|67|23570 +1.3.6.1.2.1.2.2.1.9.1078857983|67|23570 +1.3.6.1.2.1.2.2.1.9.1078858494|67|23571 +1.3.6.1.2.1.2.2.1.9.1078858495|67|23571 +1.3.6.1.2.1.2.2.1.9.1078859006|67|23571 +1.3.6.1.2.1.2.2.1.9.1078859007|67|23571 +1.3.6.1.2.1.2.2.1.9.1078859518|67|23572 +1.3.6.1.2.1.2.2.1.9.1078859519|67|23572 +1.3.6.1.2.1.2.2.1.9.1078860030|67|23573 +1.3.6.1.2.1.2.2.1.9.1078860031|67|23573 +1.3.6.1.2.1.2.2.1.9.1078860542|67|23573 +1.3.6.1.2.1.2.2.1.9.1078860543|67|23573 +1.3.6.1.2.1.2.2.1.9.1078861054|67|23574 +1.3.6.1.2.1.2.2.1.9.1078861055|67|23574 +1.3.6.1.2.1.2.2.1.9.1078861566|67|23575 +1.3.6.1.2.1.2.2.1.9.1078861567|67|23575 +1.3.6.1.2.1.2.2.1.9.1078862078|67|23576 +1.3.6.1.2.1.2.2.1.9.1078862079|67|23576 +1.3.6.1.2.1.2.2.1.9.1078862590|67|23577 +1.3.6.1.2.1.2.2.1.9.1078862591|67|23577 +1.3.6.1.2.1.2.2.1.9.1078863102|67|23578 +1.3.6.1.2.1.2.2.1.9.1078863103|67|23578 +1.3.6.1.2.1.2.2.1.9.1078863614|67|23578 +1.3.6.1.2.1.2.2.1.9.1078863615|67|23578 +1.3.6.1.2.1.2.2.1.9.1078864126|67|23579 +1.3.6.1.2.1.2.2.1.9.1078864127|67|23579 +1.3.6.1.2.1.2.2.1.9.1078864638|67|23580 +1.3.6.1.2.1.2.2.1.9.1078864639|67|23580 +1.3.6.1.2.1.2.2.1.9.1078865150|67|23581 +1.3.6.1.2.1.2.2.1.9.1078865151|67|23581 +1.3.6.1.2.1.2.2.1.9.1078865662|67|23581 +1.3.6.1.2.1.2.2.1.9.1078865663|67|23581 +1.3.6.1.2.1.2.2.1.9.1078866174|67|23582 +1.3.6.1.2.1.2.2.1.9.1078866175|67|23582 +1.3.6.1.2.1.2.2.1.9.1078866686|67|23583 +1.3.6.1.2.1.2.2.1.9.1078866687|67|23583 +1.3.6.1.2.1.2.2.1.9.1078867198|67|23583 +1.3.6.1.2.1.2.2.1.9.1078867199|67|23583 +1.3.6.1.2.1.2.2.1.9.1078867710|67|23584 +1.3.6.1.2.1.2.2.1.9.1078867711|67|23584 +1.3.6.1.2.1.2.2.1.9.1078868222|67|23585 +1.3.6.1.2.1.2.2.1.9.1078868223|67|23585 +1.3.6.1.2.1.2.2.1.9.1078868734|67|23585 +1.3.6.1.2.1.2.2.1.9.1078868735|67|23585 +1.3.6.1.2.1.2.2.1.9.1078869246|67|23586 +1.3.6.1.2.1.2.2.1.9.1078869247|67|23586 +1.3.6.1.2.1.2.2.1.9.1078869758|67|23587 +1.3.6.1.2.1.2.2.1.9.1078869759|67|23587 +1.3.6.1.2.1.2.2.1.9.1078870270|67|23587 +1.3.6.1.2.1.2.2.1.9.1078870271|67|23587 +1.3.6.1.2.1.2.2.1.9.1078870782|67|23588 +1.3.6.1.2.1.2.2.1.9.1078870783|67|23588 +1.3.6.1.2.1.2.2.1.9.1078871294|67|23589 +1.3.6.1.2.1.2.2.1.9.1078871295|67|23589 +1.3.6.1.2.1.2.2.1.9.1078871806|67|23590 +1.3.6.1.2.1.2.2.1.9.1078871807|67|23590 +1.3.6.1.2.1.2.2.1.10.20971520|65|0 +1.3.6.1.2.1.2.2.1.10.20972032|65|0 +1.3.6.1.2.1.2.2.1.10.20972544|65|532 +1.3.6.1.2.1.2.2.1.10.1077936128|65|19809236 +1.3.6.1.2.1.2.2.1.10.1077936640|65|17458942 +1.3.6.1.2.1.2.2.1.10.1077937152|65|0 +1.3.6.1.2.1.2.2.1.10.1077937664|65|0 +1.3.6.1.2.1.2.2.1.10.1077938176|65|0 +1.3.6.1.2.1.2.2.1.10.1077938688|65|0 +1.3.6.1.2.1.2.2.1.10.1077939200|65|0 +1.3.6.1.2.1.2.2.1.10.1077939712|65|0 +1.3.6.1.2.1.2.2.1.10.1077940224|65|0 +1.3.6.1.2.1.2.2.1.10.1077940736|65|0 +1.3.6.1.2.1.2.2.1.10.1077941248|65|0 +1.3.6.1.2.1.2.2.1.10.1077941760|65|0 +1.3.6.1.2.1.2.2.1.10.1077942272|65|0 +1.3.6.1.2.1.2.2.1.10.1077942784|65|0 +1.3.6.1.2.1.2.2.1.10.1077943296|65|0 +1.3.6.1.2.1.2.2.1.10.1077943808|65|0 +1.3.6.1.2.1.2.2.1.10.1077944320|65|0 +1.3.6.1.2.1.2.2.1.10.1077944832|65|0 +1.3.6.1.2.1.2.2.1.10.1077945344|65|0 +1.3.6.1.2.1.2.2.1.10.1077945856|65|0 +1.3.6.1.2.1.2.2.1.10.1077946368|65|0 +1.3.6.1.2.1.2.2.1.10.1077946880|65|0 +1.3.6.1.2.1.2.2.1.10.1077947392|65|0 +1.3.6.1.2.1.2.2.1.10.1077947904|65|0 +1.3.6.1.2.1.2.2.1.10.1077948416|65|0 +1.3.6.1.2.1.2.2.1.10.1077948928|65|0 +1.3.6.1.2.1.2.2.1.10.1077949440|65|0 +1.3.6.1.2.1.2.2.1.10.1077949952|65|0 +1.3.6.1.2.1.2.2.1.10.1077950464|65|0 +1.3.6.1.2.1.2.2.1.10.1077950976|65|0 +1.3.6.1.2.1.2.2.1.10.1077951488|65|0 +1.3.6.1.2.1.2.2.1.10.1077952000|65|0 +1.3.6.1.2.1.2.2.1.10.1077952512|65|0 +1.3.6.1.2.1.2.2.1.10.1077953024|65|0 +1.3.6.1.2.1.2.2.1.10.1077953536|65|0 +1.3.6.1.2.1.2.2.1.10.1077954048|65|0 +1.3.6.1.2.1.2.2.1.10.1078198272|65|19809236 +1.3.6.1.2.1.2.2.1.10.1078198784|65|17458942 +1.3.6.1.2.1.2.2.1.10.1078199296|65|0 +1.3.6.1.2.1.2.2.1.10.1078199808|65|0 +1.3.6.1.2.1.2.2.1.10.1078200320|65|0 +1.3.6.1.2.1.2.2.1.10.1078200832|65|0 +1.3.6.1.2.1.2.2.1.10.1078201344|65|0 +1.3.6.1.2.1.2.2.1.10.1078201856|65|0 +1.3.6.1.2.1.2.2.1.10.1078202368|65|0 +1.3.6.1.2.1.2.2.1.10.1078202880|65|0 +1.3.6.1.2.1.2.2.1.10.1078203392|65|0 +1.3.6.1.2.1.2.2.1.10.1078203904|65|0 +1.3.6.1.2.1.2.2.1.10.1078204416|65|0 +1.3.6.1.2.1.2.2.1.10.1078204928|65|0 +1.3.6.1.2.1.2.2.1.10.1078205440|65|0 +1.3.6.1.2.1.2.2.1.10.1078205952|65|0 +1.3.6.1.2.1.2.2.1.10.1078206464|65|0 +1.3.6.1.2.1.2.2.1.10.1078206976|65|0 +1.3.6.1.2.1.2.2.1.10.1078207488|65|0 +1.3.6.1.2.1.2.2.1.10.1078208000|65|0 +1.3.6.1.2.1.2.2.1.10.1078208512|65|0 +1.3.6.1.2.1.2.2.1.10.1078209024|65|0 +1.3.6.1.2.1.2.2.1.10.1078209536|65|0 +1.3.6.1.2.1.2.2.1.10.1078210048|65|0 +1.3.6.1.2.1.2.2.1.10.1078210560|65|0 +1.3.6.1.2.1.2.2.1.10.1078211072|65|0 +1.3.6.1.2.1.2.2.1.10.1078211584|65|0 +1.3.6.1.2.1.2.2.1.10.1078212096|65|0 +1.3.6.1.2.1.2.2.1.10.1078212608|65|0 +1.3.6.1.2.1.2.2.1.10.1078213120|65|0 +1.3.6.1.2.1.2.2.1.10.1078213632|65|0 +1.3.6.1.2.1.2.2.1.10.1078214144|65|0 +1.3.6.1.2.1.2.2.1.10.1078214656|65|0 +1.3.6.1.2.1.2.2.1.10.1078215168|65|0 +1.3.6.1.2.1.2.2.1.10.1078215680|65|0 +1.3.6.1.2.1.2.2.1.10.1078216192|65|0 +1.3.6.1.2.1.2.2.1.11.20971520|65|0 +1.3.6.1.2.1.2.2.1.11.20972032|65|0 +1.3.6.1.2.1.2.2.1.11.20972544|65|2 +1.3.6.1.2.1.2.2.1.11.1077936128|65|87149 +1.3.6.1.2.1.2.2.1.11.1077936640|65|89563 +1.3.6.1.2.1.2.2.1.11.1077937152|65|0 +1.3.6.1.2.1.2.2.1.11.1077937664|65|0 +1.3.6.1.2.1.2.2.1.11.1077938176|65|0 +1.3.6.1.2.1.2.2.1.11.1077938688|65|0 +1.3.6.1.2.1.2.2.1.11.1077939200|65|0 +1.3.6.1.2.1.2.2.1.11.1077939712|65|0 +1.3.6.1.2.1.2.2.1.11.1077940224|65|0 +1.3.6.1.2.1.2.2.1.11.1077940736|65|0 +1.3.6.1.2.1.2.2.1.11.1077941248|65|0 +1.3.6.1.2.1.2.2.1.11.1077941760|65|0 +1.3.6.1.2.1.2.2.1.11.1077942272|65|0 +1.3.6.1.2.1.2.2.1.11.1077942784|65|0 +1.3.6.1.2.1.2.2.1.11.1077943296|65|0 +1.3.6.1.2.1.2.2.1.11.1077943808|65|0 +1.3.6.1.2.1.2.2.1.11.1077944320|65|0 +1.3.6.1.2.1.2.2.1.11.1077944832|65|0 +1.3.6.1.2.1.2.2.1.11.1077945344|65|0 +1.3.6.1.2.1.2.2.1.11.1077945856|65|0 +1.3.6.1.2.1.2.2.1.11.1077946368|65|0 +1.3.6.1.2.1.2.2.1.11.1077946880|65|0 +1.3.6.1.2.1.2.2.1.11.1077947392|65|0 +1.3.6.1.2.1.2.2.1.11.1077947904|65|0 +1.3.6.1.2.1.2.2.1.11.1077948416|65|0 +1.3.6.1.2.1.2.2.1.11.1077948928|65|0 +1.3.6.1.2.1.2.2.1.11.1077949440|65|0 +1.3.6.1.2.1.2.2.1.11.1077949952|65|0 +1.3.6.1.2.1.2.2.1.11.1077950464|65|0 +1.3.6.1.2.1.2.2.1.11.1077950976|65|0 +1.3.6.1.2.1.2.2.1.11.1077951488|65|0 +1.3.6.1.2.1.2.2.1.11.1077952000|65|0 +1.3.6.1.2.1.2.2.1.11.1077952512|65|0 +1.3.6.1.2.1.2.2.1.11.1077953024|65|0 +1.3.6.1.2.1.2.2.1.11.1077953536|65|0 +1.3.6.1.2.1.2.2.1.11.1077954048|65|0 +1.3.6.1.2.1.2.2.1.11.1078198272|65|87149 +1.3.6.1.2.1.2.2.1.11.1078198784|65|89563 +1.3.6.1.2.1.2.2.1.11.1078199296|65|0 +1.3.6.1.2.1.2.2.1.11.1078199808|65|0 +1.3.6.1.2.1.2.2.1.11.1078200320|65|0 +1.3.6.1.2.1.2.2.1.11.1078200832|65|0 +1.3.6.1.2.1.2.2.1.11.1078201344|65|0 +1.3.6.1.2.1.2.2.1.11.1078201856|65|0 +1.3.6.1.2.1.2.2.1.11.1078202368|65|0 +1.3.6.1.2.1.2.2.1.11.1078202880|65|0 +1.3.6.1.2.1.2.2.1.11.1078203392|65|0 +1.3.6.1.2.1.2.2.1.11.1078203904|65|0 +1.3.6.1.2.1.2.2.1.11.1078204416|65|0 +1.3.6.1.2.1.2.2.1.11.1078204928|65|0 +1.3.6.1.2.1.2.2.1.11.1078205440|65|0 +1.3.6.1.2.1.2.2.1.11.1078205952|65|0 +1.3.6.1.2.1.2.2.1.11.1078206464|65|0 +1.3.6.1.2.1.2.2.1.11.1078206976|65|0 +1.3.6.1.2.1.2.2.1.11.1078207488|65|0 +1.3.6.1.2.1.2.2.1.11.1078208000|65|0 +1.3.6.1.2.1.2.2.1.11.1078208512|65|0 +1.3.6.1.2.1.2.2.1.11.1078209024|65|0 +1.3.6.1.2.1.2.2.1.11.1078209536|65|0 +1.3.6.1.2.1.2.2.1.11.1078210048|65|0 +1.3.6.1.2.1.2.2.1.11.1078210560|65|0 +1.3.6.1.2.1.2.2.1.11.1078211072|65|0 +1.3.6.1.2.1.2.2.1.11.1078211584|65|0 +1.3.6.1.2.1.2.2.1.11.1078212096|65|0 +1.3.6.1.2.1.2.2.1.11.1078212608|65|0 +1.3.6.1.2.1.2.2.1.11.1078213120|65|0 +1.3.6.1.2.1.2.2.1.11.1078213632|65|0 +1.3.6.1.2.1.2.2.1.11.1078214144|65|0 +1.3.6.1.2.1.2.2.1.11.1078214656|65|0 +1.3.6.1.2.1.2.2.1.11.1078215168|65|0 +1.3.6.1.2.1.2.2.1.11.1078215680|65|0 +1.3.6.1.2.1.2.2.1.11.1078216192|65|0 +1.3.6.1.2.1.2.2.1.12.1077936128|65|7 +1.3.6.1.2.1.2.2.1.12.1077936640|65|1502 +1.3.6.1.2.1.2.2.1.12.1077937152|65|0 +1.3.6.1.2.1.2.2.1.12.1077937664|65|0 +1.3.6.1.2.1.2.2.1.12.1077938176|65|0 +1.3.6.1.2.1.2.2.1.12.1077938688|65|0 +1.3.6.1.2.1.2.2.1.12.1077939200|65|0 +1.3.6.1.2.1.2.2.1.12.1077939712|65|0 +1.3.6.1.2.1.2.2.1.12.1077940224|65|0 +1.3.6.1.2.1.2.2.1.12.1077940736|65|0 +1.3.6.1.2.1.2.2.1.12.1077941248|65|0 +1.3.6.1.2.1.2.2.1.12.1077941760|65|0 +1.3.6.1.2.1.2.2.1.12.1077942272|65|0 +1.3.6.1.2.1.2.2.1.12.1077942784|65|0 +1.3.6.1.2.1.2.2.1.12.1077943296|65|0 +1.3.6.1.2.1.2.2.1.12.1077943808|65|0 +1.3.6.1.2.1.2.2.1.12.1077944320|65|0 +1.3.6.1.2.1.2.2.1.12.1077944832|65|0 +1.3.6.1.2.1.2.2.1.12.1077945344|65|0 +1.3.6.1.2.1.2.2.1.12.1077945856|65|0 +1.3.6.1.2.1.2.2.1.12.1077946368|65|0 +1.3.6.1.2.1.2.2.1.12.1077946880|65|0 +1.3.6.1.2.1.2.2.1.12.1077947392|65|0 +1.3.6.1.2.1.2.2.1.12.1077947904|65|0 +1.3.6.1.2.1.2.2.1.12.1077948416|65|0 +1.3.6.1.2.1.2.2.1.12.1077948928|65|0 +1.3.6.1.2.1.2.2.1.12.1077949440|65|0 +1.3.6.1.2.1.2.2.1.12.1077949952|65|0 +1.3.6.1.2.1.2.2.1.12.1077950464|65|0 +1.3.6.1.2.1.2.2.1.12.1077950976|65|0 +1.3.6.1.2.1.2.2.1.12.1077951488|65|0 +1.3.6.1.2.1.2.2.1.12.1077952000|65|0 +1.3.6.1.2.1.2.2.1.12.1077952512|65|0 +1.3.6.1.2.1.2.2.1.12.1077953024|65|0 +1.3.6.1.2.1.2.2.1.12.1077953536|65|0 +1.3.6.1.2.1.2.2.1.12.1077954048|65|0 +1.3.6.1.2.1.2.2.1.12.1078198272|65|7 +1.3.6.1.2.1.2.2.1.12.1078198784|65|1502 +1.3.6.1.2.1.2.2.1.12.1078199296|65|0 +1.3.6.1.2.1.2.2.1.12.1078199808|65|0 +1.3.6.1.2.1.2.2.1.12.1078200320|65|0 +1.3.6.1.2.1.2.2.1.12.1078200832|65|0 +1.3.6.1.2.1.2.2.1.12.1078201344|65|0 +1.3.6.1.2.1.2.2.1.12.1078201856|65|0 +1.3.6.1.2.1.2.2.1.12.1078202368|65|0 +1.3.6.1.2.1.2.2.1.12.1078202880|65|0 +1.3.6.1.2.1.2.2.1.12.1078203392|65|0 +1.3.6.1.2.1.2.2.1.12.1078203904|65|0 +1.3.6.1.2.1.2.2.1.12.1078204416|65|0 +1.3.6.1.2.1.2.2.1.12.1078204928|65|0 +1.3.6.1.2.1.2.2.1.12.1078205440|65|0 +1.3.6.1.2.1.2.2.1.12.1078205952|65|0 +1.3.6.1.2.1.2.2.1.12.1078206464|65|0 +1.3.6.1.2.1.2.2.1.12.1078206976|65|0 +1.3.6.1.2.1.2.2.1.12.1078207488|65|0 +1.3.6.1.2.1.2.2.1.12.1078208000|65|0 +1.3.6.1.2.1.2.2.1.12.1078208512|65|0 +1.3.6.1.2.1.2.2.1.12.1078209024|65|0 +1.3.6.1.2.1.2.2.1.12.1078209536|65|0 +1.3.6.1.2.1.2.2.1.12.1078210048|65|0 +1.3.6.1.2.1.2.2.1.12.1078210560|65|0 +1.3.6.1.2.1.2.2.1.12.1078211072|65|0 +1.3.6.1.2.1.2.2.1.12.1078211584|65|0 +1.3.6.1.2.1.2.2.1.12.1078212096|65|0 +1.3.6.1.2.1.2.2.1.12.1078212608|65|0 +1.3.6.1.2.1.2.2.1.12.1078213120|65|0 +1.3.6.1.2.1.2.2.1.12.1078213632|65|0 +1.3.6.1.2.1.2.2.1.12.1078214144|65|0 +1.3.6.1.2.1.2.2.1.12.1078214656|65|0 +1.3.6.1.2.1.2.2.1.12.1078215168|65|0 +1.3.6.1.2.1.2.2.1.12.1078215680|65|0 +1.3.6.1.2.1.2.2.1.12.1078216192|65|0 +1.3.6.1.2.1.2.2.1.13.20971520|65|0 +1.3.6.1.2.1.2.2.1.13.20972032|65|0 +1.3.6.1.2.1.2.2.1.13.20972544|65|0 +1.3.6.1.2.1.2.2.1.13.1077936128|65|0 +1.3.6.1.2.1.2.2.1.13.1077936640|65|1 +1.3.6.1.2.1.2.2.1.13.1077937152|65|0 +1.3.6.1.2.1.2.2.1.13.1077937664|65|0 +1.3.6.1.2.1.2.2.1.13.1077938176|65|0 +1.3.6.1.2.1.2.2.1.13.1077938688|65|0 +1.3.6.1.2.1.2.2.1.13.1077939200|65|0 +1.3.6.1.2.1.2.2.1.13.1077939712|65|0 +1.3.6.1.2.1.2.2.1.13.1077940224|65|0 +1.3.6.1.2.1.2.2.1.13.1077940736|65|0 +1.3.6.1.2.1.2.2.1.13.1077941248|65|0 +1.3.6.1.2.1.2.2.1.13.1077941760|65|0 +1.3.6.1.2.1.2.2.1.13.1077942272|65|0 +1.3.6.1.2.1.2.2.1.13.1077942784|65|0 +1.3.6.1.2.1.2.2.1.13.1077943296|65|0 +1.3.6.1.2.1.2.2.1.13.1077943808|65|0 +1.3.6.1.2.1.2.2.1.13.1077944320|65|0 +1.3.6.1.2.1.2.2.1.13.1077944832|65|0 +1.3.6.1.2.1.2.2.1.13.1077945344|65|0 +1.3.6.1.2.1.2.2.1.13.1077945856|65|0 +1.3.6.1.2.1.2.2.1.13.1077946368|65|0 +1.3.6.1.2.1.2.2.1.13.1077946880|65|0 +1.3.6.1.2.1.2.2.1.13.1077947392|65|0 +1.3.6.1.2.1.2.2.1.13.1077947904|65|0 +1.3.6.1.2.1.2.2.1.13.1077948416|65|0 +1.3.6.1.2.1.2.2.1.13.1077948928|65|0 +1.3.6.1.2.1.2.2.1.13.1077949440|65|0 +1.3.6.1.2.1.2.2.1.13.1077949952|65|0 +1.3.6.1.2.1.2.2.1.13.1077950464|65|0 +1.3.6.1.2.1.2.2.1.13.1077950976|65|0 +1.3.6.1.2.1.2.2.1.13.1077951488|65|0 +1.3.6.1.2.1.2.2.1.13.1077952000|65|0 +1.3.6.1.2.1.2.2.1.13.1077952512|65|0 +1.3.6.1.2.1.2.2.1.13.1077953024|65|0 +1.3.6.1.2.1.2.2.1.13.1077953536|65|0 +1.3.6.1.2.1.2.2.1.13.1077954048|65|0 +1.3.6.1.2.1.2.2.1.13.1078198272|65|0 +1.3.6.1.2.1.2.2.1.13.1078198784|65|1 +1.3.6.1.2.1.2.2.1.13.1078199296|65|0 +1.3.6.1.2.1.2.2.1.13.1078199808|65|0 +1.3.6.1.2.1.2.2.1.13.1078200320|65|0 +1.3.6.1.2.1.2.2.1.13.1078200832|65|0 +1.3.6.1.2.1.2.2.1.13.1078201344|65|0 +1.3.6.1.2.1.2.2.1.13.1078201856|65|0 +1.3.6.1.2.1.2.2.1.13.1078202368|65|0 +1.3.6.1.2.1.2.2.1.13.1078202880|65|0 +1.3.6.1.2.1.2.2.1.13.1078203392|65|0 +1.3.6.1.2.1.2.2.1.13.1078203904|65|0 +1.3.6.1.2.1.2.2.1.13.1078204416|65|0 +1.3.6.1.2.1.2.2.1.13.1078204928|65|0 +1.3.6.1.2.1.2.2.1.13.1078205440|65|0 +1.3.6.1.2.1.2.2.1.13.1078205952|65|0 +1.3.6.1.2.1.2.2.1.13.1078206464|65|0 +1.3.6.1.2.1.2.2.1.13.1078206976|65|0 +1.3.6.1.2.1.2.2.1.13.1078207488|65|0 +1.3.6.1.2.1.2.2.1.13.1078208000|65|0 +1.3.6.1.2.1.2.2.1.13.1078208512|65|0 +1.3.6.1.2.1.2.2.1.13.1078209024|65|0 +1.3.6.1.2.1.2.2.1.13.1078209536|65|0 +1.3.6.1.2.1.2.2.1.13.1078210048|65|0 +1.3.6.1.2.1.2.2.1.13.1078210560|65|0 +1.3.6.1.2.1.2.2.1.13.1078211072|65|0 +1.3.6.1.2.1.2.2.1.13.1078211584|65|0 +1.3.6.1.2.1.2.2.1.13.1078212096|65|0 +1.3.6.1.2.1.2.2.1.13.1078212608|65|0 +1.3.6.1.2.1.2.2.1.13.1078213120|65|0 +1.3.6.1.2.1.2.2.1.13.1078213632|65|0 +1.3.6.1.2.1.2.2.1.13.1078214144|65|0 +1.3.6.1.2.1.2.2.1.13.1078214656|65|0 +1.3.6.1.2.1.2.2.1.13.1078215168|65|0 +1.3.6.1.2.1.2.2.1.13.1078215680|65|0 +1.3.6.1.2.1.2.2.1.13.1078216192|65|0 +1.3.6.1.2.1.2.2.1.13.1079377920|65|1 +1.3.6.1.2.1.2.2.1.13.1081475072|65|0 +1.3.6.1.2.1.2.2.1.13.1087766528|65|0 +1.3.6.1.2.1.2.2.1.13.1094057984|65|0 +1.3.6.1.2.1.2.2.1.14.20971520|65|0 +1.3.6.1.2.1.2.2.1.14.20972032|65|0 +1.3.6.1.2.1.2.2.1.14.20972544|65|0 +1.3.6.1.2.1.2.2.1.14.1077936128|65|0 +1.3.6.1.2.1.2.2.1.14.1077936640|65|0 +1.3.6.1.2.1.2.2.1.14.1077937152|65|0 +1.3.6.1.2.1.2.2.1.14.1077937664|65|0 +1.3.6.1.2.1.2.2.1.14.1077938176|65|0 +1.3.6.1.2.1.2.2.1.14.1077938688|65|0 +1.3.6.1.2.1.2.2.1.14.1077939200|65|0 +1.3.6.1.2.1.2.2.1.14.1077939712|65|0 +1.3.6.1.2.1.2.2.1.14.1077940224|65|0 +1.3.6.1.2.1.2.2.1.14.1077940736|65|0 +1.3.6.1.2.1.2.2.1.14.1077941248|65|0 +1.3.6.1.2.1.2.2.1.14.1077941760|65|0 +1.3.6.1.2.1.2.2.1.14.1077942272|65|0 +1.3.6.1.2.1.2.2.1.14.1077942784|65|0 +1.3.6.1.2.1.2.2.1.14.1077943296|65|0 +1.3.6.1.2.1.2.2.1.14.1077943808|65|0 +1.3.6.1.2.1.2.2.1.14.1077944320|65|0 +1.3.6.1.2.1.2.2.1.14.1077944832|65|0 +1.3.6.1.2.1.2.2.1.14.1077945344|65|0 +1.3.6.1.2.1.2.2.1.14.1077945856|65|0 +1.3.6.1.2.1.2.2.1.14.1077946368|65|0 +1.3.6.1.2.1.2.2.1.14.1077946880|65|0 +1.3.6.1.2.1.2.2.1.14.1077947392|65|0 +1.3.6.1.2.1.2.2.1.14.1077947904|65|0 +1.3.6.1.2.1.2.2.1.14.1077948416|65|0 +1.3.6.1.2.1.2.2.1.14.1077948928|65|0 +1.3.6.1.2.1.2.2.1.14.1077949440|65|0 +1.3.6.1.2.1.2.2.1.14.1077949952|65|0 +1.3.6.1.2.1.2.2.1.14.1077950464|65|0 +1.3.6.1.2.1.2.2.1.14.1077950976|65|0 +1.3.6.1.2.1.2.2.1.14.1077951488|65|0 +1.3.6.1.2.1.2.2.1.14.1077952000|65|0 +1.3.6.1.2.1.2.2.1.14.1077952512|65|0 +1.3.6.1.2.1.2.2.1.14.1077953024|65|0 +1.3.6.1.2.1.2.2.1.14.1077953536|65|0 +1.3.6.1.2.1.2.2.1.14.1077954048|65|0 +1.3.6.1.2.1.2.2.1.14.1078198272|65|0 +1.3.6.1.2.1.2.2.1.14.1078198784|65|0 +1.3.6.1.2.1.2.2.1.14.1078199296|65|0 +1.3.6.1.2.1.2.2.1.14.1078199808|65|0 +1.3.6.1.2.1.2.2.1.14.1078200320|65|0 +1.3.6.1.2.1.2.2.1.14.1078200832|65|0 +1.3.6.1.2.1.2.2.1.14.1078201344|65|0 +1.3.6.1.2.1.2.2.1.14.1078201856|65|0 +1.3.6.1.2.1.2.2.1.14.1078202368|65|0 +1.3.6.1.2.1.2.2.1.14.1078202880|65|0 +1.3.6.1.2.1.2.2.1.14.1078203392|65|0 +1.3.6.1.2.1.2.2.1.14.1078203904|65|0 +1.3.6.1.2.1.2.2.1.14.1078204416|65|0 +1.3.6.1.2.1.2.2.1.14.1078204928|65|0 +1.3.6.1.2.1.2.2.1.14.1078205440|65|0 +1.3.6.1.2.1.2.2.1.14.1078205952|65|0 +1.3.6.1.2.1.2.2.1.14.1078206464|65|0 +1.3.6.1.2.1.2.2.1.14.1078206976|65|0 +1.3.6.1.2.1.2.2.1.14.1078207488|65|0 +1.3.6.1.2.1.2.2.1.14.1078208000|65|0 +1.3.6.1.2.1.2.2.1.14.1078208512|65|0 +1.3.6.1.2.1.2.2.1.14.1078209024|65|0 +1.3.6.1.2.1.2.2.1.14.1078209536|65|0 +1.3.6.1.2.1.2.2.1.14.1078210048|65|0 +1.3.6.1.2.1.2.2.1.14.1078210560|65|0 +1.3.6.1.2.1.2.2.1.14.1078211072|65|0 +1.3.6.1.2.1.2.2.1.14.1078211584|65|0 +1.3.6.1.2.1.2.2.1.14.1078212096|65|0 +1.3.6.1.2.1.2.2.1.14.1078212608|65|0 +1.3.6.1.2.1.2.2.1.14.1078213120|65|0 +1.3.6.1.2.1.2.2.1.14.1078213632|65|0 +1.3.6.1.2.1.2.2.1.14.1078214144|65|0 +1.3.6.1.2.1.2.2.1.14.1078214656|65|0 +1.3.6.1.2.1.2.2.1.14.1078215168|65|0 +1.3.6.1.2.1.2.2.1.14.1078215680|65|0 +1.3.6.1.2.1.2.2.1.14.1078216192|65|0 +1.3.6.1.2.1.2.2.1.15.20971520|65|0 +1.3.6.1.2.1.2.2.1.15.20972032|65|0 +1.3.6.1.2.1.2.2.1.15.20972544|65|0 +1.3.6.1.2.1.2.2.1.15.1078198272|65|0 +1.3.6.1.2.1.2.2.1.15.1078198784|65|0 +1.3.6.1.2.1.2.2.1.15.1078199296|65|0 +1.3.6.1.2.1.2.2.1.15.1078199808|65|0 +1.3.6.1.2.1.2.2.1.15.1078200320|65|0 +1.3.6.1.2.1.2.2.1.15.1078200832|65|0 +1.3.6.1.2.1.2.2.1.15.1078201344|65|0 +1.3.6.1.2.1.2.2.1.15.1078201856|65|0 +1.3.6.1.2.1.2.2.1.15.1078202368|65|0 +1.3.6.1.2.1.2.2.1.15.1078202880|65|0 +1.3.6.1.2.1.2.2.1.15.1078203392|65|0 +1.3.6.1.2.1.2.2.1.15.1078203904|65|0 +1.3.6.1.2.1.2.2.1.15.1078204416|65|0 +1.3.6.1.2.1.2.2.1.15.1078204928|65|0 +1.3.6.1.2.1.2.2.1.15.1078205440|65|0 +1.3.6.1.2.1.2.2.1.15.1078205952|65|0 +1.3.6.1.2.1.2.2.1.15.1078206464|65|0 +1.3.6.1.2.1.2.2.1.15.1078206976|65|0 +1.3.6.1.2.1.2.2.1.15.1078207488|65|0 +1.3.6.1.2.1.2.2.1.15.1078208000|65|0 +1.3.6.1.2.1.2.2.1.15.1078208512|65|0 +1.3.6.1.2.1.2.2.1.15.1078209024|65|0 +1.3.6.1.2.1.2.2.1.15.1078209536|65|0 +1.3.6.1.2.1.2.2.1.15.1078210048|65|0 +1.3.6.1.2.1.2.2.1.15.1078210560|65|0 +1.3.6.1.2.1.2.2.1.15.1078211072|65|0 +1.3.6.1.2.1.2.2.1.15.1078211584|65|0 +1.3.6.1.2.1.2.2.1.15.1078212096|65|0 +1.3.6.1.2.1.2.2.1.15.1078212608|65|0 +1.3.6.1.2.1.2.2.1.15.1078213120|65|0 +1.3.6.1.2.1.2.2.1.15.1078213632|65|0 +1.3.6.1.2.1.2.2.1.15.1078214144|65|0 +1.3.6.1.2.1.2.2.1.15.1078214656|65|0 +1.3.6.1.2.1.2.2.1.15.1078215168|65|0 +1.3.6.1.2.1.2.2.1.15.1078215680|65|0 +1.3.6.1.2.1.2.2.1.15.1078216192|65|0 +1.3.6.1.2.1.2.2.1.16.20971520|65|0 +1.3.6.1.2.1.2.2.1.16.20972032|65|0 +1.3.6.1.2.1.2.2.1.16.20972544|65|0 +1.3.6.1.2.1.2.2.1.16.1077936128|65|8720120 +1.3.6.1.2.1.2.2.1.16.1077936640|65|15304807 +1.3.6.1.2.1.2.2.1.16.1077937152|65|0 +1.3.6.1.2.1.2.2.1.16.1077937664|65|0 +1.3.6.1.2.1.2.2.1.16.1077938176|65|0 +1.3.6.1.2.1.2.2.1.16.1077938688|65|0 +1.3.6.1.2.1.2.2.1.16.1077939200|65|0 +1.3.6.1.2.1.2.2.1.16.1077939712|65|0 +1.3.6.1.2.1.2.2.1.16.1077940224|65|0 +1.3.6.1.2.1.2.2.1.16.1077940736|65|0 +1.3.6.1.2.1.2.2.1.16.1077941248|65|0 +1.3.6.1.2.1.2.2.1.16.1077941760|65|0 +1.3.6.1.2.1.2.2.1.16.1077942272|65|0 +1.3.6.1.2.1.2.2.1.16.1077942784|65|0 +1.3.6.1.2.1.2.2.1.16.1077943296|65|0 +1.3.6.1.2.1.2.2.1.16.1077943808|65|0 +1.3.6.1.2.1.2.2.1.16.1077944320|65|0 +1.3.6.1.2.1.2.2.1.16.1077944832|65|0 +1.3.6.1.2.1.2.2.1.16.1077945344|65|0 +1.3.6.1.2.1.2.2.1.16.1077945856|65|0 +1.3.6.1.2.1.2.2.1.16.1077946368|65|0 +1.3.6.1.2.1.2.2.1.16.1077946880|65|0 +1.3.6.1.2.1.2.2.1.16.1077947392|65|0 +1.3.6.1.2.1.2.2.1.16.1077947904|65|0 +1.3.6.1.2.1.2.2.1.16.1077948416|65|0 +1.3.6.1.2.1.2.2.1.16.1077948928|65|0 +1.3.6.1.2.1.2.2.1.16.1077949440|65|0 +1.3.6.1.2.1.2.2.1.16.1077949952|65|0 +1.3.6.1.2.1.2.2.1.16.1077950464|65|0 +1.3.6.1.2.1.2.2.1.16.1077950976|65|0 +1.3.6.1.2.1.2.2.1.16.1077951488|65|0 +1.3.6.1.2.1.2.2.1.16.1077952000|65|0 +1.3.6.1.2.1.2.2.1.16.1077952512|65|0 +1.3.6.1.2.1.2.2.1.16.1077953024|65|0 +1.3.6.1.2.1.2.2.1.16.1077953536|65|0 +1.3.6.1.2.1.2.2.1.16.1077954048|65|0 +1.3.6.1.2.1.2.2.1.16.1078198272|65|8720184 +1.3.6.1.2.1.2.2.1.16.1078198784|65|15304807 +1.3.6.1.2.1.2.2.1.16.1078199296|65|0 +1.3.6.1.2.1.2.2.1.16.1078199808|65|0 +1.3.6.1.2.1.2.2.1.16.1078200320|65|0 +1.3.6.1.2.1.2.2.1.16.1078200832|65|0 +1.3.6.1.2.1.2.2.1.16.1078201344|65|0 +1.3.6.1.2.1.2.2.1.16.1078201856|65|0 +1.3.6.1.2.1.2.2.1.16.1078202368|65|0 +1.3.6.1.2.1.2.2.1.16.1078202880|65|0 +1.3.6.1.2.1.2.2.1.16.1078203392|65|0 +1.3.6.1.2.1.2.2.1.16.1078203904|65|0 +1.3.6.1.2.1.2.2.1.16.1078204416|65|0 +1.3.6.1.2.1.2.2.1.16.1078204928|65|0 +1.3.6.1.2.1.2.2.1.16.1078205440|65|0 +1.3.6.1.2.1.2.2.1.16.1078205952|65|0 +1.3.6.1.2.1.2.2.1.16.1078206464|65|0 +1.3.6.1.2.1.2.2.1.16.1078206976|65|0 +1.3.6.1.2.1.2.2.1.16.1078207488|65|0 +1.3.6.1.2.1.2.2.1.16.1078208000|65|0 +1.3.6.1.2.1.2.2.1.16.1078208512|65|0 +1.3.6.1.2.1.2.2.1.16.1078209024|65|0 +1.3.6.1.2.1.2.2.1.16.1078209536|65|0 +1.3.6.1.2.1.2.2.1.16.1078210048|65|0 +1.3.6.1.2.1.2.2.1.16.1078210560|65|0 +1.3.6.1.2.1.2.2.1.16.1078211072|65|0 +1.3.6.1.2.1.2.2.1.16.1078211584|65|0 +1.3.6.1.2.1.2.2.1.16.1078212096|65|0 +1.3.6.1.2.1.2.2.1.16.1078212608|65|0 +1.3.6.1.2.1.2.2.1.16.1078213120|65|0 +1.3.6.1.2.1.2.2.1.16.1078213632|65|0 +1.3.6.1.2.1.2.2.1.16.1078214144|65|0 +1.3.6.1.2.1.2.2.1.16.1078214656|65|0 +1.3.6.1.2.1.2.2.1.16.1078215168|65|0 +1.3.6.1.2.1.2.2.1.16.1078215680|65|0 +1.3.6.1.2.1.2.2.1.16.1078216192|65|0 +1.3.6.1.2.1.2.2.1.17.20971520|65|0 +1.3.6.1.2.1.2.2.1.17.20972032|65|0 +1.3.6.1.2.1.2.2.1.17.20972544|65|0 +1.3.6.1.2.1.2.2.1.17.1077936128|65|92920 +1.3.6.1.2.1.2.2.1.17.1077936640|65|125586 +1.3.6.1.2.1.2.2.1.17.1077937152|65|0 +1.3.6.1.2.1.2.2.1.17.1077937664|65|0 +1.3.6.1.2.1.2.2.1.17.1077938176|65|0 +1.3.6.1.2.1.2.2.1.17.1077938688|65|0 +1.3.6.1.2.1.2.2.1.17.1077939200|65|0 +1.3.6.1.2.1.2.2.1.17.1077939712|65|0 +1.3.6.1.2.1.2.2.1.17.1077940224|65|0 +1.3.6.1.2.1.2.2.1.17.1077940736|65|0 +1.3.6.1.2.1.2.2.1.17.1077941248|65|0 +1.3.6.1.2.1.2.2.1.17.1077941760|65|0 +1.3.6.1.2.1.2.2.1.17.1077942272|65|0 +1.3.6.1.2.1.2.2.1.17.1077942784|65|0 +1.3.6.1.2.1.2.2.1.17.1077943296|65|0 +1.3.6.1.2.1.2.2.1.17.1077943808|65|0 +1.3.6.1.2.1.2.2.1.17.1077944320|65|0 +1.3.6.1.2.1.2.2.1.17.1077944832|65|0 +1.3.6.1.2.1.2.2.1.17.1077945344|65|0 +1.3.6.1.2.1.2.2.1.17.1077945856|65|0 +1.3.6.1.2.1.2.2.1.17.1077946368|65|0 +1.3.6.1.2.1.2.2.1.17.1077946880|65|0 +1.3.6.1.2.1.2.2.1.17.1077947392|65|0 +1.3.6.1.2.1.2.2.1.17.1077947904|65|0 +1.3.6.1.2.1.2.2.1.17.1077948416|65|0 +1.3.6.1.2.1.2.2.1.17.1077948928|65|0 +1.3.6.1.2.1.2.2.1.17.1077949440|65|0 +1.3.6.1.2.1.2.2.1.17.1077949952|65|0 +1.3.6.1.2.1.2.2.1.17.1077950464|65|0 +1.3.6.1.2.1.2.2.1.17.1077950976|65|0 +1.3.6.1.2.1.2.2.1.17.1077951488|65|0 +1.3.6.1.2.1.2.2.1.17.1077952000|65|0 +1.3.6.1.2.1.2.2.1.17.1077952512|65|0 +1.3.6.1.2.1.2.2.1.17.1077953024|65|0 +1.3.6.1.2.1.2.2.1.17.1077953536|65|0 +1.3.6.1.2.1.2.2.1.17.1077954048|65|0 +1.3.6.1.2.1.2.2.1.17.1078198272|65|92920 +1.3.6.1.2.1.2.2.1.17.1078198784|65|125586 +1.3.6.1.2.1.2.2.1.17.1078199296|65|0 +1.3.6.1.2.1.2.2.1.17.1078199808|65|0 +1.3.6.1.2.1.2.2.1.17.1078200320|65|0 +1.3.6.1.2.1.2.2.1.17.1078200832|65|0 +1.3.6.1.2.1.2.2.1.17.1078201344|65|0 +1.3.6.1.2.1.2.2.1.17.1078201856|65|0 +1.3.6.1.2.1.2.2.1.17.1078202368|65|0 +1.3.6.1.2.1.2.2.1.17.1078202880|65|0 +1.3.6.1.2.1.2.2.1.17.1078203392|65|0 +1.3.6.1.2.1.2.2.1.17.1078203904|65|0 +1.3.6.1.2.1.2.2.1.17.1078204416|65|0 +1.3.6.1.2.1.2.2.1.17.1078204928|65|0 +1.3.6.1.2.1.2.2.1.17.1078205440|65|0 +1.3.6.1.2.1.2.2.1.17.1078205952|65|0 +1.3.6.1.2.1.2.2.1.17.1078206464|65|0 +1.3.6.1.2.1.2.2.1.17.1078206976|65|0 +1.3.6.1.2.1.2.2.1.17.1078207488|65|0 +1.3.6.1.2.1.2.2.1.17.1078208000|65|0 +1.3.6.1.2.1.2.2.1.17.1078208512|65|0 +1.3.6.1.2.1.2.2.1.17.1078209024|65|0 +1.3.6.1.2.1.2.2.1.17.1078209536|65|0 +1.3.6.1.2.1.2.2.1.17.1078210048|65|0 +1.3.6.1.2.1.2.2.1.17.1078210560|65|0 +1.3.6.1.2.1.2.2.1.17.1078211072|65|0 +1.3.6.1.2.1.2.2.1.17.1078211584|65|0 +1.3.6.1.2.1.2.2.1.17.1078212096|65|0 +1.3.6.1.2.1.2.2.1.17.1078212608|65|0 +1.3.6.1.2.1.2.2.1.17.1078213120|65|0 +1.3.6.1.2.1.2.2.1.17.1078213632|65|0 +1.3.6.1.2.1.2.2.1.17.1078214144|65|0 +1.3.6.1.2.1.2.2.1.17.1078214656|65|0 +1.3.6.1.2.1.2.2.1.17.1078215168|65|0 +1.3.6.1.2.1.2.2.1.17.1078215680|65|0 +1.3.6.1.2.1.2.2.1.17.1078216192|65|0 +1.3.6.1.2.1.2.2.1.18.1077936128|65|312 +1.3.6.1.2.1.2.2.1.18.1077936640|65|371 +1.3.6.1.2.1.2.2.1.18.1077937152|65|0 +1.3.6.1.2.1.2.2.1.18.1077937664|65|0 +1.3.6.1.2.1.2.2.1.18.1077938176|65|0 +1.3.6.1.2.1.2.2.1.18.1077938688|65|0 +1.3.6.1.2.1.2.2.1.18.1077939200|65|0 +1.3.6.1.2.1.2.2.1.18.1077939712|65|0 +1.3.6.1.2.1.2.2.1.18.1077940224|65|0 +1.3.6.1.2.1.2.2.1.18.1077940736|65|0 +1.3.6.1.2.1.2.2.1.18.1077941248|65|0 +1.3.6.1.2.1.2.2.1.18.1077941760|65|0 +1.3.6.1.2.1.2.2.1.18.1077942272|65|0 +1.3.6.1.2.1.2.2.1.18.1077942784|65|0 +1.3.6.1.2.1.2.2.1.18.1077943296|65|0 +1.3.6.1.2.1.2.2.1.18.1077943808|65|0 +1.3.6.1.2.1.2.2.1.18.1077944320|65|0 +1.3.6.1.2.1.2.2.1.18.1077944832|65|0 +1.3.6.1.2.1.2.2.1.18.1077945344|65|0 +1.3.6.1.2.1.2.2.1.18.1077945856|65|0 +1.3.6.1.2.1.2.2.1.18.1077946368|65|0 +1.3.6.1.2.1.2.2.1.18.1077946880|65|0 +1.3.6.1.2.1.2.2.1.18.1077947392|65|0 +1.3.6.1.2.1.2.2.1.18.1077947904|65|0 +1.3.6.1.2.1.2.2.1.18.1077948416|65|0 +1.3.6.1.2.1.2.2.1.18.1077948928|65|0 +1.3.6.1.2.1.2.2.1.18.1077949440|65|0 +1.3.6.1.2.1.2.2.1.18.1077949952|65|0 +1.3.6.1.2.1.2.2.1.18.1077950464|65|0 +1.3.6.1.2.1.2.2.1.18.1077950976|65|0 +1.3.6.1.2.1.2.2.1.18.1077951488|65|0 +1.3.6.1.2.1.2.2.1.18.1077952000|65|0 +1.3.6.1.2.1.2.2.1.18.1077952512|65|0 +1.3.6.1.2.1.2.2.1.18.1077953024|65|0 +1.3.6.1.2.1.2.2.1.18.1077953536|65|0 +1.3.6.1.2.1.2.2.1.18.1077954048|65|0 +1.3.6.1.2.1.2.2.1.18.1078198272|65|312 +1.3.6.1.2.1.2.2.1.18.1078198784|65|371 +1.3.6.1.2.1.2.2.1.18.1078199296|65|0 +1.3.6.1.2.1.2.2.1.18.1078199808|65|0 +1.3.6.1.2.1.2.2.1.18.1078200320|65|0 +1.3.6.1.2.1.2.2.1.18.1078200832|65|0 +1.3.6.1.2.1.2.2.1.18.1078201344|65|0 +1.3.6.1.2.1.2.2.1.18.1078201856|65|0 +1.3.6.1.2.1.2.2.1.18.1078202368|65|0 +1.3.6.1.2.1.2.2.1.18.1078202880|65|0 +1.3.6.1.2.1.2.2.1.18.1078203392|65|0 +1.3.6.1.2.1.2.2.1.18.1078203904|65|0 +1.3.6.1.2.1.2.2.1.18.1078204416|65|0 +1.3.6.1.2.1.2.2.1.18.1078204928|65|0 +1.3.6.1.2.1.2.2.1.18.1078205440|65|0 +1.3.6.1.2.1.2.2.1.18.1078205952|65|0 +1.3.6.1.2.1.2.2.1.18.1078206464|65|0 +1.3.6.1.2.1.2.2.1.18.1078206976|65|0 +1.3.6.1.2.1.2.2.1.18.1078207488|65|0 +1.3.6.1.2.1.2.2.1.18.1078208000|65|0 +1.3.6.1.2.1.2.2.1.18.1078208512|65|0 +1.3.6.1.2.1.2.2.1.18.1078209024|65|0 +1.3.6.1.2.1.2.2.1.18.1078209536|65|0 +1.3.6.1.2.1.2.2.1.18.1078210048|65|0 +1.3.6.1.2.1.2.2.1.18.1078210560|65|0 +1.3.6.1.2.1.2.2.1.18.1078211072|65|0 +1.3.6.1.2.1.2.2.1.18.1078211584|65|0 +1.3.6.1.2.1.2.2.1.18.1078212096|65|0 +1.3.6.1.2.1.2.2.1.18.1078212608|65|0 +1.3.6.1.2.1.2.2.1.18.1078213120|65|0 +1.3.6.1.2.1.2.2.1.18.1078213632|65|0 +1.3.6.1.2.1.2.2.1.18.1078214144|65|0 +1.3.6.1.2.1.2.2.1.18.1078214656|65|0 +1.3.6.1.2.1.2.2.1.18.1078215168|65|0 +1.3.6.1.2.1.2.2.1.18.1078215680|65|0 +1.3.6.1.2.1.2.2.1.18.1078216192|65|0 +1.3.6.1.2.1.2.2.1.19.1077936128|65|0 +1.3.6.1.2.1.2.2.1.19.1077936640|65|0 +1.3.6.1.2.1.2.2.1.19.1077937152|65|0 +1.3.6.1.2.1.2.2.1.19.1077937664|65|0 +1.3.6.1.2.1.2.2.1.19.1077938176|65|0 +1.3.6.1.2.1.2.2.1.19.1077938688|65|0 +1.3.6.1.2.1.2.2.1.19.1077939200|65|0 +1.3.6.1.2.1.2.2.1.19.1077939712|65|0 +1.3.6.1.2.1.2.2.1.19.1077940224|65|0 +1.3.6.1.2.1.2.2.1.19.1077940736|65|0 +1.3.6.1.2.1.2.2.1.19.1077941248|65|0 +1.3.6.1.2.1.2.2.1.19.1077941760|65|0 +1.3.6.1.2.1.2.2.1.19.1077942272|65|0 +1.3.6.1.2.1.2.2.1.19.1077942784|65|0 +1.3.6.1.2.1.2.2.1.19.1077943296|65|0 +1.3.6.1.2.1.2.2.1.19.1077943808|65|0 +1.3.6.1.2.1.2.2.1.19.1077944320|65|0 +1.3.6.1.2.1.2.2.1.19.1077944832|65|0 +1.3.6.1.2.1.2.2.1.19.1077945344|65|0 +1.3.6.1.2.1.2.2.1.19.1077945856|65|0 +1.3.6.1.2.1.2.2.1.19.1077946368|65|0 +1.3.6.1.2.1.2.2.1.19.1077946880|65|0 +1.3.6.1.2.1.2.2.1.19.1077947392|65|0 +1.3.6.1.2.1.2.2.1.19.1077947904|65|0 +1.3.6.1.2.1.2.2.1.19.1077948416|65|0 +1.3.6.1.2.1.2.2.1.19.1077948928|65|0 +1.3.6.1.2.1.2.2.1.19.1077949440|65|0 +1.3.6.1.2.1.2.2.1.19.1077949952|65|0 +1.3.6.1.2.1.2.2.1.19.1077950464|65|0 +1.3.6.1.2.1.2.2.1.19.1077950976|65|0 +1.3.6.1.2.1.2.2.1.19.1077951488|65|0 +1.3.6.1.2.1.2.2.1.19.1077952000|65|0 +1.3.6.1.2.1.2.2.1.19.1077952512|65|0 +1.3.6.1.2.1.2.2.1.19.1077953024|65|0 +1.3.6.1.2.1.2.2.1.19.1077953536|65|0 +1.3.6.1.2.1.2.2.1.19.1077954048|65|0 +1.3.6.1.2.1.2.2.1.19.1078198272|65|0 +1.3.6.1.2.1.2.2.1.19.1078198784|65|0 +1.3.6.1.2.1.2.2.1.19.1078199296|65|0 +1.3.6.1.2.1.2.2.1.19.1078199808|65|0 +1.3.6.1.2.1.2.2.1.19.1078200320|65|0 +1.3.6.1.2.1.2.2.1.19.1078200832|65|0 +1.3.6.1.2.1.2.2.1.19.1078201344|65|0 +1.3.6.1.2.1.2.2.1.19.1078201856|65|0 +1.3.6.1.2.1.2.2.1.19.1078202368|65|0 +1.3.6.1.2.1.2.2.1.19.1078202880|65|0 +1.3.6.1.2.1.2.2.1.19.1078203392|65|0 +1.3.6.1.2.1.2.2.1.19.1078203904|65|0 +1.3.6.1.2.1.2.2.1.19.1078204416|65|0 +1.3.6.1.2.1.2.2.1.19.1078204928|65|0 +1.3.6.1.2.1.2.2.1.19.1078205440|65|0 +1.3.6.1.2.1.2.2.1.19.1078205952|65|0 +1.3.6.1.2.1.2.2.1.19.1078206464|65|0 +1.3.6.1.2.1.2.2.1.19.1078206976|65|0 +1.3.6.1.2.1.2.2.1.19.1078207488|65|0 +1.3.6.1.2.1.2.2.1.19.1078208000|65|0 +1.3.6.1.2.1.2.2.1.19.1078208512|65|0 +1.3.6.1.2.1.2.2.1.19.1078209024|65|0 +1.3.6.1.2.1.2.2.1.19.1078209536|65|0 +1.3.6.1.2.1.2.2.1.19.1078210048|65|0 +1.3.6.1.2.1.2.2.1.19.1078210560|65|0 +1.3.6.1.2.1.2.2.1.19.1078211072|65|0 +1.3.6.1.2.1.2.2.1.19.1078211584|65|0 +1.3.6.1.2.1.2.2.1.19.1078212096|65|0 +1.3.6.1.2.1.2.2.1.19.1078212608|65|0 +1.3.6.1.2.1.2.2.1.19.1078213120|65|0 +1.3.6.1.2.1.2.2.1.19.1078213632|65|0 +1.3.6.1.2.1.2.2.1.19.1078214144|65|0 +1.3.6.1.2.1.2.2.1.19.1078214656|65|0 +1.3.6.1.2.1.2.2.1.19.1078215168|65|0 +1.3.6.1.2.1.2.2.1.19.1078215680|65|0 +1.3.6.1.2.1.2.2.1.19.1078216192|65|0 +1.3.6.1.2.1.2.2.1.19.1079377920|65|0 +1.3.6.1.2.1.2.2.1.19.1081475072|65|0 +1.3.6.1.2.1.2.2.1.19.1087766528|65|0 +1.3.6.1.2.1.2.2.1.19.1094057984|65|0 +1.3.6.1.2.1.2.2.1.20.20971520|65|0 +1.3.6.1.2.1.2.2.1.20.20972032|65|0 +1.3.6.1.2.1.2.2.1.20.20972544|65|0 +1.3.6.1.2.1.2.2.1.20.1077936128|65|0 +1.3.6.1.2.1.2.2.1.20.1077936640|65|0 +1.3.6.1.2.1.2.2.1.20.1077937152|65|0 +1.3.6.1.2.1.2.2.1.20.1077937664|65|0 +1.3.6.1.2.1.2.2.1.20.1077938176|65|0 +1.3.6.1.2.1.2.2.1.20.1077938688|65|0 +1.3.6.1.2.1.2.2.1.20.1077939200|65|0 +1.3.6.1.2.1.2.2.1.20.1077939712|65|0 +1.3.6.1.2.1.2.2.1.20.1077940224|65|0 +1.3.6.1.2.1.2.2.1.20.1077940736|65|0 +1.3.6.1.2.1.2.2.1.20.1077941248|65|0 +1.3.6.1.2.1.2.2.1.20.1077941760|65|0 +1.3.6.1.2.1.2.2.1.20.1077942272|65|0 +1.3.6.1.2.1.2.2.1.20.1077942784|65|0 +1.3.6.1.2.1.2.2.1.20.1077943296|65|0 +1.3.6.1.2.1.2.2.1.20.1077943808|65|0 +1.3.6.1.2.1.2.2.1.20.1077944320|65|0 +1.3.6.1.2.1.2.2.1.20.1077944832|65|0 +1.3.6.1.2.1.2.2.1.20.1077945344|65|0 +1.3.6.1.2.1.2.2.1.20.1077945856|65|0 +1.3.6.1.2.1.2.2.1.20.1077946368|65|0 +1.3.6.1.2.1.2.2.1.20.1077946880|65|0 +1.3.6.1.2.1.2.2.1.20.1077947392|65|0 +1.3.6.1.2.1.2.2.1.20.1077947904|65|0 +1.3.6.1.2.1.2.2.1.20.1077948416|65|0 +1.3.6.1.2.1.2.2.1.20.1077948928|65|0 +1.3.6.1.2.1.2.2.1.20.1077949440|65|0 +1.3.6.1.2.1.2.2.1.20.1077949952|65|0 +1.3.6.1.2.1.2.2.1.20.1077950464|65|0 +1.3.6.1.2.1.2.2.1.20.1077950976|65|0 +1.3.6.1.2.1.2.2.1.20.1077951488|65|0 +1.3.6.1.2.1.2.2.1.20.1077952000|65|0 +1.3.6.1.2.1.2.2.1.20.1077952512|65|0 +1.3.6.1.2.1.2.2.1.20.1077953024|65|0 +1.3.6.1.2.1.2.2.1.20.1077953536|65|0 +1.3.6.1.2.1.2.2.1.20.1077954048|65|0 +1.3.6.1.2.1.2.2.1.20.1078198272|65|0 +1.3.6.1.2.1.2.2.1.20.1078198784|65|0 +1.3.6.1.2.1.2.2.1.20.1078199296|65|0 +1.3.6.1.2.1.2.2.1.20.1078199808|65|0 +1.3.6.1.2.1.2.2.1.20.1078200320|65|0 +1.3.6.1.2.1.2.2.1.20.1078200832|65|0 +1.3.6.1.2.1.2.2.1.20.1078201344|65|0 +1.3.6.1.2.1.2.2.1.20.1078201856|65|0 +1.3.6.1.2.1.2.2.1.20.1078202368|65|0 +1.3.6.1.2.1.2.2.1.20.1078202880|65|0 +1.3.6.1.2.1.2.2.1.20.1078203392|65|0 +1.3.6.1.2.1.2.2.1.20.1078203904|65|0 +1.3.6.1.2.1.2.2.1.20.1078204416|65|0 +1.3.6.1.2.1.2.2.1.20.1078204928|65|0 +1.3.6.1.2.1.2.2.1.20.1078205440|65|0 +1.3.6.1.2.1.2.2.1.20.1078205952|65|0 +1.3.6.1.2.1.2.2.1.20.1078206464|65|0 +1.3.6.1.2.1.2.2.1.20.1078206976|65|0 +1.3.6.1.2.1.2.2.1.20.1078207488|65|0 +1.3.6.1.2.1.2.2.1.20.1078208000|65|0 +1.3.6.1.2.1.2.2.1.20.1078208512|65|0 +1.3.6.1.2.1.2.2.1.20.1078209024|65|0 +1.3.6.1.2.1.2.2.1.20.1078209536|65|0 +1.3.6.1.2.1.2.2.1.20.1078210048|65|0 +1.3.6.1.2.1.2.2.1.20.1078210560|65|0 +1.3.6.1.2.1.2.2.1.20.1078211072|65|0 +1.3.6.1.2.1.2.2.1.20.1078211584|65|0 +1.3.6.1.2.1.2.2.1.20.1078212096|65|0 +1.3.6.1.2.1.2.2.1.20.1078212608|65|0 +1.3.6.1.2.1.2.2.1.20.1078213120|65|0 +1.3.6.1.2.1.2.2.1.20.1078213632|65|0 +1.3.6.1.2.1.2.2.1.20.1078214144|65|0 +1.3.6.1.2.1.2.2.1.20.1078214656|65|0 +1.3.6.1.2.1.2.2.1.20.1078215168|65|0 +1.3.6.1.2.1.2.2.1.20.1078215680|65|0 +1.3.6.1.2.1.2.2.1.20.1078216192|65|0 +1.3.6.1.2.1.4.3.0|65|0 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|0 +1.3.6.1.2.1.4.6.0|65|0 +1.3.6.1.2.1.4.7.0|65|0 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|16199542 +1.3.6.1.2.1.4.10.0|65|16199542 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|0 +1.3.6.1.2.1.4.14.0|65|0 +1.3.6.1.2.1.4.15.0|65|0 +1.3.6.1.2.1.4.16.0|65|0 +1.3.6.1.2.1.4.17.0|65|0 +1.3.6.1.2.1.4.18.0|65|0 +1.3.6.1.2.1.4.19.0|65|0 +1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|20971520 +1.3.6.1.2.1.4.20.1.2.127.0.0.2|2|20972544 +1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0 +1.3.6.1.2.1.4.20.1.3.127.0.0.2|64|255.0.0.0 +1.3.6.1.2.1.5.1.0|65|2152770 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|0 +1.3.6.1.2.1.5.4.0|65|0 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|1076385 +1.3.6.1.2.1.5.9.0|65|1076385 +1.3.6.1.2.1.5.10.0|65|0 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|2152770 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|0 +1.3.6.1.2.1.5.17.0|65|0 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|1076385 +1.3.6.1.2.1.5.22.0|65|1076385 +1.3.6.1.2.1.5.23.0|65|0 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.7.1.0|65|16014275 +1.3.6.1.2.1.7.2.0|65|0 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|16014577 +1.3.6.1.2.1.11.1.0|65|8973994 +1.3.6.1.2.1.11.2.0|65|8973993 +1.3.6.1.2.1.11.3.0|65|0 +1.3.6.1.2.1.11.4.0|65|0 +1.3.6.1.2.1.11.5.0|65|0 +1.3.6.1.2.1.11.6.0|65|0 +1.3.6.1.2.1.11.8.0|65|0 +1.3.6.1.2.1.11.9.0|65|0 +1.3.6.1.2.1.11.10.0|65|0 +1.3.6.1.2.1.11.11.0|65|0 +1.3.6.1.2.1.11.12.0|65|0 +1.3.6.1.2.1.11.13.0|65|28067193 +1.3.6.1.2.1.11.14.0|65|2895 +1.3.6.1.2.1.11.15.0|65|7089325 +1.3.6.1.2.1.11.16.0|65|1898208 +1.3.6.1.2.1.11.17.0|65|711 +1.3.6.1.2.1.11.18.0|65|0 +1.3.6.1.2.1.11.19.0|65|0 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|1 +1.3.6.1.2.1.11.22.0|65|1 +1.3.6.1.2.1.11.24.0|65|0 +1.3.6.1.2.1.11.25.0|65|0 +1.3.6.1.2.1.11.26.0|65|0 +1.3.6.1.2.1.11.27.0|65|0 +1.3.6.1.2.1.11.28.0|65|8988244 +1.3.6.1.2.1.11.29.0|65|0 +1.3.6.1.2.1.11.30.0|2|1 +1.3.6.1.2.1.16.1.1.1.1.1077936128|2|1077936128 +1.3.6.1.2.1.17.1.4.1.2.113246272|2|100663360 +1.3.6.1.2.1.17.1.4.1.2.113247296|2|100664384 +1.3.6.1.2.1.17.1.4.1.2.113248320|2|100665408 +1.3.6.1.2.1.17.1.4.1.2.1078722560|2|1078198272 +1.3.6.1.2.1.17.1.4.1.2.1078723072|2|1078198784 +1.3.6.1.2.1.17.1.4.1.2.1078723584|2|1078199296 +1.3.6.1.2.1.17.1.4.1.2.1078724096|2|1078199808 +1.3.6.1.2.1.17.1.4.1.2.1078724608|2|1078200320 +1.3.6.1.2.1.17.1.4.1.2.1078725120|2|1078200832 +1.3.6.1.2.1.17.1.4.1.2.1078725632|2|1078201344 +1.3.6.1.2.1.17.1.4.1.2.1078726144|2|1078201856 +1.3.6.1.2.1.17.1.4.1.2.1078726656|2|1078202368 +1.3.6.1.2.1.17.1.4.1.2.1078727168|2|1078202880 +1.3.6.1.2.1.17.1.4.1.2.1078727680|2|1078203392 +1.3.6.1.2.1.17.1.4.1.2.1078728192|2|1078203904 +1.3.6.1.2.1.17.1.4.1.2.1078728704|2|1078204416 +1.3.6.1.2.1.17.1.4.1.2.1078729216|2|1078204928 +1.3.6.1.2.1.17.1.4.1.2.1078729728|2|1078205440 +1.3.6.1.2.1.17.1.4.1.2.1078730240|2|1078205952 +1.3.6.1.2.1.17.1.4.1.2.1078730752|2|1078206464 +1.3.6.1.2.1.17.1.4.1.2.1078731264|2|1078206976 +1.3.6.1.2.1.17.1.4.1.2.1078731776|2|1078207488 +1.3.6.1.2.1.17.1.4.1.2.1078732288|2|1078208000 +1.3.6.1.2.1.17.1.4.1.2.1078732800|2|1078208512 +1.3.6.1.2.1.17.1.4.1.2.1078733312|2|1078209024 +1.3.6.1.2.1.17.1.4.1.2.1078733824|2|1078209536 +1.3.6.1.2.1.17.1.4.1.2.1078734336|2|1078210048 +1.3.6.1.2.1.17.1.4.1.2.1078734848|2|1078210560 +1.3.6.1.2.1.17.1.4.1.2.1078735360|2|1078211072 +1.3.6.1.2.1.17.1.4.1.2.1078735872|2|1078211584 +1.3.6.1.2.1.17.1.4.1.2.1078736384|2|1078212096 +1.3.6.1.2.1.17.1.4.1.2.1078736896|2|1078212608 +1.3.6.1.2.1.17.1.4.1.2.1078737408|2|1078213120 +1.3.6.1.2.1.17.1.4.1.2.1078737920|2|1078213632 +1.3.6.1.2.1.17.1.4.1.2.1078738432|2|1078214144 +1.3.6.1.2.1.17.1.4.1.2.1078738944|2|1078214656 +1.3.6.1.2.1.17.1.4.1.2.1078739456|2|1078215168 +1.3.6.1.2.1.17.1.4.1.2.1078739968|2|1078215680 +1.3.6.1.2.1.17.1.4.1.2.1078740480|2|1078216192 +1.3.6.1.2.1.17.1.4.1.2.1080819712|2|1080295424 +1.3.6.1.2.1.17.1.4.1.2.1080820224|2|1080295936 +1.3.6.1.2.1.17.1.4.1.2.1080820736|2|1080296448 +1.3.6.1.2.1.17.1.4.1.2.1080821248|2|1080296960 +1.3.6.1.2.1.17.1.4.1.2.1080821760|2|1080297472 +1.3.6.1.2.1.17.1.4.1.2.1080822272|2|1080297984 +1.3.6.1.2.1.17.1.4.1.2.1080822784|2|1080298496 +1.3.6.1.2.1.17.1.4.1.2.1080823296|2|1080299008 +1.3.6.1.2.1.17.1.4.1.2.1080823808|2|1080299520 +1.3.6.1.2.1.17.1.4.1.2.1080824320|2|1080300032 +1.3.6.1.2.1.17.1.4.1.2.1080824832|2|1080300544 +1.3.6.1.2.1.17.1.4.1.2.1080825344|2|1080301056 +1.3.6.1.2.1.17.1.4.1.2.1080825856|2|1080301568 +1.3.6.1.2.1.17.1.4.1.2.1080826368|2|1080302080 +1.3.6.1.2.1.17.1.4.1.2.1080826880|2|1080302592 +1.3.6.1.2.1.17.1.4.1.2.1080827392|2|1080303104 +1.3.6.1.2.1.17.1.4.1.2.1080827904|2|1080303616 +1.3.6.1.2.1.17.1.4.1.2.1080828416|2|1080304128 +1.3.6.1.2.1.17.1.4.1.2.1080828928|2|1080304640 +1.3.6.1.2.1.17.1.4.1.2.1080829440|2|1080305152 +1.3.6.1.2.1.17.1.4.1.2.1080829952|2|1080305664 +1.3.6.1.2.1.17.1.4.1.2.1080830464|2|1080306176 +1.3.6.1.2.1.17.1.4.1.2.1080830976|2|1080306688 +1.3.6.1.2.1.17.1.4.1.2.1080831488|2|1080307200 +1.3.6.1.2.1.17.1.4.1.2.1080832000|2|1080307712 +1.3.6.1.2.1.17.1.4.1.2.1080832512|2|1080308224 +1.3.6.1.2.1.17.1.4.1.2.1080833024|2|1080308736 +1.3.6.1.2.1.17.1.4.1.2.1080833536|2|1080309248 +1.3.6.1.2.1.17.1.4.1.2.1080834048|2|1080309760 +1.3.6.1.2.1.17.1.4.1.2.1080834560|2|1080310272 +1.3.6.1.2.1.17.1.4.1.2.1080835072|2|1080310784 +1.3.6.1.2.1.17.1.4.1.2.1080835584|2|1080311296 +1.3.6.1.2.1.17.1.4.1.2.1080836096|2|1080311808 +1.3.6.1.2.1.17.1.4.1.2.1080836608|2|1080312320 +1.3.6.1.2.1.17.1.4.1.2.1080837120|2|1080312832 +1.3.6.1.2.1.17.1.4.1.2.1080837632|2|1080313344 +1.3.6.1.2.1.17.1.4.1.2.1082916864|2|1082392576 +1.3.6.1.2.1.17.1.4.1.2.1082917376|2|1082393088 +1.3.6.1.2.1.17.1.4.1.2.1082917888|2|1082393600 +1.3.6.1.2.1.17.1.4.1.2.1082918400|2|1082394112 +1.3.6.1.2.1.17.1.4.1.2.1082918912|2|1082394624 +1.3.6.1.2.1.17.1.4.1.2.1082919424|2|1082395136 +1.3.6.1.2.1.17.1.4.1.2.1082919936|2|1082395648 +1.3.6.1.2.1.17.1.4.1.2.1082920448|2|1082396160 +1.3.6.1.2.1.17.1.4.1.2.1082920960|2|1082396672 +1.3.6.1.2.1.17.1.4.1.2.1082921472|2|1082397184 +1.3.6.1.2.1.17.1.4.1.2.1082921984|2|1082397696 +1.3.6.1.2.1.17.1.4.1.2.1082922496|2|1082398208 +1.3.6.1.2.1.17.1.4.1.2.1082923008|2|1082398720 +1.3.6.1.2.1.17.1.4.1.2.1082923520|2|1082399232 +1.3.6.1.2.1.17.1.4.1.2.1082924032|2|1082399744 +1.3.6.1.2.1.17.1.4.1.2.1082924544|2|1082400256 +1.3.6.1.2.1.17.1.4.1.2.1082925056|2|1082400768 +1.3.6.1.2.1.17.1.4.1.2.1082925568|2|1082401280 +1.3.6.1.2.1.17.1.4.1.2.1082926080|2|1082401792 +1.3.6.1.2.1.17.1.4.1.2.1082926592|2|1082402304 +1.3.6.1.2.1.17.1.4.1.2.1082927104|2|1082402816 +1.3.6.1.2.1.17.1.4.1.2.1082927616|2|1082403328 +1.3.6.1.2.1.17.1.4.1.2.1082928128|2|1082403840 +1.3.6.1.2.1.17.1.4.1.2.1082928640|2|1082404352 +1.3.6.1.2.1.17.1.4.1.2.1082929152|2|1082404864 +1.3.6.1.2.1.17.1.4.1.2.1082929664|2|1082405376 +1.3.6.1.2.1.17.1.4.1.2.1082930176|2|1082405888 +1.3.6.1.2.1.17.1.4.1.2.1082930688|2|1082406400 +1.3.6.1.2.1.17.1.4.1.2.1082931200|2|1082406912 +1.3.6.1.2.1.17.1.4.1.2.1082931712|2|1082407424 +1.3.6.1.2.1.17.1.4.1.2.1082932224|2|1082407936 +1.3.6.1.2.1.17.1.4.1.2.1082932736|2|1082408448 +1.3.6.1.2.1.17.1.4.1.2.1082933248|2|1082408960 +1.3.6.1.2.1.17.1.4.1.2.1082933760|2|1082409472 +1.3.6.1.2.1.17.1.4.1.2.1082934272|2|1082409984 +1.3.6.1.2.1.17.1.4.1.2.1082934784|2|1082410496 +1.3.6.1.2.1.17.1.4.1.2.1085014016|2|1084489728 +1.3.6.1.2.1.17.1.4.1.2.1085014528|2|1084490240 +1.3.6.1.2.1.17.1.4.1.2.1085015040|2|1084490752 +1.3.6.1.2.1.17.1.4.1.2.1085015552|2|1084491264 +1.3.6.1.2.1.17.1.4.1.2.1085016064|2|1084491776 +1.3.6.1.2.1.17.1.4.1.2.1085016576|2|1084492288 +1.3.6.1.2.1.17.1.4.1.2.1085017088|2|1084492800 +1.3.6.1.2.1.17.1.4.1.2.1085017600|2|1084493312 +1.3.6.1.2.1.17.1.4.1.2.1085018112|2|1084493824 +1.3.6.1.2.1.17.1.4.1.2.1085018624|2|1084494336 +1.3.6.1.2.1.17.1.4.1.2.1085019136|2|1084494848 +1.3.6.1.2.1.17.1.4.1.2.1085019648|2|1084495360 +1.3.6.1.2.1.17.1.4.1.2.1085020160|2|1084495872 +1.3.6.1.2.1.17.1.4.1.2.1085020672|2|1084496384 +1.3.6.1.2.1.17.1.4.1.2.1085021184|2|1084496896 +1.3.6.1.2.1.17.1.4.1.2.1085021696|2|1084497408 +1.3.6.1.2.1.17.1.4.1.2.1085022208|2|1084497920 +1.3.6.1.2.1.17.1.4.1.2.1085022720|2|1084498432 +1.3.6.1.2.1.17.1.4.1.2.1085023232|2|1084498944 +1.3.6.1.2.1.17.1.4.1.2.1085023744|2|1084499456 +1.3.6.1.2.1.17.1.4.1.2.1085024256|2|1084499968 +1.3.6.1.2.1.17.1.4.1.2.1085024768|2|1084500480 +1.3.6.1.2.1.17.1.4.1.2.1085025280|2|1084500992 +1.3.6.1.2.1.17.1.4.1.2.1085025792|2|1084501504 +1.3.6.1.2.1.17.1.4.1.2.1085026304|2|1084502016 +1.3.6.1.2.1.17.1.4.1.2.1085026816|2|1084502528 +1.3.6.1.2.1.17.1.4.1.2.1085027328|2|1084503040 +1.3.6.1.2.1.17.1.4.1.2.1085027840|2|1084503552 +1.3.6.1.2.1.17.1.4.1.2.1085028352|2|1084504064 +1.3.6.1.2.1.17.1.4.1.2.1085028864|2|1084504576 +1.3.6.1.2.1.17.1.4.1.2.1085029376|2|1084505088 +1.3.6.1.2.1.17.1.4.1.2.1085029888|2|1084505600 +1.3.6.1.2.1.17.1.4.1.2.1085030400|2|1084506112 +1.3.6.1.2.1.17.1.4.1.2.1085030912|2|1084506624 +1.3.6.1.2.1.17.1.4.1.2.1085031424|2|1084507136 +1.3.6.1.2.1.17.1.4.1.2.1085031936|2|1084507648 +1.3.6.1.2.1.17.1.4.1.2.1087111168|2|1086586880 +1.3.6.1.2.1.17.1.4.1.2.1087111680|2|1086587392 +1.3.6.1.2.1.17.1.4.1.2.1087112192|2|1086587904 +1.3.6.1.2.1.17.1.4.1.2.1087112704|2|1086588416 +1.3.6.1.2.1.17.1.4.1.2.1087113216|2|1086588928 +1.3.6.1.2.1.17.1.4.1.2.1087113728|2|1086589440 +1.3.6.1.2.1.17.1.4.1.2.1087114240|2|1086589952 +1.3.6.1.2.1.17.1.4.1.2.1087114752|2|1086590464 +1.3.6.1.2.1.17.1.4.1.2.1087115264|2|1086590976 +1.3.6.1.2.1.17.1.4.1.2.1087115776|2|1086591488 +1.3.6.1.2.1.17.1.4.1.2.1087116288|2|1086592000 +1.3.6.1.2.1.17.1.4.1.2.1087116800|2|1086592512 +1.3.6.1.2.1.17.1.4.1.2.1087117312|2|1086593024 +1.3.6.1.2.1.17.1.4.1.2.1087117824|2|1086593536 +1.3.6.1.2.1.17.1.4.1.2.1087118336|2|1086594048 +1.3.6.1.2.1.17.1.4.1.2.1087118848|2|1086594560 +1.3.6.1.2.1.17.1.4.1.2.1087119360|2|1086595072 +1.3.6.1.2.1.17.1.4.1.2.1087119872|2|1086595584 +1.3.6.1.2.1.17.1.4.1.2.1087120384|2|1086596096 +1.3.6.1.2.1.17.1.4.1.2.1087120896|2|1086596608 +1.3.6.1.2.1.17.1.4.1.2.1087121408|2|1086597120 +1.3.6.1.2.1.17.1.4.1.2.1087121920|2|1086597632 +1.3.6.1.2.1.17.1.4.1.2.1087122432|2|1086598144 +1.3.6.1.2.1.17.1.4.1.2.1087122944|2|1086598656 +1.3.6.1.2.1.17.1.4.1.2.1087123456|2|1086599168 +1.3.6.1.2.1.17.1.4.1.2.1087123968|2|1086599680 +1.3.6.1.2.1.17.1.4.1.2.1087124480|2|1086600192 +1.3.6.1.2.1.17.1.4.1.2.1087124992|2|1086600704 +1.3.6.1.2.1.17.1.4.1.2.1087125504|2|1086601216 +1.3.6.1.2.1.17.1.4.1.2.1087126016|2|1086601728 +1.3.6.1.2.1.17.1.4.1.2.1087126528|2|1086602240 +1.3.6.1.2.1.17.1.4.1.2.1087127040|2|1086602752 +1.3.6.1.2.1.17.1.4.1.2.1087127552|2|1086603264 +1.3.6.1.2.1.17.1.4.1.2.1087128064|2|1086603776 +1.3.6.1.2.1.17.1.4.1.2.1087128576|2|1086604288 +1.3.6.1.2.1.17.1.4.1.2.1087129088|2|1086604800 +1.3.6.1.2.1.17.1.4.1.2.1089208320|2|1088684032 +1.3.6.1.2.1.17.1.4.1.2.1089208832|2|1088684544 +1.3.6.1.2.1.17.1.4.1.2.1089209344|2|1088685056 +1.3.6.1.2.1.17.1.4.1.2.1089209856|2|1088685568 +1.3.6.1.2.1.17.1.4.1.2.1089210368|2|1088686080 +1.3.6.1.2.1.17.1.4.1.2.1089210880|2|1088686592 +1.3.6.1.2.1.17.1.4.1.2.1089211392|2|1088687104 +1.3.6.1.2.1.17.1.4.1.2.1089211904|2|1088687616 +1.3.6.1.2.1.17.1.4.1.2.1089212416|2|1088688128 +1.3.6.1.2.1.17.1.4.1.2.1089212928|2|1088688640 +1.3.6.1.2.1.17.1.4.1.2.1089213440|2|1088689152 +1.3.6.1.2.1.17.1.4.1.2.1089213952|2|1088689664 +1.3.6.1.2.1.17.1.4.1.2.1089214464|2|1088690176 +1.3.6.1.2.1.17.1.4.1.2.1089214976|2|1088690688 +1.3.6.1.2.1.17.1.4.1.2.1089215488|2|1088691200 +1.3.6.1.2.1.17.1.4.1.2.1089216000|2|1088691712 +1.3.6.1.2.1.17.1.4.1.2.1089216512|2|1088692224 +1.3.6.1.2.1.17.1.4.1.2.1089217024|2|1088692736 +1.3.6.1.2.1.17.1.4.1.2.1089217536|2|1088693248 +1.3.6.1.2.1.17.1.4.1.2.1089218048|2|1088693760 +1.3.6.1.2.1.17.1.4.1.2.1089218560|2|1088694272 +1.3.6.1.2.1.17.1.4.1.2.1089219072|2|1088694784 +1.3.6.1.2.1.17.1.4.1.2.1089219584|2|1088695296 +1.3.6.1.2.1.17.1.4.1.2.1089220096|2|1088695808 +1.3.6.1.2.1.17.1.4.1.2.1089220608|2|1088696320 +1.3.6.1.2.1.17.1.4.1.2.1089221120|2|1088696832 +1.3.6.1.2.1.17.1.4.1.2.1089221632|2|1088697344 +1.3.6.1.2.1.17.1.4.1.2.1089222144|2|1088697856 +1.3.6.1.2.1.17.1.4.1.2.1089222656|2|1088698368 +1.3.6.1.2.1.17.1.4.1.2.1089223168|2|1088698880 +1.3.6.1.2.1.17.1.4.1.2.1089223680|2|1088699392 +1.3.6.1.2.1.17.1.4.1.2.1089224192|2|1088699904 +1.3.6.1.2.1.17.1.4.1.2.1089224704|2|1088700416 +1.3.6.1.2.1.17.1.4.1.2.1089225216|2|1088700928 +1.3.6.1.2.1.17.1.4.1.2.1089225728|2|1088701440 +1.3.6.1.2.1.17.1.4.1.2.1089226240|2|1088701952 +1.3.6.1.2.1.17.7.1.4.5.1.1.113246272|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.113247296|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.113248320|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078722560|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078723072|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078723584|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078724096|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078724608|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078725120|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078725632|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078726144|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078726656|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078727168|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078727680|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078728192|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078728704|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078729216|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078729728|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078730240|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078730752|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078731264|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078731776|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078732288|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078732800|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078733312|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078733824|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078734336|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078734848|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078735360|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078735872|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078736384|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078736896|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078737408|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078737920|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078738432|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078738944|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078739456|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078739968|66|600 +1.3.6.1.2.1.17.7.1.4.5.1.1.1078740480|66|600 +1.3.6.1.2.1.31.1.1.1.1.100663360|4|PHYSICALUNI +1.3.6.1.2.1.31.1.1.1.1.100664384|4|PHYSICALUNI +1.3.6.1.2.1.31.1.1.1.1.100665408|4|PHYSICALUNI +1.3.6.1.2.1.31.1.1.1.1.104857600|4| +1.3.6.1.2.1.31.1.1.1.1.104988672|4| +1.3.6.1.2.1.31.1.1.1.1.105119744|4| +1.3.6.1.2.1.31.1.1.1.1.105250816|4| +1.3.6.1.2.1.31.1.1.1.1.105381888|4| +1.3.6.1.2.1.31.1.1.1.1.105512960|4| +1.3.6.1.2.1.31.1.1.1.1.105644032|4| +1.3.6.1.2.1.31.1.1.1.1.105775104|4| +1.3.6.1.2.1.31.1.1.1.1.105906176|4| +1.3.6.1.2.1.31.1.1.1.1.106037248|4| +1.3.6.1.2.1.31.1.1.1.1.106168320|4| +1.3.6.1.2.1.31.1.1.1.1.106299392|4| +1.3.6.1.2.1.31.1.1.1.1.106430464|4| +1.3.6.1.2.1.31.1.1.1.1.106561536|4| +1.3.6.1.2.1.31.1.1.1.1.106692608|4| +1.3.6.1.2.1.31.1.1.1.1.106823680|4| +1.3.6.1.2.1.31.1.1.1.1.127926272|4|PON +1.3.6.1.2.1.31.1.1.1.1.128057344|4|PON +1.3.6.1.2.1.31.1.1.1.1.128188416|4|PON +1.3.6.1.2.1.31.1.1.1.1.128319488|4|PON +1.3.6.1.2.1.31.1.1.1.1.128450560|4|PON +1.3.6.1.2.1.31.1.1.1.1.128581632|4|PON +1.3.6.1.2.1.31.1.1.1.1.128712704|4|PON +1.3.6.1.2.1.31.1.1.1.1.128843776|4|PON +1.3.6.1.2.1.31.1.1.1.1.128974848|4|PON +1.3.6.1.2.1.31.1.1.1.1.129105920|4|PON +1.3.6.1.2.1.31.1.1.1.1.129236992|4|PON +1.3.6.1.2.1.31.1.1.1.1.129368064|4|PON +1.3.6.1.2.1.31.1.1.1.1.129499136|4|PON +1.3.6.1.2.1.31.1.1.1.1.129630208|4|PON +1.3.6.1.2.1.31.1.1.1.1.129761280|4|PON +1.3.6.1.2.1.31.1.1.1.1.129892352|4|PON +1.3.6.1.2.1.31.1.1.1.1.130023424|4|ONT +1.3.6.1.2.1.31.1.1.1.1.130024448|4|ONT +1.3.6.1.2.1.31.1.1.1.1.130025472|4|ONT +1.3.6.1.2.1.31.1.1.1.1.205520896|4| +1.3.6.1.2.1.31.1.1.1.1.205651968|4| +1.3.6.1.2.1.31.1.1.1.1.205783040|4| +1.3.6.1.2.1.31.1.1.1.1.205914112|4| +1.3.6.1.2.1.31.1.1.1.1.206045184|4| +1.3.6.1.2.1.31.1.1.1.1.206176256|4| +1.3.6.1.2.1.31.1.1.1.1.206307328|4| +1.3.6.1.2.1.31.1.1.1.1.206438400|4| +1.3.6.1.2.1.31.1.1.1.1.206569472|4| +1.3.6.1.2.1.31.1.1.1.1.206700544|4| +1.3.6.1.2.1.31.1.1.1.1.206831616|4| +1.3.6.1.2.1.31.1.1.1.1.206962688|4| +1.3.6.1.2.1.31.1.1.1.1.207093760|4| +1.3.6.1.2.1.31.1.1.1.1.207224832|4| +1.3.6.1.2.1.31.1.1.1.1.207355904|4| +1.3.6.1.2.1.31.1.1.1.1.207486976|4| +1.3.6.1.2.1.31.1.1.1.1.228589568|4|PON +1.3.6.1.2.1.31.1.1.1.1.228720640|4|PON +1.3.6.1.2.1.31.1.1.1.1.228851712|4|PON +1.3.6.1.2.1.31.1.1.1.1.228982784|4|PON +1.3.6.1.2.1.31.1.1.1.1.229113856|4|PON +1.3.6.1.2.1.31.1.1.1.1.229244928|4|PON +1.3.6.1.2.1.31.1.1.1.1.229376000|4|PON +1.3.6.1.2.1.31.1.1.1.1.229507072|4|PON +1.3.6.1.2.1.31.1.1.1.1.229638144|4|PON +1.3.6.1.2.1.31.1.1.1.1.229769216|4|PON +1.3.6.1.2.1.31.1.1.1.1.229900288|4|PON +1.3.6.1.2.1.31.1.1.1.1.230031360|4|PON +1.3.6.1.2.1.31.1.1.1.1.230162432|4|PON +1.3.6.1.2.1.31.1.1.1.1.230293504|4|PON +1.3.6.1.2.1.31.1.1.1.1.230424576|4|PON +1.3.6.1.2.1.31.1.1.1.1.230555648|4|PON +1.3.6.1.2.1.31.1.1.1.1.306184192|4| +1.3.6.1.2.1.31.1.1.1.1.306315264|4| +1.3.6.1.2.1.31.1.1.1.1.306446336|4| +1.3.6.1.2.1.31.1.1.1.1.306577408|4| +1.3.6.1.2.1.31.1.1.1.1.306708480|4| +1.3.6.1.2.1.31.1.1.1.1.306839552|4| +1.3.6.1.2.1.31.1.1.1.1.306970624|4| +1.3.6.1.2.1.31.1.1.1.1.307101696|4| +1.3.6.1.2.1.31.1.1.1.1.307232768|4| +1.3.6.1.2.1.31.1.1.1.1.307363840|4| +1.3.6.1.2.1.31.1.1.1.1.307494912|4| +1.3.6.1.2.1.31.1.1.1.1.307625984|4| +1.3.6.1.2.1.31.1.1.1.1.307757056|4| +1.3.6.1.2.1.31.1.1.1.1.307888128|4| +1.3.6.1.2.1.31.1.1.1.1.308019200|4| +1.3.6.1.2.1.31.1.1.1.1.308150272|4| +1.3.6.1.2.1.31.1.1.1.1.329252864|4|PON +1.3.6.1.2.1.31.1.1.1.1.329383936|4|PON +1.3.6.1.2.1.31.1.1.1.1.329515008|4|PON +1.3.6.1.2.1.31.1.1.1.1.329646080|4|PON +1.3.6.1.2.1.31.1.1.1.1.329777152|4|PON +1.3.6.1.2.1.31.1.1.1.1.329908224|4|PON +1.3.6.1.2.1.31.1.1.1.1.330039296|4|PON +1.3.6.1.2.1.31.1.1.1.1.330170368|4|PON +1.3.6.1.2.1.31.1.1.1.1.330301440|4|PON +1.3.6.1.2.1.31.1.1.1.1.330432512|4|PON +1.3.6.1.2.1.31.1.1.1.1.330563584|4|PON +1.3.6.1.2.1.31.1.1.1.1.330694656|4|PON +1.3.6.1.2.1.31.1.1.1.1.330825728|4|PON +1.3.6.1.2.1.31.1.1.1.1.330956800|4|PON +1.3.6.1.2.1.31.1.1.1.1.331087872|4|PON +1.3.6.1.2.1.31.1.1.1.1.331218944|4|PON +1.3.6.1.2.1.31.1.1.1.1.1077936128|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077936640|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077937152|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077937664|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077938176|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077938688|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077939200|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077939712|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077940224|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077940736|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077941248|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077941760|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077942272|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077942784|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077943296|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077943808|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077944320|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077944832|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077945344|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077945856|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077946368|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077946880|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077947392|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077947904|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077948416|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077948928|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077949440|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077949952|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077950464|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077950976|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077951488|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077952000|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077952512|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077953024|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077953536|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1077954048|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1078198272|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078198784|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078199296|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078199808|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078200320|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078200832|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078201344|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078201856|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078202368|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078202880|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078203392|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078203904|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078204416|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078204928|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078205440|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078205952|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078206464|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078206976|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078207488|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078208000|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078208512|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078209024|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078209536|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078210048|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078210560|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078211072|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078211584|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078212096|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078212608|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078213120|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078213632|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078214144|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078214656|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078215168|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078215680|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1078216192|4|Link aggregation interface +1.3.6.1.2.1.31.1.1.1.1.1079377920|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1081475072|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1087766528|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.1.1.1.1094057984|4|P2P Ethernet interface +1.3.6.1.2.1.31.1.2.1.3.20971520.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.20972032.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.20972544.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.100663360.130023424|2|1 +1.3.6.1.2.1.31.1.2.1.3.100664384.130024448|2|1 +1.3.6.1.2.1.31.1.2.1.3.100665408.130025472|2|1 +1.3.6.1.2.1.31.1.2.1.3.104857600.127926272|2|1 +1.3.6.1.2.1.31.1.2.1.3.104988672.128057344|2|1 +1.3.6.1.2.1.31.1.2.1.3.105119744.128188416|2|1 +1.3.6.1.2.1.31.1.2.1.3.105250816.128319488|2|1 +1.3.6.1.2.1.31.1.2.1.3.105381888.128450560|2|1 +1.3.6.1.2.1.31.1.2.1.3.105512960.128581632|2|1 +1.3.6.1.2.1.31.1.2.1.3.105644032.128712704|2|1 +1.3.6.1.2.1.31.1.2.1.3.105775104.128843776|2|1 +1.3.6.1.2.1.31.1.2.1.3.105906176.128974848|2|1 +1.3.6.1.2.1.31.1.2.1.3.106037248.129105920|2|1 +1.3.6.1.2.1.31.1.2.1.3.106168320.129236992|2|1 +1.3.6.1.2.1.31.1.2.1.3.106299392.129368064|2|1 +1.3.6.1.2.1.31.1.2.1.3.106430464.129499136|2|1 +1.3.6.1.2.1.31.1.2.1.3.106561536.129630208|2|1 +1.3.6.1.2.1.31.1.2.1.3.106692608.129761280|2|1 +1.3.6.1.2.1.31.1.2.1.3.106823680.129892352|2|1 +1.3.6.1.2.1.31.1.2.1.3.113246272.100663360|2|1 +1.3.6.1.2.1.31.1.2.1.3.113247296.100664384|2|1 +1.3.6.1.2.1.31.1.2.1.3.113248320.100665408|2|1 +1.3.6.1.2.1.31.1.2.1.3.115343360.113246272|2|1 +1.3.6.1.2.1.31.1.2.1.3.115343361.113246272|2|1 +1.3.6.1.2.1.31.1.2.1.3.115343362.113247296|2|1 +1.3.6.1.2.1.31.1.2.1.3.115343363.113247296|2|1 +1.3.6.1.2.1.31.1.2.1.3.115343364.113248320|2|1 +1.3.6.1.2.1.31.1.2.1.3.115343365.113248320|2|1 +1.3.6.1.2.1.31.1.2.1.3.127926272.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.128057344.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.128188416.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.128319488.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.128450560.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.128581632.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.128712704.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.128843776.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.128974848.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.129105920.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.129236992.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.129368064.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.129499136.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.129630208.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.129761280.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.129892352.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.130023424.104857600|2|1 +1.3.6.1.2.1.31.1.2.1.3.130024448.104857600|2|1 +1.3.6.1.2.1.31.1.2.1.3.130025472.104857600|2|1 +1.3.6.1.2.1.31.1.2.1.3.205520896.228589568|2|1 +1.3.6.1.2.1.31.1.2.1.3.205651968.228720640|2|1 +1.3.6.1.2.1.31.1.2.1.3.205783040.228851712|2|1 +1.3.6.1.2.1.31.1.2.1.3.205914112.228982784|2|1 +1.3.6.1.2.1.31.1.2.1.3.206045184.229113856|2|1 +1.3.6.1.2.1.31.1.2.1.3.206176256.229244928|2|1 +1.3.6.1.2.1.31.1.2.1.3.206307328.229376000|2|1 +1.3.6.1.2.1.31.1.2.1.3.206438400.229507072|2|1 +1.3.6.1.2.1.31.1.2.1.3.206569472.229638144|2|1 +1.3.6.1.2.1.31.1.2.1.3.206700544.229769216|2|1 +1.3.6.1.2.1.31.1.2.1.3.206831616.229900288|2|1 +1.3.6.1.2.1.31.1.2.1.3.206962688.230031360|2|1 +1.3.6.1.2.1.31.1.2.1.3.207093760.230162432|2|1 +1.3.6.1.2.1.31.1.2.1.3.207224832.230293504|2|1 +1.3.6.1.2.1.31.1.2.1.3.207355904.230424576|2|1 +1.3.6.1.2.1.31.1.2.1.3.207486976.230555648|2|1 +1.3.6.1.2.1.31.1.2.1.3.228589568.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.228720640.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.228851712.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.228982784.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.229113856.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.229244928.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.229376000.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.229507072.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.229638144.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.229769216.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.229900288.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.230031360.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.230162432.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.230293504.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.230424576.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.230555648.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.306184192.329252864|2|1 +1.3.6.1.2.1.31.1.2.1.3.306315264.329383936|2|1 +1.3.6.1.2.1.31.1.2.1.3.306446336.329515008|2|1 +1.3.6.1.2.1.31.1.2.1.3.306577408.329646080|2|1 +1.3.6.1.2.1.31.1.2.1.3.306708480.329777152|2|1 +1.3.6.1.2.1.31.1.2.1.3.306839552.329908224|2|1 +1.3.6.1.2.1.31.1.2.1.3.306970624.330039296|2|1 +1.3.6.1.2.1.31.1.2.1.3.307101696.330170368|2|1 +1.3.6.1.2.1.31.1.2.1.3.307232768.330301440|2|1 +1.3.6.1.2.1.31.1.2.1.3.307363840.330432512|2|1 +1.3.6.1.2.1.31.1.2.1.3.307494912.330563584|2|1 +1.3.6.1.2.1.31.1.2.1.3.307625984.330694656|2|1 +1.3.6.1.2.1.31.1.2.1.3.307757056.330825728|2|1 +1.3.6.1.2.1.31.1.2.1.3.307888128.330956800|2|1 +1.3.6.1.2.1.31.1.2.1.3.308019200.331087872|2|1 +1.3.6.1.2.1.31.1.2.1.3.308150272.331218944|2|1 +1.3.6.1.2.1.31.1.2.1.3.329252864.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.329383936.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.329515008.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.329646080.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.329777152.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.329908224.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.330039296.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.330170368.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.330301440.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.330432512.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.330563584.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.330694656.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.330825728.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.330956800.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.331087872.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.331218944.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077936128.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077936640.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077937152.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077937664.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077938176.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077938688.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077939200.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077939712.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077940224.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077940736.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077941248.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077941760.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077942272.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077942784.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077943296.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077943808.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077944320.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077944832.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077945344.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077945856.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077946368.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077946880.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077947392.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077947904.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077948416.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077948928.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077949440.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077949952.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077950464.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077950976.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077951488.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077952000.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077952512.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077953024.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077953536.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1077954048.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078198272.1077936128|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078198784.1077936640|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078199296.1077937152|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078199808.1077937664|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078200320.1077938176|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078200832.1077938688|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078201344.1077939200|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078201856.1077939712|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078202368.1077940224|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078202880.1077940736|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078203392.1077941248|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078203904.1077941760|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078204416.1077942272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078204928.1077942784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078205440.1077943296|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078205952.1077943808|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078206464.1077944320|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078206976.1077944832|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078207488.1077945344|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078208000.1077945856|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078208512.1077946368|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078209024.1077946880|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078209536.1077947392|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078210048.1077947904|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078210560.1077948416|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078211072.1077948928|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078211584.1077949440|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078212096.1077949952|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078212608.1077950464|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078213120.1077950976|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078213632.1077951488|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078214144.1077952000|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078214656.1077952512|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078215168.1077953024|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078215680.1077953536|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078216192.1077954048|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078722560.1078198272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078723072.1078198784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078723584.1078199296|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078724096.1078199808|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078724608.1078200320|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078725120.1078200832|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078725632.1078201344|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078726144.1078201856|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078726656.1078202368|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078727168.1078202880|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078727680.1078203392|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078728192.1078203904|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078728704.1078204416|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078729216.1078204928|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078729728.1078205440|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078730240.1078205952|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078730752.1078206464|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078731264.1078206976|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078731776.1078207488|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078732288.1078208000|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078732800.1078208512|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078733312.1078209024|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078733824.1078209536|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078734336.1078210048|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078734848.1078210560|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078735360.1078211072|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078735872.1078211584|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078736384.1078212096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078736896.1078212608|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078737408.1078213120|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078737920.1078213632|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078738432.1078214144|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078738944.1078214656|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078739456.1078215168|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078739968.1078215680|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078740480.1078216192|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078853886.1078722560|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078853887.1078722560|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078854398.1078723072|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078854399.1078723072|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078854910.1078723584|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078854911.1078723584|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078855422.1078724096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078855423.1078724096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078855934.1078724608|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078855935.1078724608|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078856446.1078725120|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078856447.1078725120|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078856958.1078725632|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078856959.1078725632|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078857470.1078726144|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078857471.1078726144|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078857982.1078726656|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078857983.1078726656|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078858494.1078727168|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078858495.1078727168|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078859006.1078727680|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078859007.1078727680|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078859518.1078728192|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078859519.1078728192|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078860030.1078728704|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078860031.1078728704|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078860542.1078729216|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078860543.1078729216|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078861054.1078729728|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078861055.1078729728|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078861566.1078730240|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078861567.1078730240|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078862078.1078730752|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078862079.1078730752|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078862590.1078731264|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078862591.1078731264|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078863102.1078731776|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078863103.1078731776|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078863614.1078732288|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078863615.1078732288|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078864126.1078732800|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078864127.1078732800|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078864638.1078733312|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078864639.1078733312|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078865150.1078733824|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078865151.1078733824|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078865662.1078734336|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078865663.1078734336|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078866174.1078734848|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078866175.1078734848|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078866686.1078735360|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078866687.1078735360|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078867198.1078735872|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078867199.1078735872|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078867710.1078736384|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078867711.1078736384|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078868222.1078736896|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078868223.1078736896|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078868734.1078737408|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078868735.1078737408|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078869246.1078737920|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078869247.1078737920|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078869758.1078738432|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078869759.1078738432|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078870270.1078738944|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078870271.1078738944|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078870782.1078739456|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078870783.1078739456|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078871294.1078739968|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078871295.1078739968|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078871806.1078740480|2|1 +1.3.6.1.2.1.31.1.2.1.3.1078871807.1078740480|2|1 +1.3.6.1.2.1.31.1.2.1.3.1079377920.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080033280.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080033792.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080034304.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080034816.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080035328.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080035840.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080036352.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080036864.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080037376.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080037888.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080038400.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080038912.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080039424.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080039936.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080040448.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080040960.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080041472.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080041984.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080042496.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080043008.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080043520.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080044032.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080044544.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080045056.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080045568.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080046080.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080046592.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080047104.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080047616.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080048128.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080048640.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080049152.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080049664.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080050176.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080050688.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080051200.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080295424.1080033280|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080295936.1080033792|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080296448.1080034304|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080296960.1080034816|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080297472.1080035328|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080297984.1080035840|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080298496.1080036352|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080299008.1080036864|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080299520.1080037376|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080300032.1080037888|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080300544.1080038400|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080301056.1080038912|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080301568.1080039424|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080302080.1080039936|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080302592.1080040448|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080303104.1080040960|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080303616.1080041472|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080304128.1080041984|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080304640.1080042496|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080305152.1080043008|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080305664.1080043520|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080306176.1080044032|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080306688.1080044544|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080307200.1080045056|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080307712.1080045568|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080308224.1080046080|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080308736.1080046592|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080309248.1080047104|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080309760.1080047616|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080310272.1080048128|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080310784.1080048640|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080311296.1080049152|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080311808.1080049664|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080312320.1080050176|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080312832.1080050688|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080313344.1080051200|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080819712.1080295424|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080820224.1080295936|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080820736.1080296448|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080821248.1080296960|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080821760.1080297472|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080822272.1080297984|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080822784.1080298496|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080823296.1080299008|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080823808.1080299520|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080824320.1080300032|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080824832.1080300544|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080825344.1080301056|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080825856.1080301568|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080826368.1080302080|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080826880.1080302592|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080827392.1080303104|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080827904.1080303616|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080828416.1080304128|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080828928.1080304640|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080829440.1080305152|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080829952.1080305664|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080830464.1080306176|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080830976.1080306688|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080831488.1080307200|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080832000.1080307712|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080832512.1080308224|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080833024.1080308736|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080833536.1080309248|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080834048.1080309760|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080834560.1080310272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080835072.1080310784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080835584.1080311296|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080836096.1080311808|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080836608.1080312320|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080837120.1080312832|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080837632.1080313344|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080951037.1080819712|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080951038.1080819712|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080951549.1080820224|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080951550.1080820224|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080952061.1080820736|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080952062.1080820736|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080952573.1080821248|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080952574.1080821248|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080953085.1080821760|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080953086.1080821760|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080953597.1080822272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080953598.1080822272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080954109.1080822784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080954110.1080822784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080954621.1080823296|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080954622.1080823296|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080955133.1080823808|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080955134.1080823808|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080955645.1080824320|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080955646.1080824320|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080956157.1080824832|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080956158.1080824832|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080956669.1080825344|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080956670.1080825344|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080957181.1080825856|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080957182.1080825856|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080957693.1080826368|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080957694.1080826368|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080958205.1080826880|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080958206.1080826880|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080958717.1080827392|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080958718.1080827392|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080959229.1080827904|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080959230.1080827904|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080959741.1080828416|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080959742.1080828416|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080960253.1080828928|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080960254.1080828928|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080960765.1080829440|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080960766.1080829440|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080961277.1080829952|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080961278.1080829952|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080961789.1080830464|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080961790.1080830464|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080962301.1080830976|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080962302.1080830976|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080962813.1080831488|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080962814.1080831488|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080963325.1080832000|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080963326.1080832000|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080963837.1080832512|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080963838.1080832512|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080964349.1080833024|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080964350.1080833024|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080964861.1080833536|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080964862.1080833536|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080965373.1080834048|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080965374.1080834048|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080965885.1080834560|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080965886.1080834560|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080966397.1080835072|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080966398.1080835072|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080966909.1080835584|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080966910.1080835584|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080967421.1080836096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080967422.1080836096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080967933.1080836608|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080967934.1080836608|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080968445.1080837120|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080968446.1080837120|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080968957.1080837632|2|1 +1.3.6.1.2.1.31.1.2.1.3.1080968958.1080837632|2|1 +1.3.6.1.2.1.31.1.2.1.3.1081475072.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082130432.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082130944.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082131456.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082131968.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082132480.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082132992.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082133504.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082134016.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082134528.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082135040.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082135552.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082136064.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082136576.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082137088.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082137600.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082138112.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082138624.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082139136.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082139648.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082140160.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082140672.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082141184.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082141696.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082142208.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082142720.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082143232.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082143744.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082144256.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082144768.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082145280.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082145792.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082146304.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082146816.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082147328.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082147840.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082148352.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082392576.1082130432|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082393088.1082130944|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082393600.1082131456|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082394112.1082131968|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082394624.1082132480|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082395136.1082132992|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082395648.1082133504|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082396160.1082134016|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082396672.1082134528|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082397184.1082135040|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082397696.1082135552|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082398208.1082136064|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082398720.1082136576|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082399232.1082137088|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082399744.1082137600|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082400256.1082138112|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082400768.1082138624|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082401280.1082139136|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082401792.1082139648|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082402304.1082140160|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082402816.1082140672|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082403328.1082141184|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082403840.1082141696|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082404352.1082142208|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082404864.1082142720|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082405376.1082143232|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082405888.1082143744|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082406400.1082144256|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082406912.1082144768|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082407424.1082145280|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082407936.1082145792|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082408448.1082146304|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082408960.1082146816|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082409472.1082147328|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082409984.1082147840|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082410496.1082148352|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082916864.1082392576|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082917376.1082393088|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082917888.1082393600|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082918400.1082394112|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082918912.1082394624|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082919424.1082395136|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082919936.1082395648|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082920448.1082396160|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082920960.1082396672|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082921472.1082397184|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082921984.1082397696|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082922496.1082398208|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082923008.1082398720|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082923520.1082399232|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082924032.1082399744|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082924544.1082400256|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082925056.1082400768|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082925568.1082401280|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082926080.1082401792|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082926592.1082402304|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082927104.1082402816|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082927616.1082403328|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082928128.1082403840|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082928640.1082404352|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082929152.1082404864|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082929664.1082405376|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082930176.1082405888|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082930688.1082406400|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082931200.1082406912|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082931712.1082407424|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082932224.1082407936|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082932736.1082408448|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082933248.1082408960|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082933760.1082409472|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082934272.1082409984|2|1 +1.3.6.1.2.1.31.1.2.1.3.1082934784.1082410496|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083048189.1082916864|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083048190.1082916864|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083048701.1082917376|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083048702.1082917376|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083049213.1082917888|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083049214.1082917888|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083049725.1082918400|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083049726.1082918400|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083050237.1082918912|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083050238.1082918912|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083050749.1082919424|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083050750.1082919424|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083051261.1082919936|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083051262.1082919936|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083051773.1082920448|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083051774.1082920448|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083052285.1082920960|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083052286.1082920960|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083052797.1082921472|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083052798.1082921472|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083053309.1082921984|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083053310.1082921984|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083053821.1082922496|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083053822.1082922496|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083054333.1082923008|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083054334.1082923008|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083054845.1082923520|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083054846.1082923520|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083055357.1082924032|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083055358.1082924032|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083055869.1082924544|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083055870.1082924544|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083056381.1082925056|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083056382.1082925056|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083056893.1082925568|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083056894.1082925568|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083057405.1082926080|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083057406.1082926080|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083057917.1082926592|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083057918.1082926592|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083058429.1082927104|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083058430.1082927104|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083058941.1082927616|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083058942.1082927616|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083059453.1082928128|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083059454.1082928128|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083059965.1082928640|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083059966.1082928640|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083060477.1082929152|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083060478.1082929152|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083060989.1082929664|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083060990.1082929664|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083061501.1082930176|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083061502.1082930176|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083062013.1082930688|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083062014.1082930688|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083062525.1082931200|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083062526.1082931200|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083063037.1082931712|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083063038.1082931712|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083063549.1082932224|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083063550.1082932224|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083064061.1082932736|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083064062.1082932736|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083064573.1082933248|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083064574.1082933248|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083065085.1082933760|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083065086.1082933760|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083065597.1082934272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083065598.1082934272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083066109.1082934784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083066110.1082934784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1083572224.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084227584.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084228096.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084228608.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084229120.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084229632.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084230144.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084230656.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084231168.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084231680.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084232192.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084232704.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084233216.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084233728.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084234240.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084234752.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084235264.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084235776.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084236288.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084236800.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084237312.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084237824.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084238336.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084238848.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084239360.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084239872.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084240384.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084240896.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084241408.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084241920.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084242432.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084242944.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084243456.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084243968.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084244480.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084244992.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084245504.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084489728.1084227584|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084490240.1084228096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084490752.1084228608|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084491264.1084229120|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084491776.1084229632|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084492288.1084230144|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084492800.1084230656|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084493312.1084231168|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084493824.1084231680|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084494336.1084232192|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084494848.1084232704|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084495360.1084233216|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084495872.1084233728|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084496384.1084234240|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084496896.1084234752|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084497408.1084235264|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084497920.1084235776|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084498432.1084236288|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084498944.1084236800|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084499456.1084237312|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084499968.1084237824|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084500480.1084238336|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084500992.1084238848|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084501504.1084239360|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084502016.1084239872|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084502528.1084240384|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084503040.1084240896|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084503552.1084241408|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084504064.1084241920|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084504576.1084242432|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084505088.1084242944|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084505600.1084243456|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084506112.1084243968|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084506624.1084244480|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084507136.1084244992|2|1 +1.3.6.1.2.1.31.1.2.1.3.1084507648.1084245504|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085014016.1084489728|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085014528.1084490240|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085015040.1084490752|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085015552.1084491264|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085016064.1084491776|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085016576.1084492288|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085017088.1084492800|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085017600.1084493312|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085018112.1084493824|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085018624.1084494336|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085019136.1084494848|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085019648.1084495360|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085020160.1084495872|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085020672.1084496384|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085021184.1084496896|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085021696.1084497408|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085022208.1084497920|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085022720.1084498432|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085023232.1084498944|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085023744.1084499456|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085024256.1084499968|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085024768.1084500480|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085025280.1084500992|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085025792.1084501504|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085026304.1084502016|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085026816.1084502528|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085027328.1084503040|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085027840.1084503552|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085028352.1084504064|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085028864.1084504576|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085029376.1084505088|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085029888.1084505600|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085030400.1084506112|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085030912.1084506624|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085031424.1084507136|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085031936.1084507648|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085145341.1085014016|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085145342.1085014016|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085145853.1085014528|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085145854.1085014528|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085146365.1085015040|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085146366.1085015040|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085146877.1085015552|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085146878.1085015552|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085147389.1085016064|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085147390.1085016064|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085147901.1085016576|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085147902.1085016576|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085148413.1085017088|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085148414.1085017088|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085148925.1085017600|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085148926.1085017600|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085149437.1085018112|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085149438.1085018112|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085149949.1085018624|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085149950.1085018624|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085150461.1085019136|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085150462.1085019136|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085150973.1085019648|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085150974.1085019648|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085151485.1085020160|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085151486.1085020160|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085151997.1085020672|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085151998.1085020672|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085152509.1085021184|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085152510.1085021184|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085153021.1085021696|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085153022.1085021696|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085153533.1085022208|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085153534.1085022208|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085154045.1085022720|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085154046.1085022720|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085154557.1085023232|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085154558.1085023232|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085155069.1085023744|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085155070.1085023744|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085155581.1085024256|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085155582.1085024256|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085156093.1085024768|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085156094.1085024768|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085156605.1085025280|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085156606.1085025280|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085157117.1085025792|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085157118.1085025792|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085157629.1085026304|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085157630.1085026304|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085158141.1085026816|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085158142.1085026816|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085158653.1085027328|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085158654.1085027328|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085159165.1085027840|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085159166.1085027840|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085159677.1085028352|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085159678.1085028352|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085160189.1085028864|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085160190.1085028864|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085160701.1085029376|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085160702.1085029376|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085161213.1085029888|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085161214.1085029888|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085161725.1085030400|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085161726.1085030400|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085162237.1085030912|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085162238.1085030912|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085162749.1085031424|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085162750.1085031424|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085163261.1085031936|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085163262.1085031936|2|1 +1.3.6.1.2.1.31.1.2.1.3.1085669376.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086324736.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086325248.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086325760.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086326272.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086326784.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086327296.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086327808.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086328320.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086328832.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086329344.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086329856.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086330368.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086330880.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086331392.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086331904.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086332416.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086332928.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086333440.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086333952.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086334464.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086334976.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086335488.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086336000.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086336512.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086337024.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086337536.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086338048.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086338560.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086339072.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086339584.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086340096.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086340608.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086341120.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086341632.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086342144.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086342656.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086586880.1086324736|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086587392.1086325248|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086587904.1086325760|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086588416.1086326272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086588928.1086326784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086589440.1086327296|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086589952.1086327808|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086590464.1086328320|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086590976.1086328832|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086591488.1086329344|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086592000.1086329856|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086592512.1086330368|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086593024.1086330880|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086593536.1086331392|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086594048.1086331904|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086594560.1086332416|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086595072.1086332928|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086595584.1086333440|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086596096.1086333952|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086596608.1086334464|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086597120.1086334976|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086597632.1086335488|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086598144.1086336000|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086598656.1086336512|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086599168.1086337024|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086599680.1086337536|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086600192.1086338048|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086600704.1086338560|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086601216.1086339072|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086601728.1086339584|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086602240.1086340096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086602752.1086340608|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086603264.1086341120|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086603776.1086341632|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086604288.1086342144|2|1 +1.3.6.1.2.1.31.1.2.1.3.1086604800.1086342656|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087111168.1086586880|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087111680.1086587392|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087112192.1086587904|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087112704.1086588416|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087113216.1086588928|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087113728.1086589440|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087114240.1086589952|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087114752.1086590464|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087115264.1086590976|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087115776.1086591488|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087116288.1086592000|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087116800.1086592512|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087117312.1086593024|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087117824.1086593536|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087118336.1086594048|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087118848.1086594560|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087119360.1086595072|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087119872.1086595584|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087120384.1086596096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087120896.1086596608|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087121408.1086597120|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087121920.1086597632|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087122432.1086598144|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087122944.1086598656|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087123456.1086599168|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087123968.1086599680|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087124480.1086600192|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087124992.1086600704|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087125504.1086601216|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087126016.1086601728|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087126528.1086602240|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087127040.1086602752|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087127552.1086603264|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087128064.1086603776|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087128576.1086604288|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087129088.1086604800|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087242493.1087111168|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087242494.1087111168|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087243005.1087111680|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087243006.1087111680|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087243517.1087112192|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087243518.1087112192|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087244029.1087112704|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087244030.1087112704|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087244541.1087113216|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087244542.1087113216|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087245053.1087113728|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087245054.1087113728|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087245565.1087114240|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087245566.1087114240|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087246077.1087114752|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087246078.1087114752|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087246589.1087115264|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087246590.1087115264|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087247101.1087115776|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087247102.1087115776|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087247613.1087116288|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087247614.1087116288|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087248125.1087116800|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087248126.1087116800|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087248637.1087117312|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087248638.1087117312|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087249149.1087117824|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087249150.1087117824|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087249661.1087118336|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087249662.1087118336|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087250173.1087118848|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087250174.1087118848|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087250685.1087119360|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087250686.1087119360|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087251197.1087119872|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087251198.1087119872|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087251709.1087120384|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087251710.1087120384|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087252221.1087120896|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087252222.1087120896|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087252733.1087121408|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087252734.1087121408|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087253245.1087121920|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087253246.1087121920|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087253757.1087122432|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087253758.1087122432|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087254269.1087122944|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087254270.1087122944|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087254781.1087123456|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087254782.1087123456|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087255293.1087123968|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087255294.1087123968|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087255805.1087124480|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087255806.1087124480|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087256317.1087124992|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087256318.1087124992|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087256830.1087125504|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087256831.1087125504|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087257342.1087126016|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087257343.1087126016|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087257854.1087126528|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087257855.1087126528|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087258366.1087127040|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087258367.1087127040|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087258878.1087127552|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087258879.1087127552|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087259390.1087128064|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087259391.1087128064|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087259902.1087128576|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087259903.1087128576|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087260414.1087129088|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087260415.1087129088|2|1 +1.3.6.1.2.1.31.1.2.1.3.1087766528.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088421888.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088422400.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088422912.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088423424.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088423936.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088424448.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088424960.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088425472.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088425984.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088426496.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088427008.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088427520.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088428032.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088428544.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088429056.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088429568.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088430080.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088430592.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088431104.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088431616.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088432128.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088432640.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088433152.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088433664.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088434176.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088434688.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088435200.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088435712.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088436224.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088436736.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088437248.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088437760.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088438272.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088438784.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088439296.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088439808.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088684032.1088421888|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088684544.1088422400|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088685056.1088422912|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088685568.1088423424|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088686080.1088423936|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088686592.1088424448|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088687104.1088424960|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088687616.1088425472|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088688128.1088425984|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088688640.1088426496|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088689152.1088427008|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088689664.1088427520|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088690176.1088428032|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088690688.1088428544|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088691200.1088429056|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088691712.1088429568|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088692224.1088430080|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088692736.1088430592|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088693248.1088431104|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088693760.1088431616|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088694272.1088432128|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088694784.1088432640|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088695296.1088433152|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088695808.1088433664|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088696320.1088434176|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088696832.1088434688|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088697344.1088435200|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088697856.1088435712|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088698368.1088436224|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088698880.1088436736|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088699392.1088437248|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088699904.1088437760|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088700416.1088438272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088700928.1088438784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088701440.1088439296|2|1 +1.3.6.1.2.1.31.1.2.1.3.1088701952.1088439808|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089208320.1088684032|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089208832.1088684544|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089209344.1088685056|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089209856.1088685568|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089210368.1088686080|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089210880.1088686592|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089211392.1088687104|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089211904.1088687616|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089212416.1088688128|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089212928.1088688640|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089213440.1088689152|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089213952.1088689664|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089214464.1088690176|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089214976.1088690688|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089215488.1088691200|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089216000.1088691712|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089216512.1088692224|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089217024.1088692736|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089217536.1088693248|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089218048.1088693760|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089218560.1088694272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089219072.1088694784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089219584.1088695296|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089220096.1088695808|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089220608.1088696320|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089221120.1088696832|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089221632.1088697344|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089222144.1088697856|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089222656.1088698368|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089223168.1088698880|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089223680.1088699392|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089224192.1088699904|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089224704.1088700416|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089225216.1088700928|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089225728.1088701440|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089226240.1088701952|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089339646.1089208320|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089339647.1089208320|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089340158.1089208832|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089340159.1089208832|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089340670.1089209344|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089340671.1089209344|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089341182.1089209856|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089341183.1089209856|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089341694.1089210368|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089341695.1089210368|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089342206.1089210880|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089342207.1089210880|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089342718.1089211392|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089342719.1089211392|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089343230.1089211904|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089343231.1089211904|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089343742.1089212416|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089343743.1089212416|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089344254.1089212928|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089344255.1089212928|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089344766.1089213440|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089344767.1089213440|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089345278.1089213952|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089345279.1089213952|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089345790.1089214464|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089345791.1089214464|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089346302.1089214976|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089346303.1089214976|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089346814.1089215488|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089346815.1089215488|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089347326.1089216000|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089347327.1089216000|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089347838.1089216512|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089347839.1089216512|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089348350.1089217024|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089348351.1089217024|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089348862.1089217536|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089348863.1089217536|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089349374.1089218048|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089349375.1089218048|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089349886.1089218560|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089349887.1089218560|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089350398.1089219072|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089350399.1089219072|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089350910.1089219584|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089350911.1089219584|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089351422.1089220096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089351423.1089220096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089351934.1089220608|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089351935.1089220608|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089352446.1089221120|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089352447.1089221120|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089352958.1089221632|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089352959.1089221632|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089353470.1089222144|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089353471.1089222144|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089353982.1089222656|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089353983.1089222656|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089354494.1089223168|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089354495.1089223168|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089355006.1089223680|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089355007.1089223680|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089355518.1089224192|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089355519.1089224192|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089356030.1089224704|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089356031.1089224704|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089356542.1089225216|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089356543.1089225216|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089357054.1089225728|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089357055.1089225728|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089357566.1089226240|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089357567.1089226240|2|1 +1.3.6.1.2.1.31.1.2.1.3.1089863680.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1094057984.0|2|1 +1.3.6.1.4.1.637.61.1.6.5.1.1.100663360|4|Test_GP +1.3.6.1.4.1.637.61.1.6.5.1.1.100664384|4|Test_GP +1.3.6.1.4.1.637.61.1.6.5.1.1.100665408|4|Test_GP_Nokia_CPE +1.3.6.1.4.1.637.61.1.6.5.1.1.115343360|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.115343361|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.115343362|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.115343363|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.115343364|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.115343365|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077936128|4|1/1/1/1 +1.3.6.1.4.1.637.61.1.6.5.1.1.1077936640|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077937152|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077937664|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077938176|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077938688|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077939200|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077939712|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077940224|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077940736|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077941248|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077941760|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077942272|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077942784|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077943296|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077943808|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077944320|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077944832|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077945344|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077945856|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077946368|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077946880|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077947392|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077947904|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077948416|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077948928|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077949440|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077949952|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077950464|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077950976|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077951488|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077952000|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077952512|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077953024|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077953536|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1077954048|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078198272|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078198784|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078199296|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078199808|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078200320|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078200832|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078201344|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078201856|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078202368|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078202880|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078203392|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078203904|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078204416|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078204928|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078205440|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078205952|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078206464|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078206976|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078207488|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078208000|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078208512|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078209024|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078209536|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078210048|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078210560|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078211072|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078211584|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078212096|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078212608|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078213120|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078213632|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078214144|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078214656|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078215168|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078215680|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078216192|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078853886|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078853887|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078854398|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078854399|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078854910|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078854911|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078855422|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078855423|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078855934|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078855935|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078856446|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078856447|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078856958|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078856959|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078857470|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078857471|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078857982|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078857983|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078858494|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078858495|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078859006|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078859007|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078859518|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078859519|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078860030|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078860031|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078860542|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078860543|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078861054|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078861055|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078861566|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078861567|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078862078|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078862079|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078862590|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078862591|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078863102|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078863103|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078863614|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078863615|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078864126|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078864127|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078864638|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078864639|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078865150|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078865151|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078865662|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078865663|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078866174|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078866175|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078866686|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078866687|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078867198|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078867199|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078867710|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078867711|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078868222|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078868223|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078868734|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078868735|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078869246|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078869247|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078869758|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078869759|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078870270|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078870271|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078870782|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078870783|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078871294|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078871295|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078871806|4|available +1.3.6.1.4.1.637.61.1.6.5.1.1.1078871807|4|available +1.3.6.1.4.1.637.61.1.9.28.1.0|4|R5.7.02a +1.3.6.1.4.1.637.61.1.9.29.1.1.1.4353|2|4353 +1.3.6.1.4.1.637.61.1.9.29.1.1.1.4356|2|4356 +1.3.6.1.4.1.637.61.1.9.29.1.1.1.4359|2|4359 +1.3.6.1.4.1.637.61.1.9.29.1.1.2.4353|2|1549544082 +1.3.6.1.4.1.637.61.1.9.29.1.1.2.4356|2|1549544082 +1.3.6.1.4.1.637.61.1.9.29.1.1.2.4359|2|1549544082 +1.3.6.1.4.1.637.61.1.9.29.1.1.3.4353|4x|0303170A0303030D040303030B0403030a3136203033203034203033203043203038203133203231203237203238203242203237203239203342203238203236200a3241203237203235203234203231203143203034203034203133203438203539203538203444203330203331203332200a3330203137203034203033203041203035203033203033203039203130203034203033203033203033203033203042200a3033203033203033203044203034203033203136203033203034203042203033203033203033203033203034203033200a3034203033203033203145203033203033203033203033203034203033203033203033203033203042203033203033200a3136203044203034203033203033203033203034203042203033203033203033203033203034203136203033203033200a3033203042203033203033203033203033203034203033203033203033203037203141203033203033203036203242200a3235203237203132203233203041203339203345203131203333203338203343203136203046203130203033203137200a3043203144203238203237203239203238203343203238203239203243203235203236203235203235203239203136200a3033203045203236203342203236203144203133203343203439203246203037203041203038203131203039203041200a314220333520333520334220 +1.3.6.1.4.1.637.61.1.9.29.1.1.3.4356|4x|0E0F06060204110906050B08090E03040a3037203039203043203039203045203041203033203036203038203042203044203036203033203035203042203132200a3038203035203036203042203041203039203037203037203044203037203042203045203036203035203036203038200a3039203037203039203037203036203042203037203038203038203034203034203035203045203041203035203045200a3035203036203044203039203039203032203041203132203042203046203036203033203038203037203039203041200a3034203036203034203042203037203043203034203034203035203039203043203044203037203035203035203037200a3044203041203034203034203039203046203041203045203034203033203039203036203039203041203035203038200a3033203039203038203036203035203034203038203037203043203044203034203035203035203043203043203036200a3035203034203037203043203038203045203036203130203134203042203042203042203035203038203032203132200a3035203043203036203038203037203037203043203133203042203041203130203131203044203044203042203042200a3131203130203131203133203039203043203132203045203135203043203038203046203044203130203045203130200a314220313920313120303720 +1.3.6.1.4.1.637.61.1.9.29.1.1.3.4359|4x|080A0208060E0B0B0803080A0B0C07040a3038203038203041203037203033203131203036203041203042203039203036203037203034203043203038203044200a3035203036203034203037203041203041203036203036203042203043203036203039203034203035203037203041200a3045203038203035203036203034203130203039203036203038203035203041203131203037203043203041203035200a3035203038203043203038203034203032203041203038203041203043203035203033203038203042203043203037200a3034203038203037203042203038203035203037203036203039203042203039203038203034203036203037203036200a3042203037203034203033203041203042203039203041203033203034203041203042203045203034203034203037200a3036203041203039203035203037203034203041203044203041203037203033203037203036203039203043203038200a3036203033203043203041203039203042203036203132203135203045203038203037203034203036203039203046200a3039203037203035203034203042203044203041203035203037203036203041203038203045203033203039203032200a3039203044203042203036203034203034203042203038203044203037203037203038203037203045203037203039200a313020304220304320303720 +1.3.6.1.4.1.637.61.1.9.29.1.1.4.4353|66|0 +1.3.6.1.4.1.637.61.1.9.29.1.1.4.4356|66|9 +1.3.6.1.4.1.637.61.1.9.29.1.1.4.4359|66|8 +1.3.6.1.4.1.637.61.1.9.29.1.1.5.4353|2|3 +1.3.6.1.4.1.637.61.1.9.29.1.1.5.4356|2|3 +1.3.6.1.4.1.637.61.1.9.29.1.1.5.4359|2|3 +1.3.6.1.4.1.637.61.1.9.29.2.1.1.4353|66|1327 +1.3.6.1.4.1.637.61.1.9.29.2.1.1.4356|66|1316 +1.3.6.1.4.1.637.61.1.9.29.2.1.1.4359|66|1316 +1.3.6.1.4.1.637.61.1.9.29.2.1.2.4353|66|1162 +1.3.6.1.4.1.637.61.1.9.29.2.1.2.4356|66|878 +1.3.6.1.4.1.637.61.1.9.29.2.1.2.4359|66|878 +1.3.6.1.4.1.637.61.1.23.1.9.0|2|3 +1.3.6.1.4.1.637.61.1.23.2.1.4.17|4|NFXS-E +1.3.6.1.4.1.637.61.1.23.2.1.13.17|4|FH1819A01A1 +1.3.6.1.4.1.637.61.1.23.3.1.2.4352|4|NGFC-E +1.3.6.1.4.1.637.61.1.23.3.1.2.4353|4|FANT-F +1.3.6.1.4.1.637.61.1.23.3.1.2.4354|4|NOT_PLANNED +1.3.6.1.4.1.637.61.1.23.3.1.2.4355|4|NELT-B +1.3.6.1.4.1.637.61.1.23.3.1.2.4356|4|NELT-B +1.3.6.1.4.1.637.61.1.23.3.1.2.4357|4|NELT-B +1.3.6.1.4.1.637.61.1.23.3.1.2.4358|4|NELT-B +1.3.6.1.4.1.637.61.1.23.3.1.2.4359|4|NELT-B +1.3.6.1.4.1.637.61.1.23.3.1.2.4360|4|NELT-B +1.3.6.1.4.1.637.61.1.23.3.1.2.4361|4|NOT_PLANNED +1.3.6.1.4.1.637.61.1.23.3.1.2.4362|4|NOT_PLANNED +1.3.6.1.4.1.637.61.1.23.3.1.2.4481|4|NOT_PLANNED +1.3.6.1.4.1.637.61.1.23.3.1.3.4352|4|NGFC-E +1.3.6.1.4.1.637.61.1.23.3.1.3.4353|4|FANT-F +1.3.6.1.4.1.637.61.1.23.3.1.3.4354|4|EMPTY +1.3.6.1.4.1.637.61.1.23.3.1.3.4355|4|NELT-B +1.3.6.1.4.1.637.61.1.23.3.1.3.4356|4|NELT-B +1.3.6.1.4.1.637.61.1.23.3.1.3.4357|4|NELT-B +1.3.6.1.4.1.637.61.1.23.3.1.3.4358|4|NELT-B +1.3.6.1.4.1.637.61.1.23.3.1.3.4359|4|NELT-B +1.3.6.1.4.1.637.61.1.23.3.1.3.4360|4|EMPTY +1.3.6.1.4.1.637.61.1.23.3.1.3.4361|4|EMPTY +1.3.6.1.4.1.637.61.1.23.3.1.3.4362|4|EMPTY +1.3.6.1.4.1.637.61.1.23.3.1.3.4481|4|EMPTY +1.3.6.1.4.1.637.61.1.23.3.1.4.4352|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.4.4353|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.4.4354|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.4.4355|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.4.4356|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.4.4357|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.4.4358|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.4.4359|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.4.4360|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.4.4361|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.4.4362|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.4.4481|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.5.4352|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.5.4353|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.5.4354|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.5.4355|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.5.4356|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.5.4357|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.5.4358|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.5.4359|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.5.4360|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.5.4361|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.5.4362|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.5.4481|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.6.4352|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.6.4353|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.6.4354|2|2 +1.3.6.1.4.1.637.61.1.23.3.1.6.4355|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.6.4356|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.6.4357|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.6.4358|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.6.4359|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.6.4360|2|2 +1.3.6.1.4.1.637.61.1.23.3.1.6.4361|2|2 +1.3.6.1.4.1.637.61.1.23.3.1.6.4362|2|2 +1.3.6.1.4.1.637.61.1.23.3.1.6.4481|2|2 +1.3.6.1.4.1.637.61.1.23.3.1.7.4352|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.7.4353|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.7.4354|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.7.4355|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.7.4356|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.7.4357|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.7.4358|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.7.4359|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.7.4360|2|3 +1.3.6.1.4.1.637.61.1.23.3.1.7.4361|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.7.4362|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.7.4481|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.8.4352|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.8.4353|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.8.4354|2|5 +1.3.6.1.4.1.637.61.1.23.3.1.8.4355|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.8.4356|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.8.4357|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.8.4358|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.8.4359|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.8.4360|2|5 +1.3.6.1.4.1.637.61.1.23.3.1.8.4361|2|5 +1.3.6.1.4.1.637.61.1.23.3.1.8.4362|2|5 +1.3.6.1.4.1.637.61.1.23.3.1.8.4481|2|5 +1.3.6.1.4.1.637.61.1.23.3.1.9.4352|2|255 +1.3.6.1.4.1.637.61.1.23.3.1.9.4353|2|255 +1.3.6.1.4.1.637.61.1.23.3.1.9.4354|2|255 +1.3.6.1.4.1.637.61.1.23.3.1.9.4355|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.9.4356|2|255 +1.3.6.1.4.1.637.61.1.23.3.1.9.4357|2|255 +1.3.6.1.4.1.637.61.1.23.3.1.9.4358|2|255 +1.3.6.1.4.1.637.61.1.23.3.1.9.4359|2|255 +1.3.6.1.4.1.637.61.1.23.3.1.9.4360|2|255 +1.3.6.1.4.1.637.61.1.23.3.1.9.4361|2|255 +1.3.6.1.4.1.637.61.1.23.3.1.9.4362|2|255 +1.3.6.1.4.1.637.61.1.23.3.1.9.4481|2|255 +1.3.6.1.4.1.637.61.1.23.3.1.10.4352|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.10.4353|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.10.4354|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.10.4355|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.10.4356|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.10.4357|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.10.4358|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.10.4359|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.10.4360|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.10.4361|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.10.4362|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.10.4481|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.11.4352|2|17 +1.3.6.1.4.1.637.61.1.23.3.1.11.4353|2|17 +1.3.6.1.4.1.637.61.1.23.3.1.11.4354|2|17 +1.3.6.1.4.1.637.61.1.23.3.1.11.4355|2|17 +1.3.6.1.4.1.637.61.1.23.3.1.11.4356|2|17 +1.3.6.1.4.1.637.61.1.23.3.1.11.4357|2|17 +1.3.6.1.4.1.637.61.1.23.3.1.11.4358|2|17 +1.3.6.1.4.1.637.61.1.23.3.1.11.4359|2|17 +1.3.6.1.4.1.637.61.1.23.3.1.11.4360|2|17 +1.3.6.1.4.1.637.61.1.23.3.1.11.4361|2|17 +1.3.6.1.4.1.637.61.1.23.3.1.11.4362|2|17 +1.3.6.1.4.1.637.61.1.23.3.1.11.4481|2|17 +1.3.6.1.4.1.637.61.1.23.3.1.12.4352|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.12.4353|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.12.4354|2|2 +1.3.6.1.4.1.637.61.1.23.3.1.12.4355|2|3 +1.3.6.1.4.1.637.61.1.23.3.1.12.4356|2|4 +1.3.6.1.4.1.637.61.1.23.3.1.12.4357|2|5 +1.3.6.1.4.1.637.61.1.23.3.1.12.4358|2|6 +1.3.6.1.4.1.637.61.1.23.3.1.12.4359|2|7 +1.3.6.1.4.1.637.61.1.23.3.1.12.4360|2|8 +1.3.6.1.4.1.637.61.1.23.3.1.12.4361|2|9 +1.3.6.1.4.1.637.61.1.23.3.1.12.4362|2|10 +1.3.6.1.4.1.637.61.1.23.3.1.12.4481|2|129 +1.3.6.1.4.1.637.61.1.23.3.1.13.4352|4|ALCL +1.3.6.1.4.1.637.61.1.23.3.1.13.4353|4|ALCL +1.3.6.1.4.1.637.61.1.23.3.1.13.4354|4| +1.3.6.1.4.1.637.61.1.23.3.1.13.4355|4|ALCL +1.3.6.1.4.1.637.61.1.23.3.1.13.4356|4|ALCL +1.3.6.1.4.1.637.61.1.23.3.1.13.4357|4|ALCL +1.3.6.1.4.1.637.61.1.23.3.1.13.4358|4|ALCL +1.3.6.1.4.1.637.61.1.23.3.1.13.4359|4|ALCL +1.3.6.1.4.1.637.61.1.23.3.1.13.4360|4| +1.3.6.1.4.1.637.61.1.23.3.1.13.4361|4| +1.3.6.1.4.1.637.61.1.23.3.1.13.4362|4| +1.3.6.1.4.1.637.61.1.23.3.1.13.4481|4| +1.3.6.1.4.1.637.61.1.23.3.1.14.4352|4|NGFC-E +1.3.6.1.4.1.637.61.1.23.3.1.14.4353|4|FANT-F +1.3.6.1.4.1.637.61.1.23.3.1.14.4354|4| +1.3.6.1.4.1.637.61.1.23.3.1.14.4355|4|NELT-B +1.3.6.1.4.1.637.61.1.23.3.1.14.4356|4|NELT-B +1.3.6.1.4.1.637.61.1.23.3.1.14.4357|4|NELT-B +1.3.6.1.4.1.637.61.1.23.3.1.14.4358|4|NELT-B +1.3.6.1.4.1.637.61.1.23.3.1.14.4359|4|NELT-B +1.3.6.1.4.1.637.61.1.23.3.1.14.4360|4| +1.3.6.1.4.1.637.61.1.23.3.1.14.4361|4| +1.3.6.1.4.1.637.61.1.23.3.1.14.4362|4| +1.3.6.1.4.1.637.61.1.23.3.1.14.4481|4| +1.3.6.1.4.1.637.61.1.23.3.1.15.4352|4| +1.3.6.1.4.1.637.61.1.23.3.1.15.4353|4|3FE53701AAAA +1.3.6.1.4.1.637.61.1.23.3.1.15.4354|4| +1.3.6.1.4.1.637.61.1.23.3.1.15.4355|4|3FE62543AABA +1.3.6.1.4.1.637.61.1.23.3.1.15.4356|4|3FE62543AABA +1.3.6.1.4.1.637.61.1.23.3.1.15.4357|4|3FE62543AABA +1.3.6.1.4.1.637.61.1.23.3.1.15.4358|4|3FE62543AABA +1.3.6.1.4.1.637.61.1.23.3.1.15.4359|4|3FE62543AABA +1.3.6.1.4.1.637.61.1.23.3.1.15.4360|4| +1.3.6.1.4.1.637.61.1.23.3.1.15.4361|4| +1.3.6.1.4.1.637.61.1.23.3.1.15.4362|4| +1.3.6.1.4.1.637.61.1.23.3.1.15.4481|4| +1.3.6.1.4.1.637.61.1.23.3.1.16.4352|4|3FE64985AABA +1.3.6.1.4.1.637.61.1.23.3.1.16.4353|4|3FE53701AAAA +1.3.6.1.4.1.637.61.1.23.3.1.16.4354|4| +1.3.6.1.4.1.637.61.1.23.3.1.16.4355|4|3FE62543AABA +1.3.6.1.4.1.637.61.1.23.3.1.16.4356|4|3FE62543AABA +1.3.6.1.4.1.637.61.1.23.3.1.16.4357|4|3FE62543AABA +1.3.6.1.4.1.637.61.1.23.3.1.16.4358|4|3FE62543AABA +1.3.6.1.4.1.637.61.1.23.3.1.16.4359|4|3FE62543AABA +1.3.6.1.4.1.637.61.1.23.3.1.16.4360|4| +1.3.6.1.4.1.637.61.1.23.3.1.16.4361|4| +1.3.6.1.4.1.637.61.1.23.3.1.16.4362|4| +1.3.6.1.4.1.637.61.1.23.3.1.16.4481|4| +1.3.6.1.4.1.637.61.1.23.3.1.17.4352|4|01 +1.3.6.1.4.1.637.61.1.23.3.1.17.4353|4|03 +1.3.6.1.4.1.637.61.1.23.3.1.17.4354|4| +1.3.6.1.4.1.637.61.1.23.3.1.17.4355|4|02 +1.3.6.1.4.1.637.61.1.23.3.1.17.4356|4|02 +1.3.6.1.4.1.637.61.1.23.3.1.17.4357|4|02 +1.3.6.1.4.1.637.61.1.23.3.1.17.4358|4|02 +1.3.6.1.4.1.637.61.1.23.3.1.17.4359|4|02 +1.3.6.1.4.1.637.61.1.23.3.1.17.4360|4| +1.3.6.1.4.1.637.61.1.23.3.1.17.4361|4| +1.3.6.1.4.1.637.61.1.23.3.1.17.4362|4| +1.3.6.1.4.1.637.61.1.23.3.1.17.4481|4| +1.3.6.1.4.1.637.61.1.23.3.1.18.4352|4|VAUCAJ76AA +1.3.6.1.4.1.637.61.1.23.3.1.18.4353|4|VAUCAMZKAA +1.3.6.1.4.1.637.61.1.23.3.1.18.4354|4| +1.3.6.1.4.1.637.61.1.23.3.1.18.4355|4|VAUCAJ36AA +1.3.6.1.4.1.637.61.1.23.3.1.18.4356|4|VAUCAJ36AA +1.3.6.1.4.1.637.61.1.23.3.1.18.4357|4|VAUCAJ36AA +1.3.6.1.4.1.637.61.1.23.3.1.18.4358|4|VAUCAJ36AA +1.3.6.1.4.1.637.61.1.23.3.1.18.4359|4|VAUCAJ36AA +1.3.6.1.4.1.637.61.1.23.3.1.18.4360|4| +1.3.6.1.4.1.637.61.1.23.3.1.18.4361|4| +1.3.6.1.4.1.637.61.1.23.3.1.18.4362|4| +1.3.6.1.4.1.637.61.1.23.3.1.18.4481|4| +1.3.6.1.4.1.637.61.1.23.3.1.19.4352|4|1818A0818 +1.3.6.1.4.1.637.61.1.23.3.1.19.4353|4|YP1820F477B +1.3.6.1.4.1.637.61.1.23.3.1.19.4354|4| +1.3.6.1.4.1.637.61.1.23.3.1.19.4355|4|YP1823F4F73 +1.3.6.1.4.1.637.61.1.23.3.1.19.4356|4|YP1823F4F27 +1.3.6.1.4.1.637.61.1.23.3.1.19.4357|4|YP1823F4FA6 +1.3.6.1.4.1.637.61.1.23.3.1.19.4358|4|YP1821F5E73 +1.3.6.1.4.1.637.61.1.23.3.1.19.4359|4|YP1821F5E31 +1.3.6.1.4.1.637.61.1.23.3.1.19.4360|4| +1.3.6.1.4.1.637.61.1.23.3.1.19.4361|4| +1.3.6.1.4.1.637.61.1.23.3.1.19.4362|4| +1.3.6.1.4.1.637.61.1.23.3.1.19.4481|4| +1.3.6.1.4.1.637.61.1.23.3.1.20.4352|4x|00000000 +1.3.6.1.4.1.637.61.1.23.3.1.20.4353|4x|00000000 +1.3.6.1.4.1.637.61.1.23.3.1.20.4354|4x|00000000 +1.3.6.1.4.1.637.61.1.23.3.1.20.4355|4x|00000000 +1.3.6.1.4.1.637.61.1.23.3.1.20.4356|4x|00000000 +1.3.6.1.4.1.637.61.1.23.3.1.20.4357|4x|00000000 +1.3.6.1.4.1.637.61.1.23.3.1.20.4358|4x|00000000 +1.3.6.1.4.1.637.61.1.23.3.1.20.4359|4x|00000000 +1.3.6.1.4.1.637.61.1.23.3.1.20.4360|4x|00000000 +1.3.6.1.4.1.637.61.1.23.3.1.20.4361|4x|00000000 +1.3.6.1.4.1.637.61.1.23.3.1.20.4362|4x|00000000 +1.3.6.1.4.1.637.61.1.23.3.1.20.4481|4x|00000000 +1.3.6.1.4.1.637.61.1.23.3.1.22.4352|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.22.4353|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.22.4354|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.22.4355|2|5 +1.3.6.1.4.1.637.61.1.23.3.1.22.4356|2|5 +1.3.6.1.4.1.637.61.1.23.3.1.22.4357|2|5 +1.3.6.1.4.1.637.61.1.23.3.1.22.4358|2|5 +1.3.6.1.4.1.637.61.1.23.3.1.22.4359|2|5 +1.3.6.1.4.1.637.61.1.23.3.1.22.4360|2|5 +1.3.6.1.4.1.637.61.1.23.3.1.22.4361|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.22.4362|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.22.4481|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.23.4352|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.23.4353|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.23.4354|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.23.4355|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.23.4356|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.23.4357|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.23.4358|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.23.4359|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.23.4360|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.23.4361|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.23.4362|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.23.4481|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.24.4352|2|12 +1.3.6.1.4.1.637.61.1.23.3.1.24.4353|2|2 +1.3.6.1.4.1.637.61.1.23.3.1.24.4354|2|2 +1.3.6.1.4.1.637.61.1.23.3.1.24.4355|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.24.4356|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.24.4357|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.24.4358|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.24.4359|2|1 +1.3.6.1.4.1.637.61.1.23.3.1.24.4360|2|2 +1.3.6.1.4.1.637.61.1.23.3.1.24.4361|2|2 +1.3.6.1.4.1.637.61.1.23.3.1.24.4362|2|2 +1.3.6.1.4.1.637.61.1.23.3.1.24.4481|2|2 +1.3.6.1.4.1.637.61.1.23.3.1.25.4352|2|-2085974896 +1.3.6.1.4.1.637.61.1.23.3.1.25.4353|2|-2085978476 +1.3.6.1.4.1.637.61.1.23.3.1.25.4354|2|-2085978476 +1.3.6.1.4.1.637.61.1.23.3.1.25.4355|2|-550000495 +1.3.6.1.4.1.637.61.1.23.3.1.25.4356|2|-550000495 +1.3.6.1.4.1.637.61.1.23.3.1.25.4357|2|-550000495 +1.3.6.1.4.1.637.61.1.23.3.1.25.4358|2|-550000495 +1.3.6.1.4.1.637.61.1.23.3.1.25.4359|2|-550000495 +1.3.6.1.4.1.637.61.1.23.3.1.25.4360|2|-2085978496 +1.3.6.1.4.1.637.61.1.23.3.1.25.4361|2|-2085978496 +1.3.6.1.4.1.637.61.1.23.3.1.25.4362|2|-2085978496 +1.3.6.1.4.1.637.61.1.23.3.1.25.4481|2|-2085978496 +1.3.6.1.4.1.637.61.1.23.3.1.26.4352|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.26.4353|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.26.4354|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.26.4355|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.26.4356|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.26.4357|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.26.4358|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.26.4359|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.26.4360|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.26.4361|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.26.4362|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.26.4481|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.27.4352|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.27.4353|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.27.4354|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.27.4355|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.27.4356|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.27.4357|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.27.4358|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.27.4359|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.27.4360|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.27.4361|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.27.4362|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.27.4481|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.28.4352|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.28.4353|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.28.4354|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.28.4355|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.28.4356|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.28.4357|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.28.4358|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.28.4359|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.28.4360|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.28.4361|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.28.4362|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.28.4481|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.29.4352|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.29.4353|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.29.4354|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.29.4355|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.29.4356|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.29.4357|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.29.4358|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.29.4359|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.29.4360|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.29.4361|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.29.4362|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.29.4481|64|0.0.0.0 +1.3.6.1.4.1.637.61.1.23.3.1.30.4352|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.30.4353|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.30.4354|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.30.4355|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.30.4356|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.30.4357|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.30.4358|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.30.4359|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.30.4360|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.30.4361|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.30.4362|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.30.4481|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.32.4352|2|255 +1.3.6.1.4.1.637.61.1.23.3.1.32.4353|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.32.4354|2|255 +1.3.6.1.4.1.637.61.1.23.3.1.32.4355|2|2 +1.3.6.1.4.1.637.61.1.23.3.1.32.4356|2|3 +1.3.6.1.4.1.637.61.1.23.3.1.32.4357|2|4 +1.3.6.1.4.1.637.61.1.23.3.1.32.4358|2|5 +1.3.6.1.4.1.637.61.1.23.3.1.32.4359|2|6 +1.3.6.1.4.1.637.61.1.23.3.1.32.4360|2|7 +1.3.6.1.4.1.637.61.1.23.3.1.32.4361|2|8 +1.3.6.1.4.1.637.61.1.23.3.1.32.4362|2|9 +1.3.6.1.4.1.637.61.1.23.3.1.32.4481|2|255 +1.3.6.1.4.1.637.61.1.23.3.1.33.4352|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.33.4353|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.33.4354|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.33.4355|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.33.4356|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.33.4357|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.33.4358|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.33.4359|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.33.4360|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.33.4361|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.33.4362|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.33.4481|65|0 +1.3.6.1.4.1.637.61.1.23.3.1.34.4352|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.34.4353|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.34.4354|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.34.4355|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.34.4356|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.34.4357|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.34.4358|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.34.4359|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.34.4360|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.34.4361|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.34.4362|2|0 +1.3.6.1.4.1.637.61.1.23.3.1.34.4481|2|0 +1.3.6.1.4.1.637.61.1.23.10.1.1.4353.1|2|1 +1.3.6.1.4.1.637.61.1.23.10.1.1.4353.2|2|2 +1.3.6.1.4.1.637.61.1.23.10.1.1.4353.3|2|3 +1.3.6.1.4.1.637.61.1.23.10.1.1.4355.1|2|1 +1.3.6.1.4.1.637.61.1.23.10.1.1.4355.2|2|2 +1.3.6.1.4.1.637.61.1.23.10.1.1.4355.3|2|3 +1.3.6.1.4.1.637.61.1.23.10.1.1.4356.1|2|1 +1.3.6.1.4.1.637.61.1.23.10.1.1.4356.2|2|2 +1.3.6.1.4.1.637.61.1.23.10.1.1.4356.3|2|3 +1.3.6.1.4.1.637.61.1.23.10.1.1.4356.4|2|4 +1.3.6.1.4.1.637.61.1.23.10.1.1.4356.5|2|5 +1.3.6.1.4.1.637.61.1.23.10.1.1.4356.6|2|6 +1.3.6.1.4.1.637.61.1.23.10.1.1.4356.7|2|7 +1.3.6.1.4.1.637.61.1.23.10.1.1.4357.1|2|1 +1.3.6.1.4.1.637.61.1.23.10.1.1.4357.2|2|2 +1.3.6.1.4.1.637.61.1.23.10.1.1.4357.3|2|3 +1.3.6.1.4.1.637.61.1.23.10.1.1.4358.1|2|1 +1.3.6.1.4.1.637.61.1.23.10.1.1.4358.2|2|2 +1.3.6.1.4.1.637.61.1.23.10.1.1.4358.3|2|3 +1.3.6.1.4.1.637.61.1.23.10.1.1.4359.1|2|1 +1.3.6.1.4.1.637.61.1.23.10.1.1.4359.2|2|2 +1.3.6.1.4.1.637.61.1.23.10.1.1.4359.3|2|3 +1.3.6.1.4.1.637.61.1.23.10.1.1.4359.4|2|4 +1.3.6.1.4.1.637.61.1.23.10.1.1.4359.5|2|5 +1.3.6.1.4.1.637.61.1.23.10.1.1.4359.6|2|6 +1.3.6.1.4.1.637.61.1.23.10.1.1.4359.7|2|7 +1.3.6.1.4.1.637.61.1.23.10.1.2.4353.1|2|34 +1.3.6.1.4.1.637.61.1.23.10.1.2.4353.2|2|30 +1.3.6.1.4.1.637.61.1.23.10.1.2.4353.3|2|37 +1.3.6.1.4.1.637.61.1.23.10.1.2.4355.1|2|41 +1.3.6.1.4.1.637.61.1.23.10.1.2.4355.2|2|28 +1.3.6.1.4.1.637.61.1.23.10.1.2.4355.3|2|38 +1.3.6.1.4.1.637.61.1.23.10.1.2.4356.1|2|40 +1.3.6.1.4.1.637.61.1.23.10.1.2.4356.2|2|29 +1.3.6.1.4.1.637.61.1.23.10.1.2.4356.3|2|36 +1.3.6.1.4.1.637.61.1.23.10.1.2.4356.4|2|56 +1.3.6.1.4.1.637.61.1.23.10.1.2.4356.5|2|39 +1.3.6.1.4.1.637.61.1.23.10.1.2.4356.6|2|58 +1.3.6.1.4.1.637.61.1.23.10.1.2.4356.7|2|47 +1.3.6.1.4.1.637.61.1.23.10.1.2.4357.1|2|43 +1.3.6.1.4.1.637.61.1.23.10.1.2.4357.2|2|27 +1.3.6.1.4.1.637.61.1.23.10.1.2.4357.3|2|39 +1.3.6.1.4.1.637.61.1.23.10.1.2.4358.1|2|46 +1.3.6.1.4.1.637.61.1.23.10.1.2.4358.2|2|27 +1.3.6.1.4.1.637.61.1.23.10.1.2.4358.3|2|40 +1.3.6.1.4.1.637.61.1.23.10.1.2.4359.1|2|41 +1.3.6.1.4.1.637.61.1.23.10.1.2.4359.2|2|26 +1.3.6.1.4.1.637.61.1.23.10.1.2.4359.3|2|37 +1.3.6.1.4.1.637.61.1.23.10.1.2.4359.4|2|57 +1.3.6.1.4.1.637.61.1.23.10.1.2.4359.5|2|39 +1.3.6.1.4.1.637.61.1.23.10.1.2.4359.6|2|55 +1.3.6.1.4.1.637.61.1.23.10.1.2.4359.7|2|51 +1.3.6.1.4.1.637.61.1.23.10.1.3.4353.1|2|80 +1.3.6.1.4.1.637.61.1.23.10.1.3.4353.2|2|68 +1.3.6.1.4.1.637.61.1.23.10.1.3.4353.3|2|73 +1.3.6.1.4.1.637.61.1.23.10.1.3.4355.1|2|80 +1.3.6.1.4.1.637.61.1.23.10.1.3.4355.2|2|55 +1.3.6.1.4.1.637.61.1.23.10.1.3.4355.3|2|120 +1.3.6.1.4.1.637.61.1.23.10.1.3.4356.1|2|80 +1.3.6.1.4.1.637.61.1.23.10.1.3.4356.2|2|55 +1.3.6.1.4.1.637.61.1.23.10.1.3.4356.3|2|120 +1.3.6.1.4.1.637.61.1.23.10.1.3.4356.4|2|90 +1.3.6.1.4.1.637.61.1.23.10.1.3.4356.5|2|70 +1.3.6.1.4.1.637.61.1.23.10.1.3.4356.6|2|90 +1.3.6.1.4.1.637.61.1.23.10.1.3.4356.7|2|90 +1.3.6.1.4.1.637.61.1.23.10.1.3.4357.1|2|80 +1.3.6.1.4.1.637.61.1.23.10.1.3.4357.2|2|55 +1.3.6.1.4.1.637.61.1.23.10.1.3.4357.3|2|120 +1.3.6.1.4.1.637.61.1.23.10.1.3.4358.1|2|80 +1.3.6.1.4.1.637.61.1.23.10.1.3.4358.2|2|55 +1.3.6.1.4.1.637.61.1.23.10.1.3.4358.3|2|120 +1.3.6.1.4.1.637.61.1.23.10.1.3.4359.1|2|80 +1.3.6.1.4.1.637.61.1.23.10.1.3.4359.2|2|55 +1.3.6.1.4.1.637.61.1.23.10.1.3.4359.3|2|120 +1.3.6.1.4.1.637.61.1.23.10.1.3.4359.4|2|90 +1.3.6.1.4.1.637.61.1.23.10.1.3.4359.5|2|70 +1.3.6.1.4.1.637.61.1.23.10.1.3.4359.6|2|90 +1.3.6.1.4.1.637.61.1.23.10.1.3.4359.7|2|90 +1.3.6.1.4.1.637.61.1.23.10.1.4.4353.1|2|85 +1.3.6.1.4.1.637.61.1.23.10.1.4.4353.2|2|73 +1.3.6.1.4.1.637.61.1.23.10.1.4.4353.3|2|78 +1.3.6.1.4.1.637.61.1.23.10.1.4.4355.1|2|85 +1.3.6.1.4.1.637.61.1.23.10.1.4.4355.2|2|60 +1.3.6.1.4.1.637.61.1.23.10.1.4.4355.3|2|125 +1.3.6.1.4.1.637.61.1.23.10.1.4.4356.1|2|85 +1.3.6.1.4.1.637.61.1.23.10.1.4.4356.2|2|60 +1.3.6.1.4.1.637.61.1.23.10.1.4.4356.3|2|125 +1.3.6.1.4.1.637.61.1.23.10.1.4.4356.4|2|95 +1.3.6.1.4.1.637.61.1.23.10.1.4.4356.5|2|75 +1.3.6.1.4.1.637.61.1.23.10.1.4.4356.6|2|95 +1.3.6.1.4.1.637.61.1.23.10.1.4.4356.7|2|95 +1.3.6.1.4.1.637.61.1.23.10.1.4.4357.1|2|85 +1.3.6.1.4.1.637.61.1.23.10.1.4.4357.2|2|60 +1.3.6.1.4.1.637.61.1.23.10.1.4.4357.3|2|125 +1.3.6.1.4.1.637.61.1.23.10.1.4.4358.1|2|85 +1.3.6.1.4.1.637.61.1.23.10.1.4.4358.2|2|60 +1.3.6.1.4.1.637.61.1.23.10.1.4.4358.3|2|125 +1.3.6.1.4.1.637.61.1.23.10.1.4.4359.1|2|85 +1.3.6.1.4.1.637.61.1.23.10.1.4.4359.2|2|60 +1.3.6.1.4.1.637.61.1.23.10.1.4.4359.3|2|125 +1.3.6.1.4.1.637.61.1.23.10.1.4.4359.4|2|95 +1.3.6.1.4.1.637.61.1.23.10.1.4.4359.5|2|75 +1.3.6.1.4.1.637.61.1.23.10.1.4.4359.6|2|95 +1.3.6.1.4.1.637.61.1.23.10.1.4.4359.7|2|95 +1.3.6.1.4.1.637.61.1.23.10.1.5.4353.1|2|93 +1.3.6.1.4.1.637.61.1.23.10.1.5.4353.2|2|73 +1.3.6.1.4.1.637.61.1.23.10.1.5.4353.3|2|78 +1.3.6.1.4.1.637.61.1.23.10.1.5.4355.1|2|90 +1.3.6.1.4.1.637.61.1.23.10.1.5.4355.2|2|80 +1.3.6.1.4.1.637.61.1.23.10.1.5.4355.3|2|125 +1.3.6.1.4.1.637.61.1.23.10.1.5.4356.1|2|90 +1.3.6.1.4.1.637.61.1.23.10.1.5.4356.2|2|80 +1.3.6.1.4.1.637.61.1.23.10.1.5.4356.3|2|125 +1.3.6.1.4.1.637.61.1.23.10.1.5.4356.4|2|100 +1.3.6.1.4.1.637.61.1.23.10.1.5.4356.5|2|80 +1.3.6.1.4.1.637.61.1.23.10.1.5.4356.6|2|100 +1.3.6.1.4.1.637.61.1.23.10.1.5.4356.7|2|100 +1.3.6.1.4.1.637.61.1.23.10.1.5.4357.1|2|90 +1.3.6.1.4.1.637.61.1.23.10.1.5.4357.2|2|80 +1.3.6.1.4.1.637.61.1.23.10.1.5.4357.3|2|125 +1.3.6.1.4.1.637.61.1.23.10.1.5.4358.1|2|90 +1.3.6.1.4.1.637.61.1.23.10.1.5.4358.2|2|80 +1.3.6.1.4.1.637.61.1.23.10.1.5.4358.3|2|125 +1.3.6.1.4.1.637.61.1.23.10.1.5.4359.1|2|90 +1.3.6.1.4.1.637.61.1.23.10.1.5.4359.2|2|80 +1.3.6.1.4.1.637.61.1.23.10.1.5.4359.3|2|125 +1.3.6.1.4.1.637.61.1.23.10.1.5.4359.4|2|100 +1.3.6.1.4.1.637.61.1.23.10.1.5.4359.5|2|80 +1.3.6.1.4.1.637.61.1.23.10.1.5.4359.6|2|100 +1.3.6.1.4.1.637.61.1.23.10.1.5.4359.7|2|100 +1.3.6.1.4.1.637.61.1.23.10.1.6.4353.1|2|98 +1.3.6.1.4.1.637.61.1.23.10.1.6.4353.2|2|78 +1.3.6.1.4.1.637.61.1.23.10.1.6.4353.3|2|83 +1.3.6.1.4.1.637.61.1.23.10.1.6.4355.1|2|95 +1.3.6.1.4.1.637.61.1.23.10.1.6.4355.2|2|85 +1.3.6.1.4.1.637.61.1.23.10.1.6.4355.3|2|130 +1.3.6.1.4.1.637.61.1.23.10.1.6.4356.1|2|95 +1.3.6.1.4.1.637.61.1.23.10.1.6.4356.2|2|85 +1.3.6.1.4.1.637.61.1.23.10.1.6.4356.3|2|130 +1.3.6.1.4.1.637.61.1.23.10.1.6.4356.4|2|115 +1.3.6.1.4.1.637.61.1.23.10.1.6.4356.5|2|90 +1.3.6.1.4.1.637.61.1.23.10.1.6.4356.6|2|110 +1.3.6.1.4.1.637.61.1.23.10.1.6.4356.7|2|115 +1.3.6.1.4.1.637.61.1.23.10.1.6.4357.1|2|95 +1.3.6.1.4.1.637.61.1.23.10.1.6.4357.2|2|85 +1.3.6.1.4.1.637.61.1.23.10.1.6.4357.3|2|130 +1.3.6.1.4.1.637.61.1.23.10.1.6.4358.1|2|95 +1.3.6.1.4.1.637.61.1.23.10.1.6.4358.2|2|85 +1.3.6.1.4.1.637.61.1.23.10.1.6.4358.3|2|130 +1.3.6.1.4.1.637.61.1.23.10.1.6.4359.1|2|95 +1.3.6.1.4.1.637.61.1.23.10.1.6.4359.2|2|85 +1.3.6.1.4.1.637.61.1.23.10.1.6.4359.3|2|130 +1.3.6.1.4.1.637.61.1.23.10.1.6.4359.4|2|115 +1.3.6.1.4.1.637.61.1.23.10.1.6.4359.5|2|90 +1.3.6.1.4.1.637.61.1.23.10.1.6.4359.6|2|110 +1.3.6.1.4.1.637.61.1.23.10.1.6.4359.7|2|115 +1.3.6.1.4.1.637.61.1.56.5.1.3.4353.257|2|1 +1.3.6.1.4.1.637.61.1.56.5.1.3.4353.258|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4353.259|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4353.260|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.1|2|1 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.2|2|1 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.3|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.4|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.5|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.6|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.7|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.8|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.9|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.10|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.11|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.12|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.13|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.14|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.15|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.16|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.17|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.18|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.19|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.20|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.21|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.22|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.23|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.24|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.25|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.26|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.27|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.28|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.29|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.30|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.31|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.32|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.33|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.34|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.35|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4355.36|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4356.1|2|1 +1.3.6.1.4.1.637.61.1.56.5.1.3.4356.2|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4356.3|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4356.4|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4356.5|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4356.6|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4356.7|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4356.8|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4356.9|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4356.10|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4356.11|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4356.12|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4356.13|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4356.14|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4356.15|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4356.16|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4359.1|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4359.2|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4359.3|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4359.4|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4359.5|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4359.6|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4359.7|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4359.8|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4359.9|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4359.10|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4359.11|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4359.12|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4359.13|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4359.14|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4359.15|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4359.16|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4362.1|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4362.2|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4362.3|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4362.4|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4362.5|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4362.6|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4362.7|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4362.8|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4362.9|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4362.10|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4362.11|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4362.12|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4362.13|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4362.14|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4362.15|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.3.4362.16|2|3 +1.3.6.1.4.1.637.61.1.56.5.1.6.4353.257|4|-5.87 dBm +1.3.6.1.4.1.637.61.1.56.5.1.6.4355.1|4|-5.29 dBm +1.3.6.1.4.1.637.61.1.56.5.1.6.4355.2|4|-5.49 dBm +1.3.6.1.4.1.637.61.1.56.5.1.6.4356.1|4|3.66 dBm +1.3.6.1.4.1.637.61.1.56.5.1.7.4353.257|4|-6.09 dBm +1.3.6.1.4.1.637.61.1.56.5.1.7.4355.1|4|-6.07 dBm +1.3.6.1.4.1.637.61.1.56.5.1.7.4355.2|4|-5.57 dBm +1.3.6.1.4.1.637.61.1.56.5.1.7.4356.1|4|not-available +1.3.6.1.4.1.637.61.1.56.5.1.18.4353.257|4|-20.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.18.4355.1|4|-22.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.18.4355.2|4|-22.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.18.4356.1|4|-28.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.19.4353.257|4|-3.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.19.4355.1|4|-3.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.19.4355.2|4|-3.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.19.4356.1|4|-8.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.20.4353.257|4|-18.01 dBm +1.3.6.1.4.1.637.61.1.56.5.1.20.4355.1|4|-20.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.20.4355.2|4|-20.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.20.4356.1|4|-27.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.21.4353.257|4|-5.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.21.4355.1|4|-5.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.21.4355.2|4|-5.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.21.4356.1|4|-9.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.22.4353.257|4|-9.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.22.4355.1|4|-9.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.22.4355.2|4|-9.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.22.4356.1|4|-0.50 dBm +1.3.6.1.4.1.637.61.1.56.5.1.23.4353.257|4|-3.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.23.4355.1|4|-3.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.23.4355.2|4|-3.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.23.4356.1|4|7.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.24.4353.257|4|-8.11 dBm +1.3.6.1.4.1.637.61.1.56.5.1.24.4355.1|4|-8.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.24.4355.2|4|-8.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.24.4356.1|4|0.50 dBm +1.3.6.1.4.1.637.61.1.56.5.1.25.4353.257|4|-3.90 dBm +1.3.6.1.4.1.637.61.1.56.5.1.25.4355.1|4|-4.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.25.4355.2|4|-4.00 dBm +1.3.6.1.4.1.637.61.1.56.5.1.25.4356.1|4|6.00 dBm +1.3.6.1.6.3.10.2.1.3.0|2|1077026