From 7b182e2a803a3acf1c95c36285978c6f5b433259 Mon Sep 17 00:00:00 2001 From: Reinier Schoof Date: Sat, 16 Jun 2018 13:47:30 +0200 Subject: [PATCH] Improved support for DNOS/FTOS M-Series (#8749) Current implementation for Force10 series doesn't support the switch-blade M-Series model. This PR adds support for mempools and temperature. In my test environment (still 1.31) I have processors utilization support as well, but I have to test that in the new way processors are handled since 1.37 DO NOT DELETE THIS TEXT #### Please note > Please read this information carefully. You can run `./scripts/pre-commit.php` to check your code before submitting. - [x] Have you followed our [code guidelines?](http://docs.librenms.org/Developing/Code-Guidelines/) #### Testers If you would like to test this pull request then please run: `./scripts/github-apply `, i.e `./scripts/github-apply 5926` --- includes/discovery/mempools/dnos-ftos.inc.php | 5 + .../sensors/temperature/dnos.inc.php | 16 + includes/polling/mempools/dnos.inc.php | 4 + mibs/dell/DELL-NETWORKING-CHASSIS-MIB | 2885 ++++ mibs/dell/DELL-NETWORKING-SMI | 82 + mibs/dell/DELL-NETWORKING-TC | 614 + tests/data/dnos.json | 13197 ++++++++++++++++ tests/snmpsim/dnos.snmprec | 3888 +++++ 8 files changed, 20691 insertions(+) create mode 100644 mibs/dell/DELL-NETWORKING-CHASSIS-MIB create mode 100644 mibs/dell/DELL-NETWORKING-SMI create mode 100644 mibs/dell/DELL-NETWORKING-TC diff --git a/includes/discovery/mempools/dnos-ftos.inc.php b/includes/discovery/mempools/dnos-ftos.inc.php index 0f8ed181af..b9a72f537f 100644 --- a/includes/discovery/mempools/dnos-ftos.inc.php +++ b/includes/discovery/mempools/dnos-ftos.inc.php @@ -15,6 +15,11 @@ if ($device['os'] == 'dnos' || $device['os'] == 'ftos') { if (is_numeric($total)) { discover_mempool($valid_mempool, $device, 0, $device['os'], 'Memory Utilization', '1', null, null); } + } elseif (preg_match('/.6027.1.4.[0-9]+$/', $device['sysObjectID'])) { + $total = str_replace(' percent', '', snmp_get($device, 'dellNetCpuUtilMemUsage.stack.1.1', '-OvQ', 'DELL-NETWORKING-CHASSIS-MIB')); + if (is_numeric($total)) { + discover_mempool($valid_mempool, $device, 0, $device['os'], 'Memory Utilization', '1', null, null); + } } else { $free = snmp_get($device, '.1.3.6.1.4.1.674.10895.5000.2.6132.1.1.1.1.4.1.0', '-OvQ'); if (is_numeric($free)) { diff --git a/includes/discovery/sensors/temperature/dnos.inc.php b/includes/discovery/sensors/temperature/dnos.inc.php index 489ba0bf15..34eb4c3d06 100644 --- a/includes/discovery/sensors/temperature/dnos.inc.php +++ b/includes/discovery/sensors/temperature/dnos.inc.php @@ -33,3 +33,19 @@ if (is_array($oids)) { discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, 'ftos-sseries', $descr, '1', '1', null, null, null, null, $current); } } + +// Force10 M-Series +// DELL-NETWORKING-CHASSIS-MIB::dellNetStackUnitTemp.1 = Gauge32: 67 +// DELL-NETWORKING-CHASSIS-MIB::dellNetStackUnitModelId.1 = INTEGER: m-MXL(25) +echo 'FTOS M-Series '; + +$oids = snmpwalk_cache_oid($device, 'dellNetStackUnitTemp', array(), 'DELL-NETWORKING-CHASSIS-MIB', 'dnos'); + +if (is_array($oids)) { + foreach ($oids as $index => $entry) { + $descr = 'Unit '.$index; + $oid = '.1.3.6.1.4.1.6027.3.26.1.3.4.1.13.'.$index; + $current = $entry['dellNetStackUnitTemp']; + discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, 'dnos', $descr, '1', '1', null, null, null, null, $current); + } +} diff --git a/includes/polling/mempools/dnos.inc.php b/includes/polling/mempools/dnos.inc.php index e1397c1893..2e4c7eb0a0 100644 --- a/includes/polling/mempools/dnos.inc.php +++ b/includes/polling/mempools/dnos.inc.php @@ -10,6 +10,10 @@ if (preg_match('/.6027.1.3.[0-9]+$/', $device['sysObjectID'])) { $mempool['total'] = snmp_get($device, 'chSysProcessorMemSize.1', '-OvQU', 'F10-C-SERIES-CHASSIS-MIB'); $mempool['used'] = $mempool['total'] * (snmp_get($device, 'chStackUnitMemUsageUtil.1', '-OvQU', 'F10-C-SERIES-CHASSIS-MIB')/ 100); $mempool['free'] = ($mempool['total'] - $mempool['used']); +} elseif (preg_match('/.6027.1.4.[0-9]+$/', $device['sysObjectID'])) { + $mempool['total'] = snmp_get($device, 'dellNetProcessorMemSize.stack.1.1', '-OvQU', 'DELL-NETWORKING-CHASSIS-MIB'); + $mempool['used'] = $mempool['total'] * (snmp_get($device, 'dellNetCpuUtilMemUsage.stack.1.1', '-OvQU', 'DELL-NETWORKING-CHASSIS-MIB')/ 100); + $mempool['free'] = ($mempool['total'] - $mempool['used']); } else { $mempool['total'] = snmp_get($device, '.1.3.6.1.4.1.674.10895.5000.2.6132.1.1.1.1.4.2.0', '-OvQ'); $mempool['free'] = snmp_get($device, '.1.3.6.1.4.1.674.10895.5000.2.6132.1.1.1.1.4.1.0', '-OvQ'); diff --git a/mibs/dell/DELL-NETWORKING-CHASSIS-MIB b/mibs/dell/DELL-NETWORKING-CHASSIS-MIB new file mode 100644 index 0000000000..49ac5c3e23 --- /dev/null +++ b/mibs/dell/DELL-NETWORKING-CHASSIS-MIB @@ -0,0 +1,2885 @@ + DELL-NETWORKING-CHASSIS-MIB DEFINITIONS ::= BEGIN + -- This module provides authoritative definitions for Dell Networking OS + -- Chassis MIB. + -- + -- This module will be extended, as needed. + -- + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Gauge32, Integer32, TimeTicks, + Counter32, NOTIFICATION-TYPE + FROM SNMPv2-SMI + DateAndTime, DisplayString, MacAddress, + TEXTUAL-CONVENTION + FROM SNMPv2-TC + InterfaceIndex, ifIndex + FROM IF-MIB + MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP + FROM SNMPv2-CONF + dellNetMgmt + FROM DELL-NETWORKING-SMI + DellNetProcessorModuleType, DellNetSwDate, + DellNetMfgDate, DellNetCardOperStatus, + DellNetChassisType, DellNetSystemCardType, + DellNetDeviceType, DellNetPEOperStatus, + DellNetHundredthdB,DellNetIfType + FROM DELL-NETWORKING-TC; + + + dellNetChassisMib MODULE-IDENTITY + LAST-UPDATED "201408051200Z" -- Aug 5, 2014 12:00:00 GMT + ORGANIZATION + "Dell Inc" + CONTACT-INFO + "support.dell.com" + + DESCRIPTION + "Dell Networking OS Chassis MIB. " + + REVISION "201408051200Z" + DESCRIPTION + "First draft revision of Dell Networking OS chassis mib." + + ::= { dellNetMgmt 26 } + + +-- ------------------------------------------------------------ +-- Textual conventions +-- ------------------------------------------------------------ + + +-- ------------------------------------------------------------ +-- Top-level structure of the MIB +-- ------------------------------------------------------------ + + + dellNetSysObject OBJECT IDENTIFIER ::={ dellNetChassisMib 1 } + dellNetSysParameter OBJECT IDENTIFIER ::={ dellNetSysObject 1 } + dellNetChassisObject OBJECT IDENTIFIER ::={ dellNetSysObject 2 } + dellNetStackObject OBJECT IDENTIFIER ::={ dellNetSysObject 3 } + dellNetSystemComponent OBJECT IDENTIFIER ::={ dellNetSysObject 4 } + dellNetSysAlarmObjects OBJECT IDENTIFIER ::={ dellNetSysObject 5 } + + + -- ### Device Information + + dellNetDeviceType OBJECT-TYPE + SYNTAX DellNetDeviceType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of system the chassis falls under." + ::= { dellNetSysParameter 1 } + + + -- ### Chassis System ### + + dellNetNumChassis OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of chassis configured + on the cluster." + ::= { dellNetChassisObject 1 } + + dellNetMaxNumChassis OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the maximum allowed chassis + configurable on the cluster." + ::= { dellNetChassisObject 2 } + + -- ## Chassis Table + + -- The chassis is a multi-slots physical box. + -- In the chassis, there are physical slots available for + -- plug-in cards. There are two types of plug-in cards, + -- rpm cards and line cards. + + -- The chassis table contains the management information of + -- the chassis.This table will be available only for systems + -- with dellNetDeviceType chassis(1) + + dellNetChassisTable OBJECT-TYPE + SYNTAX SEQUENCE OF DellNetChassisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of chassis in a cluster. + The chassis table contains the information of + each chassis in the cluster. + " + ::= { dellNetChassisObject 3 } + + dellNetChassisEntry OBJECT-TYPE + SYNTAX DellNetChassisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of chassis entries containing information + for the chassis. + " + INDEX { dellNetChassisIndex } + ::= { dellNetChassisTable 1 } + + DellNetChassisEntry ::= + SEQUENCE { + dellNetChassisIndex Integer32, + dellNetChassisType DellNetChassisType, + dellNetChassisMacAddr MacAddress, + dellNetChassisSerialNumber DisplayString, + dellNetChassisPartNum DisplayString, + dellNetChassisProductRev DisplayString, + dellNetChassisVendorId DisplayString, + dellNetChassisMfgDate DellNetMfgDate, + dellNetChassisCountryCode DisplayString, + dellNetChassisPPIDRev DisplayString, + dellNetChassisServiceTag DisplayString, + dellNetChassisExpServiceCode DisplayString, + dellNetChassisNumSlots Integer32, + dellNetChassisNumLineCardSlots Integer32, + dellNetChassisNumFanTrays Integer32, + dellNetChassisNumPowerSupplies Integer32 + + } + + dellNetChassisIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique index for each chassis within + the cluster. + This value is the chassisId assigned to the chassis. + " + ::= { dellNetChassisEntry 1 } + + dellNetChassisType OBJECT-TYPE + SYNTAX DellNetChassisType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Dell Networking Model number of the chassis." + ::= { dellNetChassisEntry 2 } + + dellNetChassisMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A 6-octet MAC Address assigned to this Chassis." + ::= { dellNetChassisEntry 3 } + + dellNetChassisSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The chassis's serial number." + ::= { dellNetChassisEntry 4 } + + dellNetChassisPartNum OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..11)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The chassis manufacturer's part number." + ::= { dellNetChassisEntry 5 } + + dellNetChassisProductRev OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The chassis manufacturer's product revision." + ::= { dellNetChassisEntry 6 } + + dellNetChassisVendorId OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The chassis manufacturer vendor's id." + ::= { dellNetChassisEntry 7 } + + dellNetChassisMfgDate OBJECT-TYPE + SYNTAX DellNetMfgDate + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The date the chassis was manufactured." + ::= { dellNetChassisEntry 8 } + + dellNetChassisCountryCode OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The chassis manufacturer's country code." + ::= { dellNetChassisEntry 9 } + + dellNetChassisPPIDRev OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The chassis's piece part ID revision." + ::= { dellNetChassisEntry 10 } + + dellNetChassisServiceTag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The chassis's service tag." + ::= { dellNetChassisEntry 11 } + + dellNetChassisExpServiceCode OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The chassis's express service code." + ::= { dellNetChassisEntry 12 } + + dellNetChassisNumSlots OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of physical slots in the chassis." + ::= { dellNetChassisEntry 13 } + + dellNetChassisNumLineCardSlots OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of physical slots in the chassis for linecards." + ::= { dellNetChassisEntry 14 } + + dellNetChassisNumFanTrays OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Fan trays in the chassis." + ::= { dellNetChassisEntry 15 } + + dellNetChassisNumPowerSupplies OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Power supplies in the chassis." + ::= { dellNetChassisEntry 16 } + + -- ## Card Table + + dellNetCardTable OBJECT-TYPE + SYNTAX SEQUENCE OF DellNetCardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of line cards resident in the chassis. + This table contains the information on each RPM and linecards + in the chassis." + ::= { dellNetChassisObject 4 } + + dellNetCardEntry OBJECT-TYPE + SYNTAX DellNetCardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry for each card in the chassis." + INDEX { dellNetChassisIndex, + dellNetCardIndex } + ::= { dellNetCardTable 1 } + + DellNetCardEntry ::= + SEQUENCE { + dellNetCardIndex Integer32, + dellNetCardType DellNetSystemCardType, + dellNetCardDescription DisplayString, + dellNetCardChassisIndex Integer32, + dellNetCardStatus DellNetCardOperStatus, + dellNetCardTemp Integer32, + dellNetCardVendorId DisplayString, + dellNetCardMfgDate DellNetMfgDate, + dellNetCardPartNum DisplayString, + dellNetCardProductRev DisplayString, + dellNetCardProductOrder DisplayString, + dellNetCardCountryCode OCTET STRING, + dellNetCardPiecePartID DisplayString, + dellNetCardPPIDRevision DisplayString, + dellNetCardServiceTag DisplayString, + dellNetCardExpServiceCode DisplayString, + dellNetCardNumOfPorts Integer32 + + } + + dellNetCardIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique index for each card in the chassis." + ::= { dellNetCardEntry 1 } + + dellNetCardType OBJECT-TYPE + SYNTAX DellNetSystemCardType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Card's type." + ::= { dellNetCardEntry 2 } + + dellNetCardDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A short description of the card." + ::= { dellNetCardEntry 3 } + + dellNetCardChassisIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique index for each card in the chassis across cluster + This index will be derived from the dellNetChassisIndex + and dellNetCardIndex.This index would act as dellNetProcessorDeviceIndex + in dellNetProcessorTable, dellNetCpuUtilTable and + dellNetSwModuleTable for deviceTypes linecard,rpm and supervisor" + ::= { dellNetCardEntry 4 } + + dellNetCardStatus OBJECT-TYPE + SYNTAX DellNetCardOperStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current operational state of the card." + ::= { dellNetCardEntry 5 } + + dellNetCardTemp OBJECT-TYPE + SYNTAX Integer32 + UNITS "degrees Centigrade" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Temperature of the card." + ::= { dellNetCardEntry 6 } + + dellNetCardVendorId OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor id that manufactured this unit." + ::= { dellNetCardEntry 7 } + + dellNetCardMfgDate OBJECT-TYPE + SYNTAX DellNetMfgDate + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The date the unit is manufactured." + ::= { dellNetCardEntry 8 } + + dellNetCardPartNum OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit part number" + ::= { dellNetCardEntry 9 } + + dellNetCardProductRev OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit manufacturer's product + revision" + ::= { dellNetCardEntry 10 } + + dellNetCardProductOrder OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The product order number for this unit." + ::= { dellNetCardEntry 11 } + + dellNetCardCountryCode OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit manufacturer's country + code" + ::= { dellNetCardEntry 12 } + + dellNetCardPiecePartID OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..24)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit's piece part id." + ::= { dellNetCardEntry 13 } + + dellNetCardPPIDRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit's PPID revision." + ::= { dellNetCardEntry 14 } + + dellNetCardServiceTag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit's service tag." + ::= { dellNetCardEntry 15 } + + dellNetCardExpServiceCode OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit's express service code." + ::= { dellNetCardEntry 16 } + + dellNetCardNumOfPorts OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of interfaces + in this unit." + ::= { dellNetCardEntry 17 } + + -- ### Stack Information + + dellNetNumStackUnits OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of stack units configured + on the chassis." + ::= { dellNetStackObject 1 } + + dellNetMaxStackableUnits OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the maximum allowed Unit Number + configurable on the chassis." + ::= { dellNetStackObject 2 } + + dellNetStackUnitIndexNext OBJECT-TYPE + SYNTAX Integer32 (0|1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains the next appropriate value to + be used for dellNetStackUnitIndex when creating + entries in the dellNetStackUnitTable. The value 0 + indicates that no unassigned entries are available. + To obtain the dellNetStackUnitIndexNext value for a new entry, + the manager must first issue a management protocol + retrieval operation to obtain the current value of + this object. The agent should modify the value to + reflect the next unassigned number after each + retrieval operation. After a manager retrieves a value + the agent will determine when this index value will be + made available for reuse. + + Note that this object is not the unit number assigned by + the management unit. + The max number of stackable units allowed on this chassis + is found from the object dellNetNumMaxStackableUnits." + ::= { dellNetStackObject 3 } + + -- ## StackUnit Table + + -- The StackUnit table contains the management information + -- of each stacked unit in the chassis. + + dellNetStackUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF DellNetStackUnitEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of stack units configured in the chassis. + The StackUnit table contains the management + information of each stacked unit in the chassis. + " + ::= { dellNetStackObject 4 } + + dellNetStackUnitEntry OBJECT-TYPE + SYNTAX DellNetStackUnitEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of units entries containing information + for each stacked unit." + INDEX { dellNetStackUnitIndex } + ::= { dellNetStackUnitTable 1 } + + DellNetStackUnitEntry ::= + SEQUENCE { + dellNetStackUnitIndex Integer32, + dellNetStackUnitNumber Integer32, + dellNetStackUnitMgmtStatus INTEGER, + dellNetStackUnitHwMgmtPreference INTEGER, + dellNetStackUnitAdmMgmtPreference Integer32, + dellNetStackUnitModelId DellNetChassisType, + dellNetStackUnitStatus INTEGER, + dellNetStackUnitDescription DisplayString, + dellNetStackUnitCodeVersion DisplayString, + dellNetStackUnitSerialNumber DisplayString, + dellNetStackUnitUpTime TimeTicks, + dellNetStackUnitTemp Gauge32, + dellNetStackUnitVendorId DisplayString, + dellNetStackUnitMfgDate DellNetMfgDate, + dellNetStackUnitMacAddress MacAddress, + dellNetStackUnitPartNum DisplayString, + dellNetStackUnitProductRev DisplayString, + dellNetStackUnitProductOrder DisplayString, + dellNetStackUnitCountryCode OCTET STRING, + dellNetStackUnitPiecePartID DisplayString, + dellNetStackUnitPPIDRevision DisplayString, + dellNetStackUnitServiceTag DisplayString, + dellNetStackUnitExpServiceCode DisplayString, + dellNetStackUnitNumOfPorts Integer32, + dellNetStackUnitNumFanTrays Integer32, + dellNetStackUnitNumPowerSupplies Integer32, + dellNetStackUnitNumPluggableModules Integer32 + } + + dellNetStackUnitIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The unique index for this entry. + Refer to the object dellNetStackUnitIndexNext." + ::= { dellNetStackUnitEntry 1 } + + dellNetStackUnitNumber OBJECT-TYPE + SYNTAX Integer32 (0|1..12) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit number associated with this unit. + The unit number can be manually assigned to stack members. + + Note that the unit number assignment is based on + the following factors: + + - if the unit number is requested here, but another unit + already uses that number, the unit changes its configured + unit number to the lowest unassigned unit number. + - if the unit number is 0, i.e. unassigned, then the unit sets + its configured unit number to the lowest unassigned unit number. + - if the unit number is configured and no other device uses + the unit number, then the unit starts using the configured + unit number. + - if a unit detects that the maximum number of units already + exist, the unit sets its unit number to 0, i.e. unassigned, + and stays in the Initialization state. + - The max number of stackable units allowed on this chassis + is found from the object chNumMaxStackableUnits." + ::= { dellNetStackUnitEntry 2 } + + dellNetStackUnitMgmtStatus OBJECT-TYPE + SYNTAX INTEGER { + mgmtUnit(1), + standbyUnit(2), + stackUnit(3), + unassigned(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the unit is a Management Unit, + a Stack Unit, or unassigned. + + Setting this object to mgmtUnit(1) initiates transfer of the + management functionality to the specified stack unit. + Object values stackUnit(2) and unassigned(3) cannot be set." + ::= { dellNetStackUnitEntry 4 } + + dellNetStackUnitHwMgmtPreference OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + unsassigned(1), + assigned(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "indicates whether the unit is capable of becoming a + management unit. if it is unsigned, this unit can be a management + unit." + ::= { dellNetStackUnitEntry 5 } + + dellNetStackUnitAdmMgmtPreference OBJECT-TYPE + SYNTAX Integer32 (0|1..15) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "indicates how likely this unit is to be chosen as + the management unit. A value of 0 indicates a disabled + or unassigned preference." + ::= { dellNetStackUnitEntry 6 } + + dellNetStackUnitModelId OBJECT-TYPE + SYNTAX DellNetChassisType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Dell Networking OS Model number for this unit." + ::= { dellNetStackUnitEntry 7 } + + + dellNetStackUnitStatus OBJECT-TYPE + SYNTAX INTEGER { + ok(1), + unsupported(2), + codeMismatch(3), -- version mismatch + configMismatch(4), -- type mismatch + unitDown(5), -- hardware problem + notPresent(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this unit." + ::= { dellNetStackUnitEntry 8 } + + dellNetStackUnitDescription OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The description of this unit." + ::= { dellNetStackUnitEntry 9 } + + dellNetStackUnitCodeVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current code version of this unit." + ::= { dellNetStackUnitEntry 10 } + + dellNetStackUnitSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit's serial number." + ::= { dellNetStackUnitEntry 11 } + + dellNetStackUnitUpTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The system up time of the unit." + ::= { dellNetStackUnitEntry 12 } + + dellNetStackUnitTemp OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The temperature of the unit." + ::= { dellNetStackUnitEntry 13 } + + + dellNetStackUnitVendorId OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor id that manufactured this unit." + ::= { dellNetStackUnitEntry 14 } + + dellNetStackUnitMfgDate OBJECT-TYPE + SYNTAX DellNetMfgDate + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The date the unit is manufactured." + ::= { dellNetStackUnitEntry 15 } + + dellNetStackUnitMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A 6-octet MAC Address assigned + to this unit." + ::= { dellNetStackUnitEntry 16 } + + dellNetStackUnitPartNum OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit part number" + ::= { dellNetStackUnitEntry 17 } + + dellNetStackUnitProductRev OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit manufacturer's product + revision" + ::= { dellNetStackUnitEntry 18 } + + dellNetStackUnitProductOrder OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The product order number for this unit." + ::= { dellNetStackUnitEntry 19 } + + dellNetStackUnitCountryCode OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit manufacturer's country + code" + ::= { dellNetStackUnitEntry 20 } + + dellNetStackUnitPiecePartID OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..24)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit's piece part id." + ::= { dellNetStackUnitEntry 21 } + + dellNetStackUnitPPIDRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit's PPID revision." + ::= { dellNetStackUnitEntry 22 } + + dellNetStackUnitServiceTag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit's service tag." + ::= { dellNetStackUnitEntry 23 } + + dellNetStackUnitExpServiceCode OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit's express service code." + ::= { dellNetStackUnitEntry 24 } + + dellNetStackUnitNumOfPorts OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of interfaces + in this unit." + ::= { dellNetStackUnitEntry 25 } + + dellNetStackUnitNumFanTrays OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of fan trays + on the unit." + ::= { dellNetStackUnitEntry 26 } + + dellNetStackUnitNumPowerSupplies OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of power supply + in the unit." + ::= { dellNetStackUnitEntry 27 } + + dellNetStackUnitNumPluggableModules OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pluggable modules + in the stack unit." + ::= { dellNetStackUnitEntry 28 } + + + -- ## Stack Port Table + + dellNetStackPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF DellNetStackPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of stack ports in the chassis." + ::= { dellNetStackObject 5 } + + dellNetStackPortEntry OBJECT-TYPE + SYNTAX DellNetStackPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A stack port entry containing objects for a + particular stack port." + INDEX { dellNetStackUnitNumber, + dellNetStackPortIndex } + ::= { dellNetStackPortTable 1 } + + DellNetStackPortEntry ::= + SEQUENCE { + dellNetStackPortIndex Integer32, + dellNetStackPortConfiguredMode INTEGER, + dellNetStackPortRunningMode INTEGER, + dellNetStackPortLinkStatus INTEGER, + dellNetStackPortLinkSpeed Gauge32, + dellNetStackPortRxDataRate Counter32, + dellNetStackPortRxErrorRate Counter32, + dellNetStackPortRxTotalErrors Counter32, + dellNetStackPortTxDataRate Counter32, + dellNetStackPortTxErrorRate Counter32, + dellNetStackPortTxTotalErrors Counter32 + } + + dellNetStackPortIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index for each stack port within the unit. + 1 - stack port A, + 2 - stack port B + " + ::= { dellNetStackPortEntry 1 } + + dellNetStackPortConfiguredMode OBJECT-TYPE + SYNTAX INTEGER { + stack(1), + ethernet(2), + unknown(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Configured mode of the Stack Port. Changes to this + value happen only after a reset of the unit." + ::= { dellNetStackPortEntry 2 } + + dellNetStackPortRunningMode OBJECT-TYPE + SYNTAX INTEGER { + stack(1), + ethernet(2), + unknown(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Operational mode of the Stack Port." + ::= { dellNetStackPortEntry 3 } + + dellNetStackPortLinkStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Link status of the Stack Port. Ports in ethernet + mode will return a status of down(2)." + ::= { dellNetStackPortEntry 4 } + + dellNetStackPortLinkSpeed OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Speed of the Stack Port measured in Gb/s. Ports + in ethernet mode will return a speed of 0." + ::= { dellNetStackPortEntry 5 } + + dellNetStackPortRxDataRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Received Data rate on the stacking port. + Measured in Mb/s. + Ports in ethernet mode will return 0." + ::= { dellNetStackPortEntry 6 } + + dellNetStackPortRxErrorRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Received error rate on the stack port. + Measured in Errors per Second. + Ports in ethernet mode will return 0." + ::= { dellNetStackPortEntry 7 } + + dellNetStackPortRxTotalErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Received number of errors since boot. + The counter may wrap. Ports in ethernet mode + will return 0." + ::= { dellNetStackPortEntry 8 } + + dellNetStackPortTxDataRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transmitted Data rate on the stacking port. + Measured in Mb/s. + Ports in ethernet mode will return 0." + ::= { dellNetStackPortEntry 9 } + + dellNetStackPortTxErrorRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transmitted error rate on the stack port. + Measured in Errors per Second. + Ports in ethernet mode will return 0." + ::= { dellNetStackPortEntry 10 } + + dellNetStackPortTxTotalErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transmitted number of errors since boot. + The counter may wrap. Ports in ethernet mode + will return 0." + ::= { dellNetStackPortEntry 11 } + + + -- ### System Component ### + + -- ### Port Extender Binding Table ### + + dellNetPEBindingTable OBJECT-TYPE + SYNTAX SEQUENCE OF DellNetPEBindingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The dellNetPEBindingTable entry binds the core switch's port + to the Port Extender connected to it.The table will hold + an entry for port extenders physically connected or provisioned + to be connected to the port. + " + + ::= { dellNetSystemComponent 1 } + + dellNetPEBindingEntry OBJECT-TYPE + SYNTAX DellNetPEBindingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A PE binding entry binds the InterfaceIndex of the port in + core switch to the dellNetPortExtenderIndex of Port extender + connected to it or provisioned to be connected. + " + + INDEX { dellNetPEBindCascadePortIfIndex } + ::= { dellNetPEBindingTable 1 } + + DellNetPEBindingEntry ::= + SEQUENCE { + dellNetPEBindCascadePortIfIndex InterfaceIndex, + dellNetPEBindPEIndex Integer32 + } + + dellNetPEBindCascadePortIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is a unique interface index of an physical interface + in controller bridge or or PE uplink LAG interface to which + the port externder with dellNetPEIndex is connected or provisioned. + " + ::= { dellNetPEBindingEntry 1 } + + + dellNetPEBindPEIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies a port extender + controlled by the controller bridge.This is an index derived + from the PEID and stack-unit ID of the port extender" + ::= { dellNetPEBindingEntry 2 } + + + -- ### Port Extender Table ### + + dellNetPETable OBJECT-TYPE + SYNTAX SEQUENCE OF DellNetPEEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The dellNetPETable lists port extenders controlled by + the controller bridge. + " + + ::= { dellNetSystemComponent 2 } + + dellNetPEEntry OBJECT-TYPE + SYNTAX DellNetPEEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A PE table entry holds details of port extenders + controlled by the controller bridge. + " + + INDEX { dellNetPEIndex } + ::= { dellNetPETable 1 } + + DellNetPEEntry ::= + SEQUENCE { + dellNetPEIndex Integer32, + dellNetPEPEID Integer32, + dellNetPEUnitID Integer32, + dellNetPEType DellNetChassisType, + dellNetPEDescription DisplayString, + dellNetPEStatus DellNetPEOperStatus, + dellNetPETemp Integer32, + dellNetPEVendorId DisplayString, + dellNetPEMfgDate DellNetMfgDate, + dellNetPEPartNum DisplayString, + dellNetPEProductRev DisplayString, + dellNetPEProductOrder DisplayString, + dellNetPECountryCode OCTET STRING, + dellNetPEPiecePartID DisplayString, + dellNetPEPPIDRevision DisplayString, + dellNetPEServiceTag DisplayString, + dellNetPEExpServiceCode DisplayString, + dellNetPENumOfPorts Integer32, + dellNetPENumFanTrays Integer32, + dellNetPENumPowerSupplies Integer32, + dellNetPENumPluggableModules Integer32 + } + + dellNetPEIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that uniquely identifies a port extender + controlled by the controller bridge." + ::= { dellNetPEEntry 1 } + + dellNetPEPEID OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "PEID assigned for the port extender." + ::= { dellNetPEEntry 2 } + + dellNetPEUnitID OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Stack unit ID assigned for the port extender." + ::= { dellNetPEEntry 3 } + + dellNetPEType OBJECT-TYPE + SYNTAX DellNetChassisType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Prt extender's type." + ::= { dellNetPEEntry 4 } + + dellNetPEDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A short description of the card." + ::= { dellNetPEEntry 5 } + + dellNetPEStatus OBJECT-TYPE + SYNTAX DellNetPEOperStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current operational state of the Port extender." + ::= { dellNetPEEntry 6 } + + dellNetPETemp OBJECT-TYPE + SYNTAX Integer32 + UNITS "degrees Centigrade" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Temperature of the port extender" + ::= { dellNetPEEntry 7 } + + + dellNetPEVendorId OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor id that manufactured this unit." + ::= { dellNetPEEntry 8 } + + dellNetPEMfgDate OBJECT-TYPE + SYNTAX DellNetMfgDate + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The date the unit is manufactured." + ::= { dellNetPEEntry 9 } + + dellNetPEPartNum OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit part number" + ::= { dellNetPEEntry 10 } + + dellNetPEProductRev OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit manufacturer's product + revision" + ::= { dellNetPEEntry 11 } + + dellNetPEProductOrder OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The product order number for this unit." + ::= { dellNetPEEntry 12 } + + dellNetPECountryCode OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit manufacturer's country + code" + ::= { dellNetPEEntry 13 } + + dellNetPEPiecePartID OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..24)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit's piece part id." + ::= { dellNetPEEntry 14 } + + dellNetPEPPIDRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit's PPID revision." + ::= { dellNetPEEntry 15 } + + dellNetPEServiceTag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit's service tag." + ::= { dellNetPEEntry 16 } + + dellNetPEExpServiceCode OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit's express service code." + ::= { dellNetPEEntry 17 } + + dellNetPENumOfPorts OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of interfaces + in this unit." + ::= { dellNetPEEntry 18 } + + dellNetPENumFanTrays OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of fan trays + on the unit." + ::= { dellNetPEEntry 19 } + + dellNetPENumPowerSupplies OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of power supply + in the unit." + ::= { dellNetPEEntry 20 } + + dellNetPENumPluggableModules OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of pluggable modules + in the unit." + ::= { dellNetPEEntry 21 } + + -- ## Processor Table + + -- Each card has one or more processors. + -- The Processor table contains information on the + -- processor and the memory. + + dellNetProcessorTable OBJECT-TYPE + SYNTAX SEQUENCE OF DellNetProcessorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of Processors resident in this slot." + ::= { dellNetSystemComponent 3 } + + dellNetProcessorEntry OBJECT-TYPE + SYNTAX DellNetProcessorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of Processor entries." + INDEX { dellNetProcessorDeviceType, + dellNetProcessorDeviceIndex, + dellNetProcessorIndex } + ::= { dellNetProcessorTable 1 } + + DellNetProcessorEntry ::= + SEQUENCE { + + dellNetProcessorDeviceType DellNetDeviceType, + dellNetProcessorDeviceIndex Integer32, + dellNetProcessorIndex Integer32, + dellNetProcessorModule DellNetProcessorModuleType, + dellNetProcessorUpTime TimeTicks, + dellNetProcessorMemSize Integer32 + } + + dellNetProcessorDeviceType OBJECT-TYPE + SYNTAX DellNetDeviceType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identify the type of device the processor reside + (linecard,port extender etc..) + " + ::= { dellNetProcessorEntry 1 } + + dellNetProcessorDeviceIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique device index within the device type." + ::= { dellNetProcessorEntry 2 } + + dellNetProcessorIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique index for each Processor within the + device.The valid entries are 1 to the + value of number of processors + " + ::= { dellNetProcessorEntry 3 } + + dellNetProcessorModule OBJECT-TYPE + SYNTAX DellNetProcessorModuleType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of module running on the Processor." + ::= { dellNetProcessorEntry 4 } + + dellNetProcessorUpTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SysUpTime for this Processor." + ::= { dellNetProcessorEntry 5 } + + dellNetProcessorMemSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The size of the RAM in Mb." + ::= { dellNetProcessorEntry 6 } + + + -- ## Processor and Memory Utilization Table + + dellNetCpuUtilTable OBJECT-TYPE + SYNTAX SEQUENCE OF DellNetCpuUtilEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table listing the processor and memory utilization of + of each CPU in the system." + ::= { dellNetSystemComponent 4 } + + dellNetCpuUtilEntry OBJECT-TYPE + SYNTAX DellNetCpuUtilEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Processor and Memory Utilization entry for a + particular CPU." + INDEX { dellNetProcessorDeviceType, + dellNetProcessorDeviceIndex, + dellNetProcessorIndex } + ::= { dellNetCpuUtilTable 1 } + + DellNetCpuUtilEntry ::= + SEQUENCE { + dellNetCpuUtil5Sec Gauge32, + dellNetCpuUtil1Min Gauge32, + dellNetCpuUtil5Min Gauge32, + dellNetCpuUtilMemUsage Gauge32, + dellNetCpuFlashUsageUtil Gauge32 + } + + dellNetCpuUtil5Sec OBJECT-TYPE + SYNTAX Gauge32(0..100) + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CPU utilization in percentage for last 5 seconds." + ::= { dellNetCpuUtilEntry 1 } + + dellNetCpuUtil1Min OBJECT-TYPE + SYNTAX Gauge32(0..100) + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CPU utilization in percentage for last 1 minute." + ::= { dellNetCpuUtilEntry 4 } + + dellNetCpuUtil5Min OBJECT-TYPE + SYNTAX Gauge32(0..100) + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CPU utilization in percentage for last 5 minutes." + ::= { dellNetCpuUtilEntry 5 } + + dellNetCpuUtilMemUsage OBJECT-TYPE + SYNTAX Gauge32(0..100) + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Memory usage in percentage." + ::= { dellNetCpuUtilEntry 6 } + + dellNetCpuFlashUsageUtil OBJECT-TYPE + SYNTAX Gauge32(0..100) + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total flash usage in percentage." + ::= { dellNetCpuUtilEntry 7 } + + -- ## Software Module Table + + dellNetSwModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF DellNetSwModuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of software version information in + a processor." + ::= { dellNetSystemComponent 5 } + + dellNetSwModuleEntry OBJECT-TYPE + SYNTAX DellNetSwModuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A software module entry containing version + number information for a particular processor." + INDEX { dellNetProcessorDeviceType, + dellNetProcessorDeviceIndex } + ::= { dellNetSwModuleTable 1 } + + DellNetSwModuleEntry ::= + SEQUENCE { + dellNetSwModuleRuntimeImgVersion DisplayString, + dellNetSwModuleRuntimeImgDate DellNetSwDate, + dellNetSwModuleBootFlashImgVersion DisplayString, + dellNetSwModuleBootSelectorImgVersion DisplayString, + dellNetSwModuleNextRebootImage INTEGER, + dellNetSwModuleCurrentBootImage INTEGER, + dellNetSwModuleInPartitionAImgVers DisplayString, + dellNetSwModuleInPartitionBImgVers DisplayString + + } + + dellNetSwModuleRuntimeImgVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current Dell Networking OS image version running in the system. + The version string will be in following format + major_ver.minor_ver(maintenance_ver.patch_ver)" + ::= { dellNetSwModuleEntry 1 } + + dellNetSwModuleRuntimeImgDate OBJECT-TYPE + SYNTAX DellNetSwDate (SIZE (0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The release date of this software module." + ::= { dellNetSwModuleEntry 2 } + + dellNetSwModuleBootFlashImgVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This provides the Grub image version that is currently + running in the processor." + ::= { dellNetSwModuleEntry 3 } + + dellNetSwModuleBootSelectorImgVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This provides the BIOS image version that is currently + running in the processor." + ::= { dellNetSwModuleEntry 4 } + + dellNetSwModuleNextRebootImage OBJECT-TYPE + SYNTAX INTEGER { + partitionA(1), + partitionB(2), + networkBoot(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The image selection, when the chassis is rebooted. + partitionA - Image stored in bootflash partition A: + partitionB - Image stored in bootflash partition B: + networkBoot - will be booted via network." + ::= { dellNetSwModuleEntry 5 } + + dellNetSwModuleCurrentBootImage OBJECT-TYPE + SYNTAX INTEGER { + partitionA(1), + partitionB(2), + networkBoot(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current image is booted from. + partitionA - Image stored in bootflash partition A: + partitionB - Image stored in bootflash partition B: + networkBoot - Booted via network." + ::= { dellNetSwModuleEntry 6 } + + dellNetSwModuleInPartitionAImgVers OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This provides the Dell Networking OS system image version + that is stored in partition A: and The version + string has Major and Minor release numbers. It + also denotes if the release is Maintenance, + Technical, Patch, Beta, or Generally Available" + ::= { dellNetSwModuleEntry 7 } + + dellNetSwModuleInPartitionBImgVers OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This provides the Dell Networking OS system image version + that is stored in partition B: and The version + string has Major and Minor release numbers. It + also denotes if the release is Maintenance, + Technical, Patch, Beta, or Generally Available" + ::= { dellNetSwModuleEntry 8 } + + + -- ### Power Supply Table + + dellNetPowerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF DellNetPowerSupplyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of power supply resident + in the device." + ::= { dellNetSystemComponent 6 } + + dellNetPowerSupplyEntry OBJECT-TYPE + SYNTAX DellNetPowerSupplyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A power supply entry containing objects for a + particular power supply." + INDEX { dellNetPowerDeviceType, + dellNetPowerDeviceIndex, + dellNetPowerSupplyIndex } + ::= { dellNetPowerSupplyTable 1 } + + DellNetPowerSupplyEntry ::= + SEQUENCE { + dellNetPowerDeviceType DellNetDeviceType, + dellNetPowerDeviceIndex Integer32, + dellNetPowerSupplyIndex Integer32, + dellNetPowerSupplyOperStatus INTEGER, + dellNetPowerSupplyType INTEGER, + dellNetPowerSupplyPiecePartID DisplayString, + dellNetPowerSupplyPPIDRevision DisplayString, + dellNetPowerSupplyServiceTag DisplayString, + dellNetPowerSupplyExpressServiceCode DisplayString, + dellNetPowerSupplyUsage Integer32 + } + + dellNetPowerDeviceType OBJECT-TYPE + SYNTAX DellNetDeviceType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identify the type of device the power supply units reside + (chassis,port extender etc..) + " + ::= { dellNetPowerSupplyEntry 1 } + + dellNetPowerDeviceIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique device index within the device type." + ::= { dellNetPowerSupplyEntry 2 } + + dellNetPowerSupplyIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unique index of the power supply." + ::= { dellNetPowerSupplyEntry 3 } + + dellNetPowerSupplyOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + absent(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the power supply." + ::= { dellNetPowerSupplyEntry 4 } + + dellNetPowerSupplyType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + ac(2), + dc(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the power supply." + ::= { dellNetPowerSupplyEntry 5 } + + dellNetPowerSupplyPiecePartID OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..24)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The power supply's piece part id." + ::= { dellNetPowerSupplyEntry 6 } + + dellNetPowerSupplyPPIDRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The power supply's PPID revision." + ::= { dellNetPowerSupplyEntry 7 } + + dellNetPowerSupplyServiceTag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The power supply's service tag." + ::= { dellNetPowerSupplyEntry 8 } + + dellNetPowerSupplyExpressServiceCode OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The power supply's express service code." + ::= { dellNetPowerSupplyEntry 9 } + + dellNetPowerSupplyUsage OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Power usage of this Power Supply in Watts." + ::= { dellNetPowerSupplyEntry 10 } + + -- ## Fan Tray Table + + dellNetFanTrayTable OBJECT-TYPE + SYNTAX SEQUENCE OF DellNetFanTrayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of fan tray resident in the device." + ::= { dellNetSystemComponent 7 } + + dellNetFanTrayEntry OBJECT-TYPE + SYNTAX DellNetFanTrayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A fan entry containing objects for a + particular fan tray." + INDEX { dellNetFanDeviceType, + dellNetFanDeviceIndex, + dellNetFanTrayIndex } + ::= { dellNetFanTrayTable 1 } + + DellNetFanTrayEntry ::= + SEQUENCE { + dellNetFanDeviceType DellNetDeviceType, + dellNetFanDeviceIndex Integer32, + dellNetFanTrayIndex Integer32, + dellNetFanTrayOperStatus INTEGER, + dellNetFanTrayPiecePartID DisplayString, + dellNetFanTrayPPIDRevision DisplayString, + dellNetFanTrayServiceTag DisplayString, + dellNetFanTrayExpressServiceCode DisplayString + } + + dellNetFanDeviceType OBJECT-TYPE + SYNTAX DellNetDeviceType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identify the type of device the fan tray units reside + (chassis,port extender etc..) + " + ::= { dellNetFanTrayEntry 1 } + + dellNetFanDeviceIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique device index within the device type." + ::= { dellNetFanTrayEntry 2 } + + dellNetFanTrayIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unique index of the fan tray." + ::= { dellNetFanTrayEntry 3 } + + dellNetFanTrayOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + absent(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the fan tray." + ::= { dellNetFanTrayEntry 4 } + + dellNetFanTrayPiecePartID OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..24)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The fan tray's piece part id." + ::= { dellNetFanTrayEntry 5 } + + dellNetFanTrayPPIDRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The fan tray's PPID revision." + ::= { dellNetFanTrayEntry 6 } + + dellNetFanTrayServiceTag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The fan tray's service tag." + ::= { dellNetFanTrayEntry 7 } + + dellNetFanTrayExpressServiceCode OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..14)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The fan tray's express service code." + ::= { dellNetFanTrayEntry 8 } + + -- ## Software Cores Table + + dellNetSysSwCoresTable OBJECT-TYPE + SYNTAX SEQUENCE OF DellNetSysCoresEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing information about the software + cores that have been generated as a result of + system failures." + ::= { dellNetSystemComponent 9 } + + dellNetSysCoresEntry OBJECT-TYPE + SYNTAX DellNetSysCoresEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A row in the software core table representing + information about a core that has been generated." + INDEX { dellNetStackUnitNumber, + dellNetSysCoresInstance } + ::= { dellNetSysSwCoresTable 1 } + + DellNetSysCoresEntry ::= + SEQUENCE { + dellNetSysCoresInstance INTEGER, + dellNetSysCoresFileName DisplayString, + dellNetSysCoresTimeCreated DellNetSwDate, + dellNetSysCoresStackUnitNumber Integer32, + dellNetSysCoresProcess DisplayString + } + + dellNetSysCoresInstance OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique index assigned to the cores stored on + this stack unit." + ::= { dellNetSysCoresEntry 1 } + + dellNetSysCoresFileName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the core file including the path." + ::= { dellNetSysCoresEntry 2 } + + dellNetSysCoresTimeCreated OBJECT-TYPE + SYNTAX DellNetSwDate + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time at which the core file was created." + ::= { dellNetSysCoresEntry 3 } + + dellNetSysCoresStackUnitNumber OBJECT-TYPE + SYNTAX Integer32 (1..12) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The stack unit member which generated the core." + ::= { dellNetSysCoresEntry 4 } + + dellNetSysCoresProcess OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the process which generated the core." + ::= { dellNetSysCoresEntry 5 } + + -- ## Port Table + + dellNetSysIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF DellNetSysIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of intefaces in the S-series chassis. + This table is similar to chSysPortTable but + supported only for ON platforms due to change + in numbering scheme." + ::= { dellNetSystemComponent 10 } + + dellNetSysIfEntry OBJECT-TYPE + SYNTAX DellNetSysIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A interface entry containing objects for a + particular interface." + INDEX { ifIndex } + ::= { dellNetSysIfTable 1 } + + DellNetSysIfEntry ::= + SEQUENCE { + dellNetSysIfType DellNetIfType, + dellNetSysIfName DisplayString, + dellNetSysIfAdminStatus INTEGER, + dellNetSysIfOperStatus INTEGER, + dellNetSysIfXfpRecvPower DellNetHundredthdB, + dellNetSysIfXfpRecvTemp Integer32, + dellNetSysIfXfpTxPower DellNetHundredthdB + } + + dellNetSysIfType OBJECT-TYPE + SYNTAX DellNetIfType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of Interface." + ::= { dellNetSysIfEntry 1 } + + dellNetSysIfName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display name of the interface." + ::= { dellNetSysIfEntry 2 } + + dellNetSysIfAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The admin status of the interface. + The interface admin status is Up if + the user has configured it to be up + otherwise, the admin status is Down." + ::= { dellNetSysIfEntry 3 } + + dellNetSysIfOperStatus OBJECT-TYPE + SYNTAX INTEGER { + ready(1), + portDown(2), + portProblem(3), + cardProblem(4), + cardDown(5), + notPresent(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The operational status provides further + condition of the interface. + If the dellNetSysIfAdminStatus is 'up', the + valid state is + 'ready' - the card is present and + ready and the dellNetSysIfAdminStatus + status is 'up'. + 'portDown' - the interface is down or not enabled. + 'portProblem' - interface hardware problems. + 'cardProblem' - not used. Same as cardDown. + 'cardDown' - the card is down. + 'notPresent' - the card is not present." + ::= { dellNetSysIfEntry 4 } + + dellNetSysIfXfpRecvPower OBJECT-TYPE + SYNTAX DellNetHundredthdB + UNITS "dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The power signal strength (dB) received for + 1G/10G/40G Ethernet/802.3 interface. + " + ::= { dellNetSysIfEntry 5 } + + dellNetSysIfXfpRecvTemp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The temperature value received for the optics." + ::= { dellNetSysIfEntry 6 } + + dellNetSysIfXfpTxPower OBJECT-TYPE + SYNTAX DellNetHundredthdB + UNITS "dB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The power signal strength (dB) Transmitted for + 1G/10G/40G Ethernet/802.3 interface. + " + ::= { dellNetSysIfEntry 7 } + + + -- + -- ## Alarm Group or Traps + -- + + dellNetSysAlarmMibNotifications OBJECT IDENTIFIER ::= { dellNetSysAlarmObjects 1 } + dellNetSysAlarmVariable OBJECT IDENTIFIER ::= { dellNetSysAlarmObjects 2 } + + -- + -- TRAP VarBind Data + -- + + dellNetSysAlarmVarInteger OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "An generic integer value in the TRAP object" + ::= { dellNetSysAlarmVariable 1 } + + dellNetSysAlarmVarString OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "An generic string value in the TRAP object" + ::= { dellNetSysAlarmVariable 2 } + + dellNetSysAlarmVarSlot OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The chassis slot number. + For the traps that does not have slot information the value will + -1 in the TRAP PDU. + " + ::= { dellNetSysAlarmVariable 3 } + + dellNetSysAlarmVarPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The chassis port number. + For the traps that does not have port information the value will + -1 in the TRAP PDU. + " + ::= { dellNetSysAlarmVariable 4 } + + dellNetSysAlarmVarChassisId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The Chassis ID. + For the traps that does not have Chassis information the value will + be -1 in the TRAP PDU. + For Non-ON based platforms, the value is 0 based and for ON Based + platform it is 1 based in the Trap PDU. + " + ::= {dellNetSysAlarmVariable 5 } + + dellNetsysAlarmVarFanTrayId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The FanTray ID. + For the traps that does not have FanTray ID the value will + be -1 in the TRAP PDU. + For Non-ON based platforms, the value is 0 based and for + ON Based platform it is 1 based in the Trap PDU. + " + ::= {dellNetSysAlarmVariable 6 } + + dellNetsysAlarmVarPsuId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The PSU ID. + For the traps that does not have PSU Id the value will be + -1 in the TRAP PDU. + For Non-ON based platforms, the value is 0 based and for + ON Based platform it is 1 based in the Trap PDU. + " + ::= {dellNetSysAlarmVariable 7 } + + dellNetsysAlarmVarFanId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The Fan ID. + For the traps that does not have Fan Id the + value will be -1 in the TRAP PDU. + For Non-ON based platforms, the value is 0 based and for + ON Based platform it is 1 based in the Trap PDU. + " + ::= {dellNetSysAlarmVariable 8 } + + dellNetSysAlarmVarPeId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The Pe ID. + For the traps that does not have PE Id information the value will + be -1 in the TRAP PDU. + " + ::= { dellNetSysAlarmVariable 9 } + + -- + -- TRAPS + -- + + dellNetSysAlarmCardDown NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when a + card operational status is down." + ::= { dellNetSysAlarmMibNotifications 1 } + + dellNetSysAlarmCardUp NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when a + card operational status is up." + ::= { dellNetSysAlarmMibNotifications 2 } + + + dellNetSysAlarmCardOffline NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when a + card is set to offline." + ::= { dellNetSysAlarmMibNotifications 3 } + + dellNetSysAlarmCardMismatch NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when a + card is not the same as configured" + ::= { dellNetSysAlarmMibNotifications 4 } + + dellNetSysAlarmRpmUp NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The primary RPM generate this trap when the primary RPM or + the secondary RPM is up and running." + ::= { dellNetSysAlarmMibNotifications 5 } + + dellNetSysAlarmRpmDown NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The primary RPM generate this trap when the secondary RPM is + down, either by software reset or being physically removed from + the chassis." + ::= { dellNetSysAlarmMibNotifications 6 } + + dellNetSysAlarmPowersupplyDown NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when a + power supply is not operational." + ::= { dellNetSysAlarmMibNotifications 7 } + + + dellNetSysAlarmMinorTemperatureHigh NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when the + chassis's temperature exceed the minor threshold." + ::= { dellNetSysAlarmMibNotifications 8 } + + dellNetSysAlarmMajorTemperatureHigh NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when the + chassis's temperature exceede the major threshold." + ::= { dellNetSysAlarmMibNotifications 9 } + + dellNetSysAlarmFanTrayDown NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetsysAlarmVarFanTrayId, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when a + fan tray is missing or down." + ::= { dellNetSysAlarmMibNotifications 10 } + + dellNetSysAlarmPowersupplyClear NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetsysAlarmVarPsuId, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when a + power supply is now operational." + ::= { dellNetSysAlarmMibNotifications 11 } + + dellNetSysAlarmMinorTemperatureClear NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when the + chassis's temperature within the minor threshold." + ::= { dellNetSysAlarmMibNotifications 12 } + + dellNetSysAlarmMajorTemperatureClear NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when the + chassis's temperature within the major threshold." + ::= { dellNetSysAlarmMibNotifications 13 } + + dellNetSysAlarmFanTrayClear NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetsysAlarmVarFanTrayId, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when a + fan tray is now operational." + ::= { dellNetSysAlarmMibNotifications 14 } + + dellNetSysAlarmMinorFanBadClear NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetsysAlarmVarFanTrayId, + dellNetsysAlarmVarFanId, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when a + minor fan tray that was bad is now operational." + ::= { dellNetSysAlarmMibNotifications 15 } + + + dellNetSysAlarmMajorPS NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetsysAlarmVarPsuId, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The agent generate this trap when a + power supply major alarm is issued." + ::= { dellNetSysAlarmMibNotifications 16 } + + dellNetSysAlarmMajorPSClr NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetsysAlarmVarPsuId, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The agent generate this trap when a + power supply major alarm is cleared." + ::= { dellNetSysAlarmMibNotifications 17 } + + dellNetSysAlarmMinorPS NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetsysAlarmVarPsuId, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The agent generate this trap when a + power supply minor alarm is issued." + ::= { dellNetSysAlarmMibNotifications 18 } + + dellNetSysAlarmMinorPSClr NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetsysAlarmVarPsuId, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The agent generate this trap when a + power supply minor alarm is cleared." + ::= { dellNetSysAlarmMibNotifications 19 } + + dellNetSysAlarmMinorFanBad NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetsysAlarmVarFanTrayId, + dellNetsysAlarmVarFanId, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The agent generate this trap when + fan is bad." + ::= { dellNetSysAlarmMibNotifications 20 } + + + dellNetSysAlarmRpmPrimary NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The agent generate this trap when a standby RPM become Primary RPM + after fail-over." + ::= { dellNetSysAlarmMibNotifications 21 } + + dellNetSysSnmpIpAclDeny NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The agent generate this trap when SNMP Agent deny a SNMP request + based on the IP ACL rules. + " + ::= { dellNetSysAlarmMibNotifications 22 } + + dellNetSysAlarmCardVersionMismatch NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when a + card is not the same software version as a Management unit. + Applied to S-series stackin only." + ::= { dellNetSysAlarmMibNotifications 23 } + + dellNetSysAlarmUnsupportedOptic NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The Interface Agent generate this trap when an unsupported optic + is inserted in a port" + ::= { dellNetSysAlarmMibNotifications 24 } + + dellNetSysAlarmFanTrayOrPsuDown NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetsysAlarmVarFanTrayId, + dellNetsysAlarmVarPsuId, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when a + fan tray or psu is missing or down." + ::= { dellNetSysAlarmMibNotifications 25 } + + dellNetSysAlarmFanTrayOrPsuClear NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetsysAlarmVarFanTrayId, + dellNetsysAlarmVarPsuId, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when a + fan tray or psu is now operational." + ::= { dellNetSysAlarmMibNotifications 26 } + + + dellNetSysAlarmPEUp NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when a + PE operational status is up." + ::= { dellNetSysAlarmMibNotifications 27 } + + dellNetSysAlarmPEDown NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when a + PE operational status is down." + ::= { dellNetSysAlarmMibNotifications 28 } + + + dellNetSysAlarmPEUnitUp NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when a + PE Unit operational status is up." + ::= { dellNetSysAlarmMibNotifications 29 } + + dellNetSysAlarmPEUnitDown NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The driver/agent generate this trap when a + PE Unit operational status is down." + ::= { dellNetSysAlarmMibNotifications 30 } + + dellNetSysAlarmExdCpuThreshold NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The agent generate this trap when + cpu utilization excceded 80%." + ::= { dellNetSysAlarmMibNotifications 31 } + + dellNetSysAlarmClrCpuThreshold NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The agent generate this trap when + cpu utilization falls below threshold." + ::= { dellNetSysAlarmMibNotifications 32 } + + dellNetSysAlarmExdMemThreshold NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The agent generate this trap when + memory utilization excceded 92%." + ::= { dellNetSysAlarmMibNotifications 33 } + + dellNetSysAlarmClrMemThreshold NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The agent generate this trap when + memory utilization falls below threshold." + ::= { dellNetSysAlarmMibNotifications 34 } + + dellNetSysAlarmTaskSuspend NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + + STATUS current + DESCRIPTION + "The system generate this trap when a + a task is suspended." + ::= { dellNetSysAlarmMibNotifications 35 } + + dellNetSysAlarmTaskTerm NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The system generate this trap when a + a task is terminated." + ::= { dellNetSysAlarmMibNotifications 36 } + + dellNetSysAlarmMacStationMove NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS current + DESCRIPTION + "The agent generate this trap when a MAC station move exceed the + threshold. + " + ::= { dellNetSysAlarmMibNotifications 37} + + dellNetSysAlarmCardReset NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS deprecated + DESCRIPTION + "The driver/agent generate this trap when a + card is reset." + ::= { dellNetSysAlarmMibNotifications 38 } + + dellNetSysAlarmCardRemove NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS deprecated + DESCRIPTION + "The driver/agent generate this trap when a + card is removed" + ::= { dellNetSysAlarmMibNotifications 39 } + + dellNetSysAlarmCardProblem NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS deprecated + DESCRIPTION + "The driver/agent generate this trap when a + card is indicated wht status card problem" + ::= { dellNetSysAlarmMibNotifications 40 } + + dellNetSysAlarmCutoff NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS deprecated + DESCRIPTION + "This trap is generated if the alarm + cut off button on RPM is pressed." + ::= { dellNetSysAlarmMibNotifications 41 } + + dellNetSysAlarmSRAMParityErrorDetect NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS deprecated + DESCRIPTION + "The agent generate this trap when a linecard detects SRAM + parity error and then tries to recover but can't recover + that section. + " + ::= { dellNetSysAlarmMibNotifications 42 } + + dellNetSysAlarmAcDcMixedPowerSupplyDetect NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS deprecated + DESCRIPTION + "The agent generate this trap when a system detects AC and + DC mixed power supply. + Applied to C-series only. + " + ::= { dellNetSysAlarmMibNotifications 43 } + + dellNetSysAlarmVrrpGoMaster NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS deprecated + DESCRIPTION + "The VRRP generate this trap when it + become a backup" + ::= { dellNetSysAlarmMibNotifications 44 } + + dellNetSysAlarmVrrpGiveupMaster NOTIFICATION-TYPE + OBJECTS { dellNetSysAlarmVarInteger, + dellNetSysAlarmVarString, + dellNetSysAlarmVarChassisId, + dellNetSysAlarmVarSlot, + dellNetSysAlarmVarPort, + dellNetSysAlarmVarPeId + } + STATUS deprecated + DESCRIPTION + "The VRRP generate this trap when it + is no longer the master and has entered non-operational state." + ::= { dellNetSysAlarmMibNotifications 45 } + + + -- ### conformance information ### + dellNetChassisMibConformance OBJECT IDENTIFIER ::= { dellNetChassisMib 2 } + dellNetChassisMibCompliances OBJECT IDENTIFIER ::= { dellNetChassisMibConformance 1 } + dellNetChassisMibGroups OBJECT IDENTIFIER ::= { dellNetChassisMibConformance 2 } + + -- ## compliance statements + dellNetChassisMibCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for Dell Networking OS + product which implement the Dell Networking + Chassis MIB." + MODULE -- this module + MANDATORY-GROUPS { + dellNetComponentGroup, + dellNetSystemGroup, + dellNetChassisNotificationGroup + } + ::= { dellNetChassisMibCompliances 1 } + + -- ## units of conformance + + dellNetComponentGroup OBJECT-GROUP + OBJECTS { + dellNetDeviceType + } + STATUS current + DESCRIPTION + "A collection of objects providing the + overall chassis information." + ::= { dellNetChassisMibGroups 1 } + + dellNetSystemGroup OBJECT-GROUP + OBJECTS { + dellNetProcessorModule, + dellNetProcessorUpTime, + dellNetProcessorMemSize, + dellNetCpuUtil5Sec, + dellNetCpuUtil1Min, + dellNetCpuUtil5Min, + dellNetCpuUtilMemUsage, + dellNetSwModuleRuntimeImgVersion, + dellNetSwModuleRuntimeImgDate, + dellNetSwModuleBootFlashImgVersion, + dellNetSwModuleBootSelectorImgVersion, + dellNetSwModuleNextRebootImage, + dellNetSwModuleCurrentBootImage, + dellNetSwModuleInPartitionAImgVers, + dellNetSwModuleInPartitionBImgVers, + dellNetPowerSupplyOperStatus, + dellNetPowerSupplyType, + dellNetPowerSupplyPiecePartID, + dellNetPowerSupplyPPIDRevision, + dellNetPowerSupplyServiceTag, + dellNetPowerSupplyExpressServiceCode, + dellNetPowerSupplyUsage, + dellNetFanTrayOperStatus, + dellNetFanTrayPiecePartID, + dellNetFanTrayPPIDRevision, + dellNetFanTrayServiceTag, + dellNetFanTrayExpressServiceCode + + } + STATUS current + DESCRIPTION + "A collection of objects providing the + chassis system hardware information." + ::= { dellNetChassisMibGroups 2 } + + dellNetChassisNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { + dellNetSysAlarmCardDown, + dellNetSysAlarmCardUp, + dellNetSysAlarmCardOffline, + dellNetSysAlarmCardMismatch, + dellNetSysAlarmRpmUp, + dellNetSysAlarmRpmDown, + dellNetSysAlarmPowersupplyDown, + dellNetSysAlarmMinorTemperatureHigh, + dellNetSysAlarmMajorTemperatureHigh, + dellNetSysAlarmFanTrayDown, + dellNetSysAlarmPowersupplyClear, + dellNetSysAlarmMinorTemperatureClear, + dellNetSysAlarmMajorTemperatureClear, + dellNetSysAlarmFanTrayClear, + dellNetSysAlarmMinorFanBadClear, + dellNetSysAlarmMajorPS, + dellNetSysAlarmMajorPSClr, + dellNetSysAlarmMinorPS, + dellNetSysAlarmMinorPSClr, + dellNetSysAlarmMinorFanBad, + dellNetSysAlarmRpmPrimary, + dellNetSysSnmpIpAclDeny, + dellNetSysAlarmCardVersionMismatch, + dellNetSysAlarmUnsupportedOptic, + dellNetSysAlarmPEUnitUp, + dellNetSysAlarmPEUnitDown, + dellNetSysAlarmPEUp, + dellNetSysAlarmPEDown, + dellNetSysAlarmExdCpuThreshold, + dellNetSysAlarmClrCpuThreshold, + dellNetSysAlarmExdMemThreshold, + dellNetSysAlarmClrMemThreshold, + dellNetSysAlarmTaskSuspend, + dellNetSysAlarmTaskTerm, + dellNetSysAlarmMacStationMove, + dellNetSysAlarmCardReset, + dellNetSysAlarmCardRemove, + dellNetSysAlarmCardProblem, + dellNetSysAlarmCutoff, + dellNetSysAlarmSRAMParityErrorDetect, + dellNetSysAlarmAcDcMixedPowerSupplyDetect, + dellNetSysAlarmVrrpGoMaster, + dellNetSysAlarmVrrpGiveupMaster + } + STATUS current + DESCRIPTION + "Notifications for Dell Networking OS Chassis mib" + ::= { dellNetChassisMibGroups 3 } + END diff --git a/mibs/dell/DELL-NETWORKING-SMI b/mibs/dell/DELL-NETWORKING-SMI new file mode 100644 index 0000000000..3dfba2bf62 --- /dev/null +++ b/mibs/dell/DELL-NETWORKING-SMI @@ -0,0 +1,82 @@ + DELL-NETWORKING-SMI DEFINITIONS ::= BEGIN + -- This module provides authoritative + -- definitions for Dell Networking OS MIB. + -- + -- This module will be extended, as needed. + -- + IMPORTS + MODULE-IDENTITY,enterprises, + OBJECT-IDENTITY + FROM SNMPv2-SMI; + + dellNet MODULE-IDENTITY + + LAST-UPDATED "200706151200Z" -- June 15, 2007 12:00:00 GMT + ORGANIZATION + "Dell Inc" + CONTACT-INFO + "http://www.dell.com/support" + + DESCRIPTION + "The Structure of Management Information for + the Dell Networking OS." + + -- Revision history. + REVISION "200706151200Z" -- June 15, 2007 12:00:00 GMT + DESCRIPTION + "Added dellNetModules." + + REVISION "0010100000Z" + DESCRIPTION + "Initial version of this MIB module." + ::= { enterprises 6027 } -- assigned by IANA + + + dellNetProducts OBJECT-IDENTITY + STATUS current + DESCRIPTION + "Dell Networking OS Products' OID." + ::= { dellNet 1 } + + dellNetCommon OBJECT-IDENTITY + STATUS current + DESCRIPTION + "All Dell Networking OS shared TEXTTUAL-CONVENTION + definitions" + ::= { dellNet 2 } + + dellNetMgmt OBJECT-IDENTITY + STATUS current + DESCRIPTION + "dellNetMgmt is the main subtree for Dell Networking OS + mib development." + ::= { dellNet 3 } + + dellNetModules OBJECT-IDENTITY + STATUS current + DESCRIPTION + "dellNetModules provides a root object identifier + from which MODULE-IDENTITY values may be based." + ::= { dellNet 4 } + + dellNetExperiment OBJECT-IDENTITY + STATUS current + DESCRIPTION + "dellNetExperiment provides a root object identifier + from which experimental mibs may be temporarily + based. mibs are typicially based here if they + fall in one of two categories + 1) are IETF work-in-process mibs which have not + been assigned a permanent object identifier by + the IANA. + 2) are Dell Networking OS work-in-process which has not been + assigned a permanent object identifier by the + Dell Networking OS assigned number authority, typicially because + the mib is not ready for deployment. + + NOTE WELL: support for mibs in the dellNetExperiment + subtree will be deleted when a permanent object + identifier assignment is made." + ::= { dellNet 20 } + + END diff --git a/mibs/dell/DELL-NETWORKING-TC b/mibs/dell/DELL-NETWORKING-TC new file mode 100644 index 0000000000..13b3e3a1f6 --- /dev/null +++ b/mibs/dell/DELL-NETWORKING-TC @@ -0,0 +1,614 @@ +-- +-- Dell Networking OS MIB Textual Conventions +-- +-- This module provides authoritative definitions for Dell Networking OS +-- Textual Convention MIB. +-- +-- This module will be extended, as needed. +-- + +DELL-NETWORKING-TC DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, Integer32 + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, DisplayString + FROM SNMPv2-TC + dellNetModules + FROM DELL-NETWORKING-SMI; + +dellNetTextualConventions MODULE-IDENTITY + LAST-UPDATED "200904071200Z" -- Apr. 7, 2009 12:00:00 GMT + ORGANIZATION + "Dell Inc" + CONTACT-INFO + "http://www.dell.com/support" + DESCRIPTION + "The Textual Convention of Dell Networking OS MIB." + + REVISION "200904071200Z" + DESCRIPTION + "Added new Nemesis card type." + + REVISION "200809161200Z" + DESCRIPTION + "Added ExaScale chassis mode and Nemesis card type." + + REVISION "200809021200Z" + DESCRIPTION + "Added DellNetCardOperStatus." + + REVISION "200706281200Z" + DESCRIPTION + "Added DellNetChassisType and DellNetHundredthdB." + ::= { dellNetModules 2} + + + DellNetChassisType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Dell Networking OS chassis type." + SYNTAX INTEGER { + e1200(1), -- Dell Networking OS E1200 16-slot switch/router + e600(2), -- Dell Networking OS E600 9-slot switch/router + e300(3), -- Dell Networking OS E300 8-slot switch/router + e150(4), -- Dell Networking OS E150 8-slot switch/router + e610(5), -- Dell Networking OS E610 9-slot switch/router + c150(6), -- Dell Networking OS C150 6-slot switch/router + c300(7), -- Dell Networking OS C300 10-slot switch/router + e1200i(8), -- Dell Networking OS E1200i 16-slot switch/router + s2410cp(9), -- Dell Networking OS S2410 10GbE switch + s2410p(10), -- Dell Networking OS S2410 10GbE switch + s50(11), -- Dell Networking OS S50 access switch + s50e(12), -- Dell Networking OS S50e access switch + s50v(13), -- Dell Networking OS S50v access switch + s50nac(14), -- Dell Networking OS S50nac access switch + s50ndc(15), -- Dell Networking OS S50ndc access switch + s25pdc(16), -- Dell Networking OS S25pdc access switch + s25pac(17), -- Dell Networking OS S25pac access switch + s25v(18), -- Dell Networking OS S25v access switch + s25n(19), -- Dell Networking OS S25n access switch + s60(20), -- Dell Networking OS S60 access switch + s55(21), -- Dell Networking OS S55 access switch + s4810(22), -- Dell Networking OS S4810 access switch + s6410(23), -- Dell Networking OS S6410 access switch + z9000(24), -- Dell Networking OS Z9000 access switch + m-MXL(25), -- Dell Networking OS MXL 10/40GE switch/router + m-IOA(26), -- PowerEdge M I/O Aggregator bridge + s4820(27), -- Dell Networking OS S4820 access switch + s6000(28), -- Dell Networking OS S6000 access switch + s5000(29), -- Dell Networking OS S5000 access switch + s-FN410S-IOA(30), -- Dell PowerEdge FN 410S IOA + s-FN410T-IOA(31), -- Dell PowerEdge FN 410T IOA + s-FN2210S-IOA(32), -- Dell PowerEdge FN 2210S IOA + z9500(33), -- Dell Networking OS Z9500 switch + c9010(34), -- Dell Networking OS C9010 switch + c1048p(35), -- Dell Networking OS C1048P switch + s4048on(36), -- Dell Networking OS S4048 ON access switch + s4810on(37), -- Dell Networking OS S4810 ON access switch + s6000on(38), -- Dell Networking OS S6000 ON access switch + s3048on(39), -- Dell Networking OS S3048 ON access switch + z9100(40), -- Dell Networking OS Z9100 access switch + s6100(41), -- Dell Networking OS S6100 access switch + s3148p(42), -- Dell Networking OS S3148P access switch + s3124p(43), -- Dell Networking OS S3124P access switch + s3124f(44), -- Dell Networking OS S3124F access switch + s3124(45), -- Dell Networking OS S3124 access switch + s3148(46), -- Dell Networking OS S3148 access switch + s4048ton(47), -- Dell Networking OS S4048T-ON access switch + s6010(48) -- Dell Networkign OS S6010 access switch + } + + DellNetInterfaceType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Interface types supported by the Dell Networking OS line cards. + " + SYNTAX INTEGER { + ethernetManagement(1), -- Ethernet Mangement port + ethernet100M(2), -- Ethernet 100Mb + ethernet1GB(3), -- Ethernet 1 GB interface + ethernet1GBCopper(4), -- Ethernet Copper 1 GB interface + ethernet10GB(5), -- Ethernet 10 GB interface + ethernet10GBCopper(6), -- Ethernet Copper 10 GB interface + sonetOC3OC12(7), -- SONET or OC3/OC12 interface + sonetOC48OC96(8), -- SONET or OC48/OC96 interface + sonetOC192(9), -- SONET or OC192 interface + ethernet40GB(10) -- Ethernet 40 GB interface + } + + DellNetSystemPortType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Port type available in Dell Networking OS series of products." + SYNTAX INTEGER { + portSerial(1), + portAux(2), + portFastEther(3), + port0210E2TV(4), -- xena + port0210E2TE(5), -- zeus 40K + port2401E24S(6), -- ripley sx eb + port2401E24L(7), -- ripley lx eb + port12OC12OC3(8), -- aladdin + port01OC192(9), -- mulan + port2401E24SEC(10), -- hercules sx ec + port2401E24LEC(11), -- hercules lx ec + port0210E2TY(12), -- zeus 10K + port0210E2TU(13), -- zeus 100K + port0110EW1YB(14), -- everest eb + port0110EW1YC(15), -- everest ec + port02S48YC2(16), -- cairo ec + port0110EX1YB(17), -- K2 eb (1-port zeus 10K) + port0110EX1YC(18), -- K2 ec (1-port zeus 10K) + port1201F12PB(19), -- morpheus eb + port1201F12PC(20), -- morpheus ec + port0110EX1EB(21), -- K2 eb 40K + port0110EX1EC(22), -- K2 ec 40K + port0110EX1YBL(23), -- Lisbon + port0210EX2YD(24), -- Prometheus 10Km + port0210EX2ED(25), -- Prometheus 40Km + port0210EX2ZD-DEP(26), -- Prometheus 80Km Deprecated + port0210EW2YD(27), -- Corsica 10Km + port0110EX1YD(28), -- Cyclops 10Km + port0110EX1ED(29), -- Cyclops 40Km + port0110EX1ZD(30), -- Cyclops 80Km + port0110EW1YD(31), -- Sicily 10Km WAN ED2 + port2401E24PD(32), -- Cronus GE SFP + port0210EX2YD2(33), -- Prometheus 10Km ED2 + port0210EX2YE(34), -- Prometheus 10Km EE + port0110EX1YD2(35), -- Cyclops 10Km ED2 + port0110EX1YE(36), -- Cyclops 10Km EE + port0210EW2YD2(37), -- Corsica 10Km WAN + port0210EW2YE(38), -- Corsica 10Km WAN EE + port0110EW1YE(39), -- Sicily 10Km WAN EE + port01OC192SE(40), -- Sequoia OC192/STM64 + port2401E24TD(41), -- Castor FE/GE + port2401E24PE(42), -- Cronus GE SFP EE + port1201F12PC2(43), -- morpheus EoMPLS + port0210EX2ZD(44), -- Prometheus 80Km + port0210EW2YD3(45), -- Prometheus 10Km WAN + port0210EX2ZE(46), -- Prometheus 80Km EE + port1201F12PE(47), -- Apollo GE 12ports GE EE + port2401E24PD2(48), -- Cronus GE SFP ED2 + port1201E12TD3(49), -- Budlite 12 ports FE/GE + port0210EX2YD3(50), -- Tsunami 40Km ED + port0110EX1YD3(51), -- Tsunami 1pp 40Km ED + port1201E12PD3(52), -- Typhoon 12 ports SFP ED3 + port02S48YE2(53), -- CAIRO J port + port0110EX1YE3(54), -- Tsunami 1pp 40Km EE + port1201E12PE3(55), -- Typhoon 12 ports EE + + -- T2C2 Cards + port4801E48PF(56), -- Saturn 48 ports 2 pp GE + port2401E24PF3(57), -- Saturn-s 24 ports 1 pp GE + port4801E48TF3(58), -- Ketel1 48 ports 1 pp E/FE/GE oversub E300 + port4801E48TF(59), -- Pluto 48 ports 2 pp E/FE/GE + port0410EXW4PF(60), -- Voltex 4 ports 2 pp LAN/WAN 10 GE + port0210EXW2PF3(61), -- Voltex-s 2 ports 1 pp LAN/WAN 10 GE + port9001E90MF(62), -- Absolut 90 ports 2 pp GE + port4801E48T1F(63), -- Medusa 48 ports 1 pp E/FE/GE oversub E600/1200 + port1610EXW16PF(64), -- Baku 16 ports 2 pp LAN/WAN 10 GE + port0810EXW8PF(65), -- Baku 8 ports 1 pp LAN/WAN 10 GE + port0410EXW4PG(66), -- Voltex 4 ports 2 pp LAN/WAN 10 GE (EG) + port4801E48PG(67), -- Saturn 48 ports 2 pp GE (EG) + port4801E48TG(68), -- Pluto 48 ports 2 pp E/FE/GE (EG) + port0210EXW2PG3(69), -- Voltex 2 ports 1 pp LAN/WAN 10 GE (EG3) + port2401E24PG3(70), -- Saturn 24 ports 1 pp GE (EG3) + port2401E24TG3(71), -- Pluto 24 ports 1 pp E/FE/GE (EG3) + port04S48P4G(72), -- Sonoma OC48c/12c/3c 4 Ports (EG) + port04S48P4G3(73), -- Sonoma OC48c/12c/3c 4 Ports (EG3) + port1610EXW16PG(74), -- Baku Dual CAM 16 ports 10GE + port0810EXW8PG3(75), -- Baku Dual CAM 8 ports + + -- CYCLONE3 Cards + port9001E90MH(76), -- Athena 90 ports 10M CAM E/FE/GE (EH) + port1010EXW10SH(77), -- Icarus-SFP+ 10 ports LAN/WAN 10GE SFP+ (EH) + port1010EXW10SJ(78), -- Icarus-SFP+-Dual CAM 10 ports LAN/WAN 10GE SFP+ (EJ) + port9001E90MJ(79), -- Athena 90 ports 40M CAM E/FE/GE (EJ) + port5001E50PH(80), -- Artemis-SFP 50 ports LAN 1GE SFP 10M CAM (EH) + port5001E50PJ(81), -- Artemis-SFP 50 ports LAN 1GE SFP 40M CAM (EJ) + port1010EXW10PH(82), -- Erebus 10 ports 10GE XFP 10M CAM (EH) + port1010EXW10PJ(83), -- Erebus 10 ports 10GE XFP 40M CAM (EJ) + port4010EXW40SH(84), -- Pegasus 40 ports LAN/WAN SFP + 10M CAM + port4010EXW40SJ(85), -- Pegasus 40 ports LAN/WAN SFP + 40M CAM + + portUnknown(99) + } + + + DellNetSystemCardType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The processor card supported by the Dell Networking OS + products ." + SYNTAX INTEGER { + + notPresented(0), + lc0210E2TV(1), -- 2-port 10GE LAN PHY line card with VSR optics + lc0210E2TE(2), -- 2-port 10GE LAN PHY line card with 40Km optics + lc2401E24S(3), -- 24-port GE line card with SX optics + lc2401E24L(4), -- 24-port GE line card with LX optics + lc12OC12OC3(5), -- 12-port OC12c/3c PoS + EoS line card with IR optics + lc01OC192(6), -- 1-port OC192c Pos line card with SR optics + lcReserve(7), + lc2401E24SEC(8), -- 24-port GE line card with SX optics (EC) + lc2401E24lEc(9), -- 24-port GE line card with SX optics (EC) + lc0210E2TY(10), -- 2-port 10GE LAN PHY line card with 10Km optics + lc0210E2TU(11), -- 2-port 10GE LAN PHY line card with 100Km optics + lc0110EW1YB(12), -- 1-port 10GE WAN PHY line card with 10Km optics + lc0110EW1YC(13), -- 1-port 10GE WAN PHY line card with 10Km optics + lc02S48YC2(14), -- 2-port OC48c line card with SR optics (EC) + lc0110EX1YB(15), -- 1-port 10GE LAN PHY line card with 10Km optics (EB) + lc0110EX1YC(16), -- 1-port 10GE LAN PHY line card with 10Km optics (EC) + lc1201F12PB(17), -- 12-port GE Flex line card with SFP optics (EB) + lc1201F12PC(18), -- 12-port GE Flex line card with SFP optics (EC) + lc0110EX1EB(19), -- 1-port 10GE LAN PHY line card with 40Km optics (EB) + lc0110EX1EC(20), -- 1-port 10GE LAN PHY line card with 40Km optics (EC) + lc0110EX1YBL(21), -- 1-port 10GE LAN PHY line card with 10Km optics (EB) + lc0210EX2YD(22), -- 2 port 10GE LAN PHY with 10Km (1301nm) optics (ED) + lc0210EX2ED(23), -- 2 port 10GE LAN PHY with 40Km (1550nm) optics (ED) + lc0210EX2ZDdep(24), -- 2 port 10GE LAN PHY with 80Km (1550nm) optics (ED; DEPRECATED. + lc0210EW2YD(25), -- 2 port 10GE WAN PHY with 10Km (1310nm) optics (ED) + lc0110EX1YD(26), -- 1 port 10GE LAN PHY with 10Km (1310nm) optics (ED) + lc0110EX1ED(27), -- 1 port 10GE LAN PHY with 40Km (1550nm) optics (ED) + lc0110EX1ZD(28), -- 1 port 10GE LAN PHY with 80Km (1550nm) optics (ED) + lc0110EW1YD(29), -- 1 port 10GE WAN PHY with 10Km. (1310nm) optics (ED) + lc2401E24PD(30), -- 24 port 1GE SFP (ED) + lc0210EX2YD2(31), -- 2 port 10GE LAN PHY with 10Km. (1310nm) optics (ED2) + lc0210EX2YE(32), -- 2 port 10GE LAN PHY with 10Km. (1310nm) optics (EE) + lc0110EX1YD2(33), -- 1 port 10 GE LAN PHY with 10Km. (1310nm) optics (ED2) + lc0110EX1YE(34), -- 1 port 10 GE LAN PHY with 10Km. (1310nm) optics (EE) + lc0210EW2YD2(35), -- 2 port 10GE WAN PHY with 10Km (1310nm) optics (ED2) + lc0210EW2YE(36), -- 2 port 10GE WAN PHY with 10Km (1310nm) optics (EE) + lc0110EW1YE(37), -- 1 port 10GE WAN PHY with 10Km. (1310nm) optics (EE) + lc01OC192SE(38), -- 1-port OC192c/STM-64c PoS line card with SR optics (EE) + lc2401E24TD(39), -- 24-port 100/1000Base-T line card with RJ-45 interfaces (ED) + lc2401E24PE(40), -- 24 port 1GE SFP (EE) + lc1201F12PC2(41), -- 12-port GE Flex line card with EoMPLS & SFP optics (EC2) + lc0210EX2ZD(42), -- 2 port 10GE LAN PHY with 80Km (1550nm) optics (ZD) + lc0210EW2YD3(43), -- 2 port 10GE WAN PHY with 10Km (1550nm) optics (ED3) + lc0210EX2ZE(44), -- 2 port 10GE LAN PHY with 80Km (1550nm) optics (EE) + lc1201F12PE(45), -- 12-port GE Flex line card with SFP optics (EE) + lc2401E24PD2(46), -- 24 port 1GE SFP (ED2) + lc0210EX2ZD2(47), -- PROMETHEUS 80Km ED2 + lc1201E12TD3(48), -- Moosehaed 12 ports 1 pp FE/GE + lc0210EX2YD3(49), -- Tsunami 10Km ED - Tsunami + Gorilla + lc0110EX1YD3(50), -- Tsunami 1 pp 10Km ED - Tsunami + Gorilla + lc1201E12PD3(51), -- Typhoon 12 ports SFP ED3 + lc02S48YE2(52), -- Cairo J EE + lc0110EX1YE3(53), -- Tsunami 1pp 40Km EE + lc1201E12PE3(54), -- Typhoon 12 ports EE + + -- T2C2 Cards + lc4801E48PF(55), -- Saturn 48 ports 2 pp GE + lc2401E24PF3(56), -- Saturn-s 24 ports 1 pp GE + lc4801E48TF3(57), -- Ketel1 48 ports 1 pp E/FE/GE oversub E300 + lc4801E48TF(58), -- Pluto 48 ports 2 pp E/FE/GE + lc0410EXW4PF(59), -- Voltex 4 ports 2 pp LAN/WAN 10 GE + lc0210EXW2PF3(60), -- Voltex-s 2 ports 1 pp LAN/WAN 10 GE + lc9001E90MF(61), -- Absolut 90 ports 2 pp GE + lc4801E48T1F(62), -- Medusa 48 ports 1 pp E/FE/GE oversub E600/1200 + lc1610EXW16PF(63), -- Baku 16 ports 10 GE + lc0810EXW8PF(64), -- Baku 8 ports 10 GE + lc0410EXW4PG(65), -- Voltex 4 ports 10 GE (EG) + lc4801E48PG(66), -- Saturn 48 ports 2 pp GE (EG) + lc4801E48TG(67), -- Pluto 48 ports 2 pp E/FE/GE (EG) + lc0210EXW2PG3(68), -- Voltex 2 ports 10 GE (EG3) + lc2401E24PG3(69), -- Saturn 24 ports 1 pp GE (EG3) + lc2401E24TG3(70), -- Pluto 24 ports 1 pp E/FE/GE (EG3) + lc04S48P4G(71), -- Sonoma OC48c/12c/3c 4 Ports (EG) + lc04S48P4G3(72), -- Sonoma OC48c/12c/3c 4 Ports (EG3) + lc1610EXW16PG(73), -- Baku Dual CAM 16 ports + lc0810EXW8PG3(74), -- Baku Dual CAM 8 ports + + -- CYCLONE3 Cards + lc9001E90MH(75), -- Athena 90 ports 10M CAM E/FE/GE (EH) + lc1010EXW10SH(76), -- Icarus-SFP+ 10 ports LAN/WAN 10GE SFP+ (EH) + lc1010EXW10SJ(77), -- Icarus-SFP+-Dual CAM 10 ports LAN/WAN 10GE SFP+ (EJ) + lc9001E90MJ(78), -- Athena 90 ports 40M CAM E/FE/GE (EJ) + lc5001E50PH(79), -- Artemis-SFP 50 ports LAN 1GE SFP 10M CAM (EH) + lc5001E50PJ(80), -- Artemis-SFP 50 ports LAN 1GE SFP 40M CAM (EJ) + lc1010EXW10PH(81), -- Erebus 10 ports 10GE XFP 10M CAM (EH) + lc1010EXW10PJ(82), -- Erebus 10 ports 10GE XFP 40M CAM (EJ) + lc4010EXW40SH(83), -- Pegasus 40 ports 10GE SFP+ 10M CAM + lc4010EXW40SJ(84), -- Pegasus 40 ports 10GE SFP+ 40M CAM + z9500LC12(85), + z9500LC36(86), + z9500LC48(87), + c9000LC24X10GCu(88), + c9000LC24X10GOptics(89), + c9000LC6X40G(90), + + rpmCard(200), -- Route Processor Card + rpmCardEB(201), + rpmCardED(202), + rpmCardEE(203), + rpmCardEE3(204), + rpmCardEF(205), + rpmCardEF3(206), + rpmCardEH(207), -- Bigfoot + supCard(208), -- Supervisor Card + sfmCard(250), -- Switch Fabric Card + + cardUnknown(259) + } + + DellNetCardOperStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The operational status provides further condition of + the card. If AdminStatus is changed to 'up', then the + valid state is + 'ready' - the card is present and ready and operational + packets can be passed + If AdminStatus is changed to 'down', the states can be + as followed: + 'cardNotmatch'- the card does not matche what is configured + 'cardProblem' - the card detects hardware problems + 'diagMode' - the card in the diagnostic mode + 'cardAbsent' - the card is not present + 'offline' - the card is not used." + SYNTAX INTEGER { + ready(1), + cardNotmatch(2), + cardProblem(3), + diagMode(4), + cardAbsent(5), + offline(6) + } + + DellNetIfType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Port type available in Dell Networking OS products." + SYNTAX INTEGER { + portSerial(1), + portFastEther(2), + portGigEther(3), + port10GigEther(4), + port40GigEther(5), + portFibreChannel(6), + portAux(7), + portUnknown(99) + } + + + DellNetCSeriesCardType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The processor card supported by the Dell Networking OS C-Series system + products ." + SYNTAX INTEGER { + notPresented(0), + cardUnknown(99), + lc4802E48TB(1024), -- 48-port GE 100/1000Base-T line card with RJ45 interface (CB) + lc0410EX4PB(1026), -- 4-port 10GE LAN PHY line card with XFP optics (CB) + lc4801E48PB(1027), -- 48-port FE/GE line card with SFP optics (CB) + lc4610E46TB(1028), -- 36-port GE 10/100/1000Base-T with RJ45 - 8-port FE/GE with SFP - 2-port 10GE with SFP+ + lc4802E48VB(1280), -- 48-port GE 100/1000Base-T line card with RJ45 interface (CB) with POE + lc4610E46VB(1284), -- 36-port GE 10/100/1000Base-T with RJ45 and PoE - 8-port FE/GE with SFP - 2-port 10GE with SFP+ + lc0810EX8PB(2049), -- 8-port 10GE LAN PHY line card with XFP optics (CB) + rpmCard(200) -- Route Processor Card + } + + DellNetProcessorModuleType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The processor modules supported by the Dell Networking OS + card." + SYNTAX INTEGER { + controlProcessor(1), -- Control Processor + routingProcessor1(2), -- Rotuing Processor type 1 + routingProcessor2(3), -- Rotuing Processor type 2 + linecardProcessor(4), -- Line Card Processor + rpmProcessor(5), -- Single Control+Routing Processor + routingProcessor(6) -- Rotuing Processor + } + + + DellNetSlotState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A bit string that represents the status of the slot + in a E1200 chassis. + + Slot# 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 + 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 + | | + | | + | Least Significant bit <-----+ + | + +-----> Most Significant bit + + The slot numbers starts with the most significant bit. + The most significant bit represents slot number 1 and + the least significant bit is slot 16. + + A bit string that represents the status of the slot + in a E600 chassis. + + Slot# 1 2 3 4 5 6 7 8 9 + 1 1 1 0 1 1 1 0 1 + | | + | V + | Least Significant bit + | + +-----> Most Significant bit + + The slot numbers starts with the most significant bit. + The most significant bit represents slot number 1 and + the least significant bit is slot 9. + + Each slot occupies a bit. The value 1 indicates slot is + in used and 0 indicates slot is empty." + SYNTAX INTEGER (0..65535) + + DellNetSlotID ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Dell Networking OS Chassis Slot ID. + " + SYNTAX INTEGER + + DellNetSwDate ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The date format is MM/DD/YYYY. + + MM = Month + DD = Day + YYYY = Year + + For example, January 24, 2002 would be + displayed as: + 01/24/2002 + " + SYNTAX DisplayString + + DellNetMfgDate ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The manufacturing date format is PPWWYYYY + PP = Plant #(ie, what building made the board;01= Sanmina Bldg 4,02=Sanmina Bldg 2) + WW = Week number (01 = First full week of the year ie, Sunday through Saturday) + YYYY = Year + For example, 01482001 would have been produced at Samina Bldg 4 during the first + week of December, 2001. + " + SYNTAX DisplayString + + PortList ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Each octet within this value specifies a set of eight + ports, with the first octet specifying ports 1 through + 8, the second octet specifying ports 9 through 16, etc. + Within each octet, the most significant bit represents + the lowest numbered port, and the least significant bit + represents the highest numbered port. Thus, each port + of the bridge is represented by a single bit within the + value of this object. If that bit has a value of '1' + then that port is included in the set of ports; the port + is not included if its bit has a value of '0'." + SYNTAX OCTET STRING + + DellNetVlanID ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Dell Networking OS VLAN ID. + A value used to index per-VLAN tables: values of 0 and + 4095 are not permitted; if the value is between 1 and + 4094 inclusive, it represents an IEEE 802.1Q VLAN-ID with + global scope within a given bridged domain (see VlanId + textual convention). If the value is greater than 4095 + then it represents a VLAN with scope local to the + particular agent, i.e. one without a global VLAN-ID + assigned to it. Such VLANs are outside the scope of + IEEE 802.1Q but it is convenient to be able to manage them + in the same way using this MIB." + SYNTAX INTEGER + + DellNetChassisMode ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The chassis mode in Dell Networking series of products." + SYNTAX INTEGER { + nonJumbo(0), -- 1.0 + etherScale(1), -- Jumbo/1.5 + mixed(2), -- 1.5 Mix + teraScale(3), -- 2.0 + cseries1(4), -- C-Series 1.0 + sseries1(5), -- S-Series 1.0 + exaScale(6) -- 3.0 + } + + DellNetQueueID ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Dell Networking OS Queue ID. + " + SYNTAX INTEGER + + DellNetPortPipeID ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Dell Networking OS PortPipe ID. + " + SYNTAX INTEGER + + DellNetCycloneVersion ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "the Dell Networking OS Cyclone based hardware version" + SYNTAX INTEGER { + onePointFive(1), -- TjCj + twoPointZero(2), -- T2C2 + threePointZero(3) -- X3 + } + + DellNetCamPartitionType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The CAM partition supported in the Dell Networking OS line card. + + The sequecing used here is + + Layer 2 Ingress CAM range is 1 - 30 + Layer 2 Egress CAM range is 31 - 60 + Layer 3 Ingress CAM range is 61 - 90 + Layer 3 Egress CAM range is 91 - 120 + Layer 3 Host abd LPM CAM (BCM specific) range is 121 - 150 + " + SYNTAX INTEGER { + layer2AclIngress(1), -- L2 Ingress ACL + layer2AclPvstIngress(2), -- L2 Ingress ACL PVST + layer2FibIngress(3), -- L2 Ingress FIB + layer2FibEgress(31), -- L2 Egress FIB + layer3AclIngress(61), -- L3 Ingress ACL + layer3FibIngress(62), -- L3 Ingress FIB + layer3SysFlowIngress(63), -- L3 Ingress System Flow + layer3TrcListIngress(64), -- L3 Ingress System Flow + layer3McastFibIngress(65), -- L3 Ingress multicast fib + layer3QosIngress(66), -- L3 Ingress multicast fib + layer3PbrIngress(67), -- L3 Ingress multicast fib + layer3AclEgress(91), -- L3 Egress ACL + layer3ExtHost(121), -- L3 Host Table(BCM) + layer3ExtLPM(122) -- L3 Longest Prefix Match(BCM-LPM) + + } + + DellNetHundredthdB ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d-2" + STATUS current + DESCRIPTION + "This data type represents power levels + that are normally expressed in dB. Units + are in hundredths of a dB; + for example, -7.23 dB will be represented as -723." + SYNTAX Integer32 + + + DellNetDeviceType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The device category running the Dell Networking OS" + SYNTAX INTEGER { + chassis(1), -- Chassis + stack(2), -- Stackable unit + rpm(3), -- Route Processor Module + supervisor(4), -- supervisor Module + linecard(5), -- Line Card + port-extender(6) -- Port Extender + } + + + DellNetPEOperStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The operational status of the port extender" + SYNTAX INTEGER { + up(1), + down(2) + } + +END diff --git a/tests/data/dnos.json b/tests/data/dnos.json index 8c3f536b24..fa40f12929 100644 --- a/tests/data/dnos.json +++ b/tests/data/dnos.json @@ -1,4 +1,13072 @@ { + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.6027.1.3.20", + "sysDescr": "Dell Networking OS Operating System Version: 2.0 Application Software Version: 9.9(0.0P9) Series: S4048-ON Copyright (c) 1999-2015 by Dell Inc. All Rights Reserved. Build Time: Thu Feb 4 06:57:34 2016", + "sysContact": null, + "version": null, + "hardware": "", + "features": null, + "location": null, + "os": "dnos", + "type": "network", + "serial": null, + "icon": "dell.svg" + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.6027.1.3.20", + "sysDescr": "Dell Networking OS Operating System Version: 2.0 Application Software Version: 9.9(0.0P9) Series: S4048-ON Copyright (c) 1999-2015 by Dell Inc. All Rights Reserved. Build Time: Thu Feb 4 06:57:34 2016", + "sysContact": "", + "version": null, + "hardware": "", + "features": null, + "location": "", + "os": "dnos", + "type": "network", + "serial": null, + "icon": "dell.svg" + } + ] + } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/1", + "ifName": "TenGigabitEthernet 0/1", + "portName": null, + "ifIndex": "1048580", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/2", + "ifName": "TenGigabitEthernet 0/2", + "portName": null, + "ifIndex": "1048708", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/3", + "ifName": "TenGigabitEthernet 0/3", + "portName": null, + "ifIndex": "1048836", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/4", + "ifName": "TenGigabitEthernet 0/4", + "portName": null, + "ifIndex": "1048964", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/5", + "ifName": "TenGigabitEthernet 0/5", + "portName": null, + "ifIndex": "1049092", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/6", + "ifName": "TenGigabitEthernet 0/6", + "portName": null, + "ifIndex": "1049220", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/7", + "ifName": "TenGigabitEthernet 0/7", + "portName": null, + "ifIndex": "1049348", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/8", + "ifName": "TenGigabitEthernet 0/8", + "portName": null, + "ifIndex": "1049476", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/9", + "ifName": "TenGigabitEthernet 0/9", + "portName": null, + "ifIndex": "1049604", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/10", + "ifName": "TenGigabitEthernet 0/10", + "portName": null, + "ifIndex": "1049732", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/11", + "ifName": "TenGigabitEthernet 0/11", + "portName": null, + "ifIndex": "1049860", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/12", + "ifName": "TenGigabitEthernet 0/12", + "portName": null, + "ifIndex": "1049988", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/13", + "ifName": "TenGigabitEthernet 0/13", + "portName": null, + "ifIndex": "1050116", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/14", + "ifName": "TenGigabitEthernet 0/14", + "portName": null, + "ifIndex": "1050244", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/15", + "ifName": "TenGigabitEthernet 0/15", + "portName": null, + "ifIndex": "1050372", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/16", + "ifName": "TenGigabitEthernet 0/16", + "portName": null, + "ifIndex": "1050500", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/17", + "ifName": "TenGigabitEthernet 0/17", + "portName": null, + "ifIndex": "1050628", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/18", + "ifName": "TenGigabitEthernet 0/18", + "portName": null, + "ifIndex": "1050756", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/19", + "ifName": "TenGigabitEthernet 0/19", + "portName": null, + "ifIndex": "1050884", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/20", + "ifName": "TenGigabitEthernet 0/20", + "portName": null, + "ifIndex": "1051012", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/21", + "ifName": "TenGigabitEthernet 0/21", + "portName": null, + "ifIndex": "1051140", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/22", + "ifName": "TenGigabitEthernet 0/22", + "portName": null, + "ifIndex": "1051268", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/23", + "ifName": "TenGigabitEthernet 0/23", + "portName": null, + "ifIndex": "1051396", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/24", + "ifName": "TenGigabitEthernet 0/24", + "portName": null, + "ifIndex": "1051524", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/25", + "ifName": "TenGigabitEthernet 0/25", + "portName": null, + "ifIndex": "1051652", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/26", + "ifName": "TenGigabitEthernet 0/26", + "portName": null, + "ifIndex": "1051780", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/27", + "ifName": "TenGigabitEthernet 0/27", + "portName": null, + "ifIndex": "1051908", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/28", + "ifName": "TenGigabitEthernet 0/28", + "portName": null, + "ifIndex": "1052036", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/29", + "ifName": "TenGigabitEthernet 0/29", + "portName": null, + "ifIndex": "1052164", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/30", + "ifName": "TenGigabitEthernet 0/30", + "portName": null, + "ifIndex": "1052292", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/31", + "ifName": "TenGigabitEthernet 0/31", + "portName": null, + "ifIndex": "1052420", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/32", + "ifName": "TenGigabitEthernet 0/32", + "portName": null, + "ifIndex": "1052548", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "fortyGigE 0/33", + "ifName": "fortyGigE 0/33", + "portName": null, + "ifIndex": "1052677", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "fortyGigE 0/37", + "ifName": "fortyGigE 0/37", + "portName": null, + "ifIndex": "1053189", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "fortyGigE 0/41", + "ifName": "fortyGigE 0/41", + "portName": null, + "ifIndex": "1053701", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "fortyGigE 0/45", + "ifName": "fortyGigE 0/45", + "portName": null, + "ifIndex": "1054213", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/49", + "ifName": "TenGigabitEthernet 0/49", + "portName": null, + "ifIndex": "1054724", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/50", + "ifName": "TenGigabitEthernet 0/50", + "portName": null, + "ifIndex": "1054852", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/51", + "ifName": "TenGigabitEthernet 0/51", + "portName": null, + "ifIndex": "1054980", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/52", + "ifName": "TenGigabitEthernet 0/52", + "portName": null, + "ifIndex": "1055108", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ManagementEthernet 0/0", + "ifName": "ManagementEthernet 0/0", + "portName": null, + "ifIndex": "7340033", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "NULL 0", + "ifName": "NULL 0", + "portName": null, + "ifIndex": "1233125376", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 1", + "ifName": "Port-channel 1", + "portName": null, + "ifIndex": "1258291712", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 2", + "ifName": "Port-channel 2", + "portName": null, + "ifIndex": "1258292224", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 3", + "ifName": "Port-channel 3", + "portName": null, + "ifIndex": "1258292736", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 4", + "ifName": "Port-channel 4", + "portName": null, + "ifIndex": "1258293248", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 5", + "ifName": "Port-channel 5", + "portName": null, + "ifIndex": "1258293760", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 6", + "ifName": "Port-channel 6", + "portName": null, + "ifIndex": "1258294272", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 7", + "ifName": "Port-channel 7", + "portName": null, + "ifIndex": "1258294784", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 8", + "ifName": "Port-channel 8", + "portName": null, + "ifIndex": "1258295296", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 9", + "ifName": "Port-channel 9", + "portName": null, + "ifIndex": "1258295808", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 10", + "ifName": "Port-channel 10", + "portName": null, + "ifIndex": "1258296320", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 11", + "ifName": "Port-channel 11", + "portName": null, + "ifIndex": "1258296832", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 12", + "ifName": "Port-channel 12", + "portName": null, + "ifIndex": "1258297344", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 13", + "ifName": "Port-channel 13", + "portName": null, + "ifIndex": "1258297856", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 14", + "ifName": "Port-channel 14", + "portName": null, + "ifIndex": "1258298368", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 15", + "ifName": "Port-channel 15", + "portName": null, + "ifIndex": "1258298880", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 16", + "ifName": "Port-channel 16", + "portName": null, + "ifIndex": "1258299392", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 33", + "ifName": "Port-channel 33", + "portName": null, + "ifIndex": "1258308096", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel 37", + "ifName": "Port-channel 37", + "portName": null, + "ifIndex": "1258310144", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Vlan 1", + "ifName": "Vlan 1", + "portName": null, + "ifIndex": "1275068928", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Vlan 100", + "ifName": "Vlan 100", + "portName": null, + "ifIndex": "1275119616", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "..", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet 0/1", + "ifName": "TenGigabitEthernet 0/1", + "portName": null, + "ifIndex": "1048580", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14488", + "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": "576675801", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1159816852", + "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": "1225426338468", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "5205815317186", + "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": "73507", + "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": "5046", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44542552", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "104034", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109867832", + "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": "TenGigabitEthernet 0/2", + "ifName": "TenGigabitEthernet 0/2", + "portName": null, + "ifIndex": "1048708", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14492", + "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": "248150374", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2162499925", + "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": "716682107396", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "8012701954664", + "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": "26718", + "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": "1339", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44546259", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "26806", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109898621", + "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": "TenGigabitEthernet 0/3", + "ifName": "TenGigabitEthernet 0/3", + "portName": null, + "ifIndex": "1048836", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14492", + "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": "1692597632", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1921470192", + "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": "4842137414707", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "3771530461245", + "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": "125518", + "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": "794", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44546804", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "148490", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109874987", + "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": "TenGigabitEthernet 0/4", + "ifName": "TenGigabitEthernet 0/4", + "portName": null, + "ifIndex": "1048964", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14492", + "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": "2076112964", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "3073482639", + "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": "7517753139793", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "10748360635874", + "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": "115415", + "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": "13162", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44534436", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "130137", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109883658", + "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": "TenGigabitEthernet 0/5", + "ifName": "TenGigabitEthernet 0/5", + "portName": null, + "ifIndex": "1049092", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14494", + "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": "3459389181", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "3768699250", + "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": "7127173838517", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "9191465420324", + "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": "83957", + "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": "1907", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44545691", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "83676", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109898521", + "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": "TenGigabitEthernet 0/6", + "ifName": "TenGigabitEthernet 0/6", + "portName": null, + "ifIndex": "1049220", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14500", + "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": "1500041", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "9596048", + "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": "604566317", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "17832373915", + "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": "42775", + "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": "44547598", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "42772", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109898770", + "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": "TenGigabitEthernet 0/7", + "ifName": "TenGigabitEthernet 0/7", + "portName": null, + "ifIndex": "1049348", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14502", + "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": "7009354522", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "5235355813", + "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": "13274078359947", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "8370313577419", + "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": "109771", + "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": "2687", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44544912", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "111111", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109896458", + "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": "TenGigabitEthernet 0/8", + "ifName": "TenGigabitEthernet 0/8", + "portName": null, + "ifIndex": "1049476", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14502", + "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": "2771252182", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "3635971763", + "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": "4650288576079", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "10668669425423", + "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": "91769", + "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": "2386", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44545212", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "91510", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109898021", + "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": "TenGigabitEthernet 0/9", + "ifName": "TenGigabitEthernet 0/9", + "portName": null, + "ifIndex": "1049604", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14506", + "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": "5595892623", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "5413053677", + "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": "12850530597480", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "12140822538583", + "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": "37068", + "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": "82", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44547528", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "36987", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109898760", + "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": "TenGigabitEthernet 0/10", + "ifName": "TenGigabitEthernet 0/10", + "portName": null, + "ifIndex": "1049732", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14506", + "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": "1462368965", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2282263728", + "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": "4153823051365", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "7322756476825", + "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": "105110", + "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": "1535", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44546063", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "105568", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109897923", + "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": "TenGigabitEthernet 0/11", + "ifName": "TenGigabitEthernet 0/11", + "portName": null, + "ifIndex": "1049860", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14508", + "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": "1552781195", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2824738109", + "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": "3645934079721", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "10420120286694", + "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": "109700", + "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": "6874", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44540724", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "141784", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109866211", + "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": "TenGigabitEthernet 0/12", + "ifName": "TenGigabitEthernet 0/12", + "portName": null, + "ifIndex": "1049988", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14508", + "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": "5068273002", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "10171493969", + "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": "10566750564621", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "40737429841366", + "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": "136621", + "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": "13055", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44534543", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "172520", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109861283", + "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": "TenGigabitEthernet 0/13", + "ifName": "TenGigabitEthernet 0/13", + "portName": null, + "ifIndex": "1050116", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14508", + "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": "4597166410", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4864274854", + "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": "13479899984817", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "11462371683990", + "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": "77997", + "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": "4146", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44543452", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "85248", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109890774", + "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": "TenGigabitEthernet 0/14", + "ifName": "TenGigabitEthernet 0/14", + "portName": null, + "ifIndex": "1050244", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14508", + "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": "10370555621", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "9471617900", + "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": "58800299882012", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "23642716501990", + "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": "78534", + "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": "1726", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44545872", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "80264", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109896766", + "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": "TenGigabitEthernet 0/15", + "ifName": "TenGigabitEthernet 0/15", + "portName": null, + "ifIndex": "1050372", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14510", + "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": "4757552708", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "7366069513", + "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": "19781439756189", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "22458748198046", + "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": "83740", + "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": "2386", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44545215", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "84812", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109901292", + "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": "TenGigabitEthernet 0/16", + "ifName": "TenGigabitEthernet 0/16", + "portName": null, + "ifIndex": "1050500", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14510", + "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": "8152163060", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "8000484353", + "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": "27553860870328", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "15862920647267", + "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": "79007", + "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": "585683", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "43961920", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "79003", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109898023", + "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": "TenGigabitEthernet 0/17", + "ifName": "TenGigabitEthernet 0/17", + "portName": null, + "ifIndex": "1050628", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2478", + "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": "TenGigabitEthernet 0/18", + "ifName": "TenGigabitEthernet 0/18", + "portName": null, + "ifIndex": "1050756", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2478", + "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": "TenGigabitEthernet 0/19", + "ifName": "TenGigabitEthernet 0/19", + "portName": null, + "ifIndex": "1050884", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2478", + "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": "TenGigabitEthernet 0/20", + "ifName": "TenGigabitEthernet 0/20", + "portName": null, + "ifIndex": "1051012", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2478", + "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": "TenGigabitEthernet 0/21", + "ifName": "TenGigabitEthernet 0/21", + "portName": null, + "ifIndex": "1051140", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2478", + "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": "TenGigabitEthernet 0/22", + "ifName": "TenGigabitEthernet 0/22", + "portName": null, + "ifIndex": "1051268", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2478", + "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": "TenGigabitEthernet 0/23", + "ifName": "TenGigabitEthernet 0/23", + "portName": null, + "ifIndex": "1051396", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2478", + "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": "TenGigabitEthernet 0/24", + "ifName": "TenGigabitEthernet 0/24", + "portName": null, + "ifIndex": "1051524", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2478", + "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": "TenGigabitEthernet 0/25", + "ifName": "TenGigabitEthernet 0/25", + "portName": null, + "ifIndex": "1051652", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2478", + "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": "TenGigabitEthernet 0/26", + "ifName": "TenGigabitEthernet 0/26", + "portName": null, + "ifIndex": "1051780", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2478", + "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": "TenGigabitEthernet 0/27", + "ifName": "TenGigabitEthernet 0/27", + "portName": null, + "ifIndex": "1051908", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2478", + "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": "TenGigabitEthernet 0/28", + "ifName": "TenGigabitEthernet 0/28", + "portName": null, + "ifIndex": "1052036", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2480", + "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": "TenGigabitEthernet 0/29", + "ifName": "TenGigabitEthernet 0/29", + "portName": null, + "ifIndex": "1052164", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2480", + "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": "TenGigabitEthernet 0/30", + "ifName": "TenGigabitEthernet 0/30", + "portName": null, + "ifIndex": "1052292", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2480", + "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": "TenGigabitEthernet 0/31", + "ifName": "TenGigabitEthernet 0/31", + "portName": null, + "ifIndex": "1052420", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2480", + "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": "TenGigabitEthernet 0/32", + "ifName": "TenGigabitEthernet 0/32", + "portName": null, + "ifIndex": "1052548", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2480", + "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": "fortyGigE 0/33", + "ifName": "fortyGigE 0/33", + "portName": null, + "ifIndex": "1052677", + "ifSpeed": "40000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "40000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "4630", + "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": "8610834", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "7914124", + "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": "12992459032", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "20105987690", + "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": "92508185", + "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": "39165797", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44547598", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "53927873", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "127644530", + "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": "fortyGigE 0/37", + "ifName": "fortyGigE 0/37", + "portName": null, + "ifIndex": "1053189", + "ifSpeed": "40000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "40000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14510", + "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": "69828395926", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "57901583925", + "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": "198927601195440", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "189311564292936", + "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": "330128117", + "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": "309563304", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "642784", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "114816720", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "1636853", + "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": "fortyGigE 0/41", + "ifName": "fortyGigE 0/41", + "portName": null, + "ifIndex": "1053701", + "ifSpeed": "40000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "40000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1554", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2480", + "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": "fortyGigE 0/45", + "ifName": "fortyGigE 0/45", + "portName": null, + "ifIndex": "1054213", + "ifSpeed": "40000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "40000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1554", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2480", + "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": "TenGigabitEthernet 0/49", + "ifName": "TenGigabitEthernet 0/49", + "portName": null, + "ifIndex": "1054724", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "true", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2480", + "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": "TenGigabitEthernet 0/50", + "ifName": "TenGigabitEthernet 0/50", + "portName": null, + "ifIndex": "1054852", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2480", + "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": "TenGigabitEthernet 0/51", + "ifName": "TenGigabitEthernet 0/51", + "portName": null, + "ifIndex": "1054980", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "true", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2480", + "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": "TenGigabitEthernet 0/52", + "ifName": "TenGigabitEthernet 0/52", + "portName": null, + "ifIndex": "1055108", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2480", + "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": "ManagementEthernet 0/0", + "ifName": "ManagementEthernet 0/0", + "portName": null, + "ifIndex": "7340033", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1554", + "ifType": "ethernetCsmacd", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "2516", + "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": "2272700", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2308553", + "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": "242284140", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "375614394", + "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": "85988", + "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": "NULL 0", + "ifName": "NULL 0", + "portName": null, + "ifIndex": "1233125376", + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "0", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1554", + "ifType": "other", + "ifAlias": "..", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "1656", + "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": "Port-channel 1", + "ifName": "Port-channel 1", + "portName": null, + "ifIndex": "1258291712", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14488", + "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": "576675801", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1159816852", + "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": "1225426338468", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "5205815317186", + "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": "73507", + "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": "5046", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44542552", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "104034", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109867832", + "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": "Port-channel 2", + "ifName": "Port-channel 2", + "portName": null, + "ifIndex": "1258292224", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14492", + "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": "248150374", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2162499925", + "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": "716682107396", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "8012701954664", + "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": "26718", + "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": "1339", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44546259", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "26806", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109898621", + "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": "Port-channel 3", + "ifName": "Port-channel 3", + "portName": null, + "ifIndex": "1258292736", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14492", + "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": "1692597632", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1921470192", + "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": "4842137414707", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "3771530461245", + "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": "125518", + "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": "794", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44546804", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "148490", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109874987", + "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": "Port-channel 4", + "ifName": "Port-channel 4", + "portName": null, + "ifIndex": "1258293248", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14492", + "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": "2076112964", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "3073482639", + "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": "7517753139793", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "10748360635874", + "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": "115415", + "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": "13162", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44534436", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "130137", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109883658", + "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": "Port-channel 5", + "ifName": "Port-channel 5", + "portName": null, + "ifIndex": "1258293760", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14494", + "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": "3459389181", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "3768699250", + "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": "7127173838517", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "9191465420324", + "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": "83957", + "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": "1907", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44545691", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "83676", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109898521", + "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": "Port-channel 6", + "ifName": "Port-channel 6", + "portName": null, + "ifIndex": "1258294272", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14500", + "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": "1500041", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "9596048", + "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": "604566317", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "17832373915", + "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": "42775", + "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": "44547598", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "42772", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109898770", + "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": "Port-channel 7", + "ifName": "Port-channel 7", + "portName": null, + "ifIndex": "1258294784", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14502", + "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": "7009354522", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "5235355813", + "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": "13274078359947", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "8370313577419", + "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": "109771", + "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": "2687", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44544912", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "111111", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109896458", + "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": "Port-channel 8", + "ifName": "Port-channel 8", + "portName": null, + "ifIndex": "1258295296", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14506", + "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": "2771252182", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "3635971763", + "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": "4650288576079", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "10668669425423", + "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": "91769", + "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": "2386", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44545212", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "91510", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109898021", + "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": "Port-channel 9", + "ifName": "Port-channel 9", + "portName": null, + "ifIndex": "1258295808", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14506", + "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": "5595892623", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "5413053677", + "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": "12850530597480", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "12140822538583", + "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": "37068", + "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": "82", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44547528", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "36987", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109898760", + "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": "Port-channel 10", + "ifName": "Port-channel 10", + "portName": null, + "ifIndex": "1258296320", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14506", + "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": "1462368965", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2282263728", + "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": "4153823051365", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "7322756476825", + "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": "105110", + "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": "1535", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44546063", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "105568", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109897923", + "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": "Port-channel 11", + "ifName": "Port-channel 11", + "portName": null, + "ifIndex": "1258296832", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14508", + "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": "1552781195", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2824738109", + "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": "3645934079721", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "10420120286694", + "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": "109700", + "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": "6874", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44540724", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "141784", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109866211", + "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": "Port-channel 12", + "ifName": "Port-channel 12", + "portName": null, + "ifIndex": "1258297344", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14508", + "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": "5068273002", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "10171493969", + "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": "10566750564621", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "40737429841366", + "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": "136621", + "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": "13055", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44534543", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "172520", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109861283", + "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": "Port-channel 13", + "ifName": "Port-channel 13", + "portName": null, + "ifIndex": "1258297856", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14508", + "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": "4597166410", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4864274854", + "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": "13479899984817", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "11462371683990", + "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": "77997", + "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": "4146", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44543452", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "85248", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109890774", + "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": "Port-channel 14", + "ifName": "Port-channel 14", + "portName": null, + "ifIndex": "1258298368", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14510", + "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": "10370555621", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "9471617900", + "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": "58800299882012", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "23642716501990", + "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": "78534", + "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": "1726", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44545872", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "80264", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109896766", + "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": "Port-channel 15", + "ifName": "Port-channel 15", + "portName": null, + "ifIndex": "1258298880", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14510", + "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": "4757552708", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "7366069513", + "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": "19781439756189", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "22458748198046", + "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": "83740", + "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": "2386", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44545215", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "84812", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109901292", + "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": "Port-channel 16", + "ifName": "Port-channel 16", + "portName": null, + "ifIndex": "1258299392", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14510", + "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": "8152163060", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "8000484353", + "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": "27553860870328", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "15862920647267", + "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": "79007", + "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": "585683", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "43961920", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "79003", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109898023", + "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": "Port-channel 33", + "ifName": "Port-channel 33", + "portName": null, + "ifIndex": "1258308096", + "ifSpeed": "40000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "40000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "4630", + "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": "8610834", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "7914124", + "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": "12992459032", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "20105987690", + "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": "92508185", + "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": "39165797", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "44547598", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "53927873", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "127644530", + "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": "Port-channel 37", + "ifName": "Port-channel 37", + "portName": null, + "ifIndex": "1258310144", + "ifSpeed": "40000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "40000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "12000", + "ifType": "ieee8023adLag", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "14794", + "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": "69828395926", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "57901583925", + "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": "198927601195440", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "189311564292936", + "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": "330128117", + "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": "309563304", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "642784", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "114816720", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "1636853", + "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": "Vlan 1", + "ifName": "Vlan 1", + "portName": null, + "ifIndex": "1275068928", + "ifSpeed": "40000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "40000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1554", + "ifType": "l2vlan", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "1656", + "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": "Vlan 100", + "ifName": "Vlan 100", + "portName": null, + "ifIndex": "1275119616", + "ifSpeed": "10000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "12000", + "ifType": "l2vlan", + "ifAlias": "..", + "ifPhysAddress": "f48e38141241", + "ifHardType": null, + "ifLastChange": "5460", + "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": [ @@ -16,5 +13084,134 @@ ] }, "poller": "matches discovery" + }, + "bgp-peers": { + "discovery": { + "devices": [ + { + "bgpLocalAs": null + } + ], + "bgpPeers": [], + "bgpPeers_cbgp": [] + }, + "poller": "matches discovery" + }, + "vlans": { + "discovery": { + "vlans": [ + { + "vlan_vlan": "1", + "vlan_domain": "1", + "vlan_name": "Vlan 1", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": "100", + "vlan_domain": "1", + "vlan_name": "Vlan 100", + "vlan_type": null, + "vlan_mtu": null + } + ], + "ports_vlans": [ + { + "vlan": "1", + "baseport": "49", + "priority": "0", + "state": "unknown", + "cost": "0", + "untagged": "1" + }, + { + "vlan": "1", + "baseport": "51", + "priority": "0", + "state": "unknown", + "cost": "0", + "untagged": "1" + }, + { + "vlan": "1", + "baseport": "339", + "priority": "0", + "state": "unknown", + "cost": "0", + "untagged": "1" + }, + { + "vlan": "1", + "baseport": "340", + "priority": "0", + "state": "unknown", + "cost": "0", + "untagged": "1" + }, + { + "vlan": "1", + "baseport": "347", + "priority": "0", + "state": "unknown", + "cost": "0", + "untagged": "1" + }, + { + "vlan": "100", + "baseport": "339", + "priority": "0", + "state": "unknown", + "cost": "0", + "untagged": "1" + }, + { + "vlan": "100", + "baseport": "340", + "priority": "0", + "state": "unknown", + "cost": "0", + "untagged": "1" + }, + { + "vlan": "100", + "baseport": "347", + "priority": "0", + "state": "unknown", + "cost": "0", + "untagged": "1" + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": "0", + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6027.3.26.1.3.4.1.13.1", + "sensor_index": "1", + "sensor_type": "dnos", + "sensor_descr": "Unit 1", + "sensor_divisor": "1", + "sensor_multiplier": "1", + "sensor_current": "62", + "sensor_limit": "82", + "sensor_limit_warn": null, + "sensor_limit_low": "52", + "sensor_limit_low_warn": null, + "sensor_alert": "1", + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [] + }, + "poller": "matches discovery" } } diff --git a/tests/snmpsim/dnos.snmprec b/tests/snmpsim/dnos.snmprec index 96b44d2631..48fb0f99cd 100644 --- a/tests/snmpsim/dnos.snmprec +++ b/tests/snmpsim/dnos.snmprec @@ -1,3 +1,3891 @@ 1.3.6.1.2.1.1.1.0|4|Dell Networking OS Operating System Version: 2.0 Application Software Version: 9.9(0.0P9) Series: S4048-ON Copyright (c) 1999-2015 by Dell Inc. All Rights Reserved. Build Time: Thu Feb 4 06:57:34 2016 1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.6027.1.3.20 +1.3.6.1.2.1.1.3.0|67|3740221650 +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.2.1048580|4|TenGigabitEthernet 0/1 +1.3.6.1.2.1.2.2.1.2.1048708|4|TenGigabitEthernet 0/2 +1.3.6.1.2.1.2.2.1.2.1048836|4|TenGigabitEthernet 0/3 +1.3.6.1.2.1.2.2.1.2.1048964|4|TenGigabitEthernet 0/4 +1.3.6.1.2.1.2.2.1.2.1049092|4|TenGigabitEthernet 0/5 +1.3.6.1.2.1.2.2.1.2.1049220|4|TenGigabitEthernet 0/6 +1.3.6.1.2.1.2.2.1.2.1049348|4|TenGigabitEthernet 0/7 +1.3.6.1.2.1.2.2.1.2.1049476|4|TenGigabitEthernet 0/8 +1.3.6.1.2.1.2.2.1.2.1049604|4|TenGigabitEthernet 0/9 +1.3.6.1.2.1.2.2.1.2.1049732|4|TenGigabitEthernet 0/10 +1.3.6.1.2.1.2.2.1.2.1049860|4|TenGigabitEthernet 0/11 +1.3.6.1.2.1.2.2.1.2.1049988|4|TenGigabitEthernet 0/12 +1.3.6.1.2.1.2.2.1.2.1050116|4|TenGigabitEthernet 0/13 +1.3.6.1.2.1.2.2.1.2.1050244|4|TenGigabitEthernet 0/14 +1.3.6.1.2.1.2.2.1.2.1050372|4|TenGigabitEthernet 0/15 +1.3.6.1.2.1.2.2.1.2.1050500|4|TenGigabitEthernet 0/16 +1.3.6.1.2.1.2.2.1.2.1050628|4|TenGigabitEthernet 0/17 +1.3.6.1.2.1.2.2.1.2.1050756|4|TenGigabitEthernet 0/18 +1.3.6.1.2.1.2.2.1.2.1050884|4|TenGigabitEthernet 0/19 +1.3.6.1.2.1.2.2.1.2.1051012|4|TenGigabitEthernet 0/20 +1.3.6.1.2.1.2.2.1.2.1051140|4|TenGigabitEthernet 0/21 +1.3.6.1.2.1.2.2.1.2.1051268|4|TenGigabitEthernet 0/22 +1.3.6.1.2.1.2.2.1.2.1051396|4|TenGigabitEthernet 0/23 +1.3.6.1.2.1.2.2.1.2.1051524|4|TenGigabitEthernet 0/24 +1.3.6.1.2.1.2.2.1.2.1051652|4|TenGigabitEthernet 0/25 +1.3.6.1.2.1.2.2.1.2.1051780|4|TenGigabitEthernet 0/26 +1.3.6.1.2.1.2.2.1.2.1051908|4|TenGigabitEthernet 0/27 +1.3.6.1.2.1.2.2.1.2.1052036|4|TenGigabitEthernet 0/28 +1.3.6.1.2.1.2.2.1.2.1052164|4|TenGigabitEthernet 0/29 +1.3.6.1.2.1.2.2.1.2.1052292|4|TenGigabitEthernet 0/30 +1.3.6.1.2.1.2.2.1.2.1052420|4|TenGigabitEthernet 0/31 +1.3.6.1.2.1.2.2.1.2.1052548|4|TenGigabitEthernet 0/32 +1.3.6.1.2.1.2.2.1.2.1052677|4|fortyGigE 0/33 +1.3.6.1.2.1.2.2.1.2.1053189|4|fortyGigE 0/37 +1.3.6.1.2.1.2.2.1.2.1053701|4|fortyGigE 0/41 +1.3.6.1.2.1.2.2.1.2.1054213|4|fortyGigE 0/45 +1.3.6.1.2.1.2.2.1.2.1054724|4|TenGigabitEthernet 0/49 +1.3.6.1.2.1.2.2.1.2.1054852|4|TenGigabitEthernet 0/50 +1.3.6.1.2.1.2.2.1.2.1054980|4|TenGigabitEthernet 0/51 +1.3.6.1.2.1.2.2.1.2.1055108|4|TenGigabitEthernet 0/52 +1.3.6.1.2.1.2.2.1.2.7340033|4|ManagementEthernet 0/0 +1.3.6.1.2.1.2.2.1.2.1233125376|4|NULL 0 +1.3.6.1.2.1.2.2.1.2.1258291712|4|Port-channel 1 +1.3.6.1.2.1.2.2.1.2.1258292224|4|Port-channel 2 +1.3.6.1.2.1.2.2.1.2.1258292736|4|Port-channel 3 +1.3.6.1.2.1.2.2.1.2.1258293248|4|Port-channel 4 +1.3.6.1.2.1.2.2.1.2.1258293760|4|Port-channel 5 +1.3.6.1.2.1.2.2.1.2.1258294272|4|Port-channel 6 +1.3.6.1.2.1.2.2.1.2.1258294784|4|Port-channel 7 +1.3.6.1.2.1.2.2.1.2.1258295296|4|Port-channel 8 +1.3.6.1.2.1.2.2.1.2.1258295808|4|Port-channel 9 +1.3.6.1.2.1.2.2.1.2.1258296320|4|Port-channel 10 +1.3.6.1.2.1.2.2.1.2.1258296832|4|Port-channel 11 +1.3.6.1.2.1.2.2.1.2.1258297344|4|Port-channel 12 +1.3.6.1.2.1.2.2.1.2.1258297856|4|Port-channel 13 +1.3.6.1.2.1.2.2.1.2.1258298368|4|Port-channel 14 +1.3.6.1.2.1.2.2.1.2.1258298880|4|Port-channel 15 +1.3.6.1.2.1.2.2.1.2.1258299392|4|Port-channel 16 +1.3.6.1.2.1.2.2.1.2.1258308096|4|Port-channel 33 +1.3.6.1.2.1.2.2.1.2.1258310144|4|Port-channel 37 +1.3.6.1.2.1.2.2.1.2.1275068928|4|Vlan 1 +1.3.6.1.2.1.2.2.1.2.1275119616|4|Vlan 100 +1.3.6.1.2.1.2.2.1.3.1048580|2|6 +1.3.6.1.2.1.2.2.1.3.1048708|2|6 +1.3.6.1.2.1.2.2.1.3.1048836|2|6 +1.3.6.1.2.1.2.2.1.3.1048964|2|6 +1.3.6.1.2.1.2.2.1.3.1049092|2|6 +1.3.6.1.2.1.2.2.1.3.1049220|2|6 +1.3.6.1.2.1.2.2.1.3.1049348|2|6 +1.3.6.1.2.1.2.2.1.3.1049476|2|6 +1.3.6.1.2.1.2.2.1.3.1049604|2|6 +1.3.6.1.2.1.2.2.1.3.1049732|2|6 +1.3.6.1.2.1.2.2.1.3.1049860|2|6 +1.3.6.1.2.1.2.2.1.3.1049988|2|6 +1.3.6.1.2.1.2.2.1.3.1050116|2|6 +1.3.6.1.2.1.2.2.1.3.1050244|2|6 +1.3.6.1.2.1.2.2.1.3.1050372|2|6 +1.3.6.1.2.1.2.2.1.3.1050500|2|6 +1.3.6.1.2.1.2.2.1.3.1050628|2|6 +1.3.6.1.2.1.2.2.1.3.1050756|2|6 +1.3.6.1.2.1.2.2.1.3.1050884|2|6 +1.3.6.1.2.1.2.2.1.3.1051012|2|6 +1.3.6.1.2.1.2.2.1.3.1051140|2|6 +1.3.6.1.2.1.2.2.1.3.1051268|2|6 +1.3.6.1.2.1.2.2.1.3.1051396|2|6 +1.3.6.1.2.1.2.2.1.3.1051524|2|6 +1.3.6.1.2.1.2.2.1.3.1051652|2|6 +1.3.6.1.2.1.2.2.1.3.1051780|2|6 +1.3.6.1.2.1.2.2.1.3.1051908|2|6 +1.3.6.1.2.1.2.2.1.3.1052036|2|6 +1.3.6.1.2.1.2.2.1.3.1052164|2|6 +1.3.6.1.2.1.2.2.1.3.1052292|2|6 +1.3.6.1.2.1.2.2.1.3.1052420|2|6 +1.3.6.1.2.1.2.2.1.3.1052548|2|6 +1.3.6.1.2.1.2.2.1.3.1052677|2|6 +1.3.6.1.2.1.2.2.1.3.1053189|2|6 +1.3.6.1.2.1.2.2.1.3.1053701|2|6 +1.3.6.1.2.1.2.2.1.3.1054213|2|6 +1.3.6.1.2.1.2.2.1.3.1054724|2|6 +1.3.6.1.2.1.2.2.1.3.1054852|2|6 +1.3.6.1.2.1.2.2.1.3.1054980|2|6 +1.3.6.1.2.1.2.2.1.3.1055108|2|6 +1.3.6.1.2.1.2.2.1.3.7340033|2|6 +1.3.6.1.2.1.2.2.1.3.1233125376|2|1 +1.3.6.1.2.1.2.2.1.3.1258291712|2|161 +1.3.6.1.2.1.2.2.1.3.1258292224|2|161 +1.3.6.1.2.1.2.2.1.3.1258292736|2|161 +1.3.6.1.2.1.2.2.1.3.1258293248|2|161 +1.3.6.1.2.1.2.2.1.3.1258293760|2|161 +1.3.6.1.2.1.2.2.1.3.1258294272|2|161 +1.3.6.1.2.1.2.2.1.3.1258294784|2|161 +1.3.6.1.2.1.2.2.1.3.1258295296|2|161 +1.3.6.1.2.1.2.2.1.3.1258295808|2|161 +1.3.6.1.2.1.2.2.1.3.1258296320|2|161 +1.3.6.1.2.1.2.2.1.3.1258296832|2|161 +1.3.6.1.2.1.2.2.1.3.1258297344|2|161 +1.3.6.1.2.1.2.2.1.3.1258297856|2|161 +1.3.6.1.2.1.2.2.1.3.1258298368|2|161 +1.3.6.1.2.1.2.2.1.3.1258298880|2|161 +1.3.6.1.2.1.2.2.1.3.1258299392|2|161 +1.3.6.1.2.1.2.2.1.3.1258308096|2|161 +1.3.6.1.2.1.2.2.1.3.1258310144|2|161 +1.3.6.1.2.1.2.2.1.3.1275068928|2|135 +1.3.6.1.2.1.2.2.1.3.1275119616|2|135 +1.3.6.1.2.1.2.2.1.3.1275593728|2|135 +1.3.6.1.2.1.2.2.1.3.1275595264|2|135 +1.3.6.1.2.1.2.2.1.3.1275595776|2|135 +1.3.6.1.2.1.2.2.1.3.1275596288|2|135 +1.3.6.1.2.1.2.2.1.3.1275596800|2|135 +1.3.6.1.2.1.2.2.1.3.1275597312|2|135 +1.3.6.1.2.1.2.2.1.4.1048580|2|12000 +1.3.6.1.2.1.2.2.1.4.1048708|2|12000 +1.3.6.1.2.1.2.2.1.4.1048836|2|12000 +1.3.6.1.2.1.2.2.1.4.1048964|2|12000 +1.3.6.1.2.1.2.2.1.4.1049092|2|12000 +1.3.6.1.2.1.2.2.1.4.1049220|2|12000 +1.3.6.1.2.1.2.2.1.4.1049348|2|12000 +1.3.6.1.2.1.2.2.1.4.1049476|2|12000 +1.3.6.1.2.1.2.2.1.4.1049604|2|12000 +1.3.6.1.2.1.2.2.1.4.1049732|2|12000 +1.3.6.1.2.1.2.2.1.4.1049860|2|12000 +1.3.6.1.2.1.2.2.1.4.1049988|2|12000 +1.3.6.1.2.1.2.2.1.4.1050116|2|12000 +1.3.6.1.2.1.2.2.1.4.1050244|2|12000 +1.3.6.1.2.1.2.2.1.4.1050372|2|12000 +1.3.6.1.2.1.2.2.1.4.1050500|2|12000 +1.3.6.1.2.1.2.2.1.4.1050628|2|12000 +1.3.6.1.2.1.2.2.1.4.1050756|2|12000 +1.3.6.1.2.1.2.2.1.4.1050884|2|12000 +1.3.6.1.2.1.2.2.1.4.1051012|2|12000 +1.3.6.1.2.1.2.2.1.4.1051140|2|12000 +1.3.6.1.2.1.2.2.1.4.1051268|2|12000 +1.3.6.1.2.1.2.2.1.4.1051396|2|12000 +1.3.6.1.2.1.2.2.1.4.1051524|2|12000 +1.3.6.1.2.1.2.2.1.4.1051652|2|12000 +1.3.6.1.2.1.2.2.1.4.1051780|2|12000 +1.3.6.1.2.1.2.2.1.4.1051908|2|12000 +1.3.6.1.2.1.2.2.1.4.1052036|2|12000 +1.3.6.1.2.1.2.2.1.4.1052164|2|12000 +1.3.6.1.2.1.2.2.1.4.1052292|2|12000 +1.3.6.1.2.1.2.2.1.4.1052420|2|12000 +1.3.6.1.2.1.2.2.1.4.1052548|2|12000 +1.3.6.1.2.1.2.2.1.4.1052677|2|12000 +1.3.6.1.2.1.2.2.1.4.1053189|2|12000 +1.3.6.1.2.1.2.2.1.4.1053701|2|1554 +1.3.6.1.2.1.2.2.1.4.1054213|2|1554 +1.3.6.1.2.1.2.2.1.4.1054724|2|12000 +1.3.6.1.2.1.2.2.1.4.1054852|2|12000 +1.3.6.1.2.1.2.2.1.4.1054980|2|12000 +1.3.6.1.2.1.2.2.1.4.1055108|2|12000 +1.3.6.1.2.1.2.2.1.4.7340033|2|1554 +1.3.6.1.2.1.2.2.1.4.1233125376|2|1554 +1.3.6.1.2.1.2.2.1.4.1258291712|2|12000 +1.3.6.1.2.1.2.2.1.4.1258292224|2|12000 +1.3.6.1.2.1.2.2.1.4.1258292736|2|12000 +1.3.6.1.2.1.2.2.1.4.1258293248|2|12000 +1.3.6.1.2.1.2.2.1.4.1258293760|2|12000 +1.3.6.1.2.1.2.2.1.4.1258294272|2|12000 +1.3.6.1.2.1.2.2.1.4.1258294784|2|12000 +1.3.6.1.2.1.2.2.1.4.1258295296|2|12000 +1.3.6.1.2.1.2.2.1.4.1258295808|2|12000 +1.3.6.1.2.1.2.2.1.4.1258296320|2|12000 +1.3.6.1.2.1.2.2.1.4.1258296832|2|12000 +1.3.6.1.2.1.2.2.1.4.1258297344|2|12000 +1.3.6.1.2.1.2.2.1.4.1258297856|2|12000 +1.3.6.1.2.1.2.2.1.4.1258298368|2|12000 +1.3.6.1.2.1.2.2.1.4.1258298880|2|12000 +1.3.6.1.2.1.2.2.1.4.1258299392|2|12000 +1.3.6.1.2.1.2.2.1.4.1258308096|2|12000 +1.3.6.1.2.1.2.2.1.4.1258310144|2|12000 +1.3.6.1.2.1.2.2.1.4.1275068928|2|1554 +1.3.6.1.2.1.2.2.1.4.1275119616|2|12000 +1.3.6.1.2.1.2.2.1.4.1275593728|2|12000 +1.3.6.1.2.1.2.2.1.4.1275595264|2|12000 +1.3.6.1.2.1.2.2.1.4.1275595776|2|12000 +1.3.6.1.2.1.2.2.1.4.1275596288|2|12000 +1.3.6.1.2.1.2.2.1.4.1275596800|2|12000 +1.3.6.1.2.1.2.2.1.4.1275597312|2|12000 +1.3.6.1.2.1.2.2.1.6.1048580|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1048708|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1048836|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1048964|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1049092|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1049220|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1049348|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1049476|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1049604|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1049732|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1049860|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1049988|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1050116|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1050244|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1050372|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1050500|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1050628|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1050756|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1050884|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1051012|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1051140|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1051268|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1051396|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1051524|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1051652|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1051780|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1051908|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1052036|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1052164|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1052292|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1052420|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1052548|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1052677|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1053189|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1053701|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1054213|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1054724|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1054852|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1054980|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1055108|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.7340033|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1233125376|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.1258291712|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258292224|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258292736|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258293248|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258293760|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258294272|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258294784|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258295296|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258295808|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258296320|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258296832|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258297344|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258297856|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258298368|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258298880|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258299392|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258308096|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1258310144|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1275068928|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1275119616|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1275593728|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1275595264|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1275595776|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1275596288|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1275596800|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.6.1275597312|4x|F48E38141241 +1.3.6.1.2.1.2.2.1.7.1048580|2|1 +1.3.6.1.2.1.2.2.1.7.1048708|2|1 +1.3.6.1.2.1.2.2.1.7.1048836|2|1 +1.3.6.1.2.1.2.2.1.7.1048964|2|1 +1.3.6.1.2.1.2.2.1.7.1049092|2|1 +1.3.6.1.2.1.2.2.1.7.1049220|2|1 +1.3.6.1.2.1.2.2.1.7.1049348|2|1 +1.3.6.1.2.1.2.2.1.7.1049476|2|1 +1.3.6.1.2.1.2.2.1.7.1049604|2|1 +1.3.6.1.2.1.2.2.1.7.1049732|2|1 +1.3.6.1.2.1.2.2.1.7.1049860|2|1 +1.3.6.1.2.1.2.2.1.7.1049988|2|1 +1.3.6.1.2.1.2.2.1.7.1050116|2|1 +1.3.6.1.2.1.2.2.1.7.1050244|2|1 +1.3.6.1.2.1.2.2.1.7.1050372|2|1 +1.3.6.1.2.1.2.2.1.7.1050500|2|1 +1.3.6.1.2.1.2.2.1.7.1050628|2|1 +1.3.6.1.2.1.2.2.1.7.1050756|2|1 +1.3.6.1.2.1.2.2.1.7.1050884|2|1 +1.3.6.1.2.1.2.2.1.7.1051012|2|1 +1.3.6.1.2.1.2.2.1.7.1051140|2|1 +1.3.6.1.2.1.2.2.1.7.1051268|2|1 +1.3.6.1.2.1.2.2.1.7.1051396|2|1 +1.3.6.1.2.1.2.2.1.7.1051524|2|1 +1.3.6.1.2.1.2.2.1.7.1051652|2|1 +1.3.6.1.2.1.2.2.1.7.1051780|2|1 +1.3.6.1.2.1.2.2.1.7.1051908|2|1 +1.3.6.1.2.1.2.2.1.7.1052036|2|1 +1.3.6.1.2.1.2.2.1.7.1052164|2|1 +1.3.6.1.2.1.2.2.1.7.1052292|2|1 +1.3.6.1.2.1.2.2.1.7.1052420|2|1 +1.3.6.1.2.1.2.2.1.7.1052548|2|1 +1.3.6.1.2.1.2.2.1.7.1052677|2|1 +1.3.6.1.2.1.2.2.1.7.1053189|2|1 +1.3.6.1.2.1.2.2.1.7.1053701|2|2 +1.3.6.1.2.1.2.2.1.7.1054213|2|2 +1.3.6.1.2.1.2.2.1.7.1054724|2|1 +1.3.6.1.2.1.2.2.1.7.1054852|2|1 +1.3.6.1.2.1.2.2.1.7.1054980|2|1 +1.3.6.1.2.1.2.2.1.7.1055108|2|1 +1.3.6.1.2.1.2.2.1.7.7340033|2|1 +1.3.6.1.2.1.2.2.1.7.1233125376|2|1 +1.3.6.1.2.1.2.2.1.7.1258291712|2|1 +1.3.6.1.2.1.2.2.1.7.1258292224|2|1 +1.3.6.1.2.1.2.2.1.7.1258292736|2|1 +1.3.6.1.2.1.2.2.1.7.1258293248|2|1 +1.3.6.1.2.1.2.2.1.7.1258293760|2|1 +1.3.6.1.2.1.2.2.1.7.1258294272|2|1 +1.3.6.1.2.1.2.2.1.7.1258294784|2|1 +1.3.6.1.2.1.2.2.1.7.1258295296|2|1 +1.3.6.1.2.1.2.2.1.7.1258295808|2|1 +1.3.6.1.2.1.2.2.1.7.1258296320|2|1 +1.3.6.1.2.1.2.2.1.7.1258296832|2|1 +1.3.6.1.2.1.2.2.1.7.1258297344|2|1 +1.3.6.1.2.1.2.2.1.7.1258297856|2|1 +1.3.6.1.2.1.2.2.1.7.1258298368|2|1 +1.3.6.1.2.1.2.2.1.7.1258298880|2|1 +1.3.6.1.2.1.2.2.1.7.1258299392|2|1 +1.3.6.1.2.1.2.2.1.7.1258308096|2|1 +1.3.6.1.2.1.2.2.1.7.1258310144|2|1 +1.3.6.1.2.1.2.2.1.7.1275068928|2|2 +1.3.6.1.2.1.2.2.1.7.1275119616|2|1 +1.3.6.1.2.1.2.2.1.7.1275593728|2|1 +1.3.6.1.2.1.2.2.1.7.1275595264|2|1 +1.3.6.1.2.1.2.2.1.7.1275595776|2|1 +1.3.6.1.2.1.2.2.1.7.1275596288|2|1 +1.3.6.1.2.1.2.2.1.7.1275596800|2|1 +1.3.6.1.2.1.2.2.1.7.1275597312|2|1 +1.3.6.1.2.1.2.2.1.8.1048580|2|1 +1.3.6.1.2.1.2.2.1.8.1048708|2|1 +1.3.6.1.2.1.2.2.1.8.1048836|2|1 +1.3.6.1.2.1.2.2.1.8.1048964|2|1 +1.3.6.1.2.1.2.2.1.8.1049092|2|1 +1.3.6.1.2.1.2.2.1.8.1049220|2|1 +1.3.6.1.2.1.2.2.1.8.1049348|2|1 +1.3.6.1.2.1.2.2.1.8.1049476|2|1 +1.3.6.1.2.1.2.2.1.8.1049604|2|1 +1.3.6.1.2.1.2.2.1.8.1049732|2|1 +1.3.6.1.2.1.2.2.1.8.1049860|2|1 +1.3.6.1.2.1.2.2.1.8.1049988|2|1 +1.3.6.1.2.1.2.2.1.8.1050116|2|1 +1.3.6.1.2.1.2.2.1.8.1050244|2|1 +1.3.6.1.2.1.2.2.1.8.1050372|2|1 +1.3.6.1.2.1.2.2.1.8.1050500|2|1 +1.3.6.1.2.1.2.2.1.8.1050628|2|2 +1.3.6.1.2.1.2.2.1.8.1050756|2|2 +1.3.6.1.2.1.2.2.1.8.1050884|2|2 +1.3.6.1.2.1.2.2.1.8.1051012|2|2 +1.3.6.1.2.1.2.2.1.8.1051140|2|2 +1.3.6.1.2.1.2.2.1.8.1051268|2|2 +1.3.6.1.2.1.2.2.1.8.1051396|2|2 +1.3.6.1.2.1.2.2.1.8.1051524|2|2 +1.3.6.1.2.1.2.2.1.8.1051652|2|2 +1.3.6.1.2.1.2.2.1.8.1051780|2|2 +1.3.6.1.2.1.2.2.1.8.1051908|2|2 +1.3.6.1.2.1.2.2.1.8.1052036|2|2 +1.3.6.1.2.1.2.2.1.8.1052164|2|2 +1.3.6.1.2.1.2.2.1.8.1052292|2|2 +1.3.6.1.2.1.2.2.1.8.1052420|2|2 +1.3.6.1.2.1.2.2.1.8.1052548|2|2 +1.3.6.1.2.1.2.2.1.8.1052677|2|1 +1.3.6.1.2.1.2.2.1.8.1053189|2|1 +1.3.6.1.2.1.2.2.1.8.1053701|2|2 +1.3.6.1.2.1.2.2.1.8.1054213|2|2 +1.3.6.1.2.1.2.2.1.8.1054724|2|2 +1.3.6.1.2.1.2.2.1.8.1054852|2|2 +1.3.6.1.2.1.2.2.1.8.1054980|2|2 +1.3.6.1.2.1.2.2.1.8.1055108|2|2 +1.3.6.1.2.1.2.2.1.8.7340033|2|1 +1.3.6.1.2.1.2.2.1.8.1233125376|2|1 +1.3.6.1.2.1.2.2.1.8.1258291712|2|1 +1.3.6.1.2.1.2.2.1.8.1258292224|2|1 +1.3.6.1.2.1.2.2.1.8.1258292736|2|1 +1.3.6.1.2.1.2.2.1.8.1258293248|2|1 +1.3.6.1.2.1.2.2.1.8.1258293760|2|1 +1.3.6.1.2.1.2.2.1.8.1258294272|2|1 +1.3.6.1.2.1.2.2.1.8.1258294784|2|1 +1.3.6.1.2.1.2.2.1.8.1258295296|2|1 +1.3.6.1.2.1.2.2.1.8.1258295808|2|1 +1.3.6.1.2.1.2.2.1.8.1258296320|2|1 +1.3.6.1.2.1.2.2.1.8.1258296832|2|1 +1.3.6.1.2.1.2.2.1.8.1258297344|2|1 +1.3.6.1.2.1.2.2.1.8.1258297856|2|1 +1.3.6.1.2.1.2.2.1.8.1258298368|2|1 +1.3.6.1.2.1.2.2.1.8.1258298880|2|1 +1.3.6.1.2.1.2.2.1.8.1258299392|2|1 +1.3.6.1.2.1.2.2.1.8.1258308096|2|1 +1.3.6.1.2.1.2.2.1.8.1258310144|2|1 +1.3.6.1.2.1.2.2.1.8.1275068928|2|2 +1.3.6.1.2.1.2.2.1.8.1275119616|2|1 +1.3.6.1.2.1.2.2.1.8.1275593728|2|1 +1.3.6.1.2.1.2.2.1.8.1275595264|2|1 +1.3.6.1.2.1.2.2.1.8.1275595776|2|1 +1.3.6.1.2.1.2.2.1.8.1275596288|2|1 +1.3.6.1.2.1.2.2.1.8.1275596800|2|1 +1.3.6.1.2.1.2.2.1.8.1275597312|2|1 +1.3.6.1.2.1.2.2.1.9.1048580|67|14488 +1.3.6.1.2.1.2.2.1.9.1048708|67|14492 +1.3.6.1.2.1.2.2.1.9.1048836|67|14492 +1.3.6.1.2.1.2.2.1.9.1048964|67|14492 +1.3.6.1.2.1.2.2.1.9.1049092|67|14494 +1.3.6.1.2.1.2.2.1.9.1049220|67|14500 +1.3.6.1.2.1.2.2.1.9.1049348|67|14502 +1.3.6.1.2.1.2.2.1.9.1049476|67|14502 +1.3.6.1.2.1.2.2.1.9.1049604|67|14506 +1.3.6.1.2.1.2.2.1.9.1049732|67|14506 +1.3.6.1.2.1.2.2.1.9.1049860|67|14508 +1.3.6.1.2.1.2.2.1.9.1049988|67|14508 +1.3.6.1.2.1.2.2.1.9.1050116|67|14508 +1.3.6.1.2.1.2.2.1.9.1050244|67|14508 +1.3.6.1.2.1.2.2.1.9.1050372|67|14510 +1.3.6.1.2.1.2.2.1.9.1050500|67|14510 +1.3.6.1.2.1.2.2.1.9.1050628|67|2478 +1.3.6.1.2.1.2.2.1.9.1050756|67|2478 +1.3.6.1.2.1.2.2.1.9.1050884|67|2478 +1.3.6.1.2.1.2.2.1.9.1051012|67|2478 +1.3.6.1.2.1.2.2.1.9.1051140|67|2478 +1.3.6.1.2.1.2.2.1.9.1051268|67|2478 +1.3.6.1.2.1.2.2.1.9.1051396|67|2478 +1.3.6.1.2.1.2.2.1.9.1051524|67|2478 +1.3.6.1.2.1.2.2.1.9.1051652|67|2478 +1.3.6.1.2.1.2.2.1.9.1051780|67|2478 +1.3.6.1.2.1.2.2.1.9.1051908|67|2478 +1.3.6.1.2.1.2.2.1.9.1052036|67|2480 +1.3.6.1.2.1.2.2.1.9.1052164|67|2480 +1.3.6.1.2.1.2.2.1.9.1052292|67|2480 +1.3.6.1.2.1.2.2.1.9.1052420|67|2480 +1.3.6.1.2.1.2.2.1.9.1052548|67|2480 +1.3.6.1.2.1.2.2.1.9.1052677|67|4630 +1.3.6.1.2.1.2.2.1.9.1053189|67|14510 +1.3.6.1.2.1.2.2.1.9.1053701|67|2480 +1.3.6.1.2.1.2.2.1.9.1054213|67|2480 +1.3.6.1.2.1.2.2.1.9.1054724|67|2480 +1.3.6.1.2.1.2.2.1.9.1054852|67|2480 +1.3.6.1.2.1.2.2.1.9.1054980|67|2480 +1.3.6.1.2.1.2.2.1.9.1055108|67|2480 +1.3.6.1.2.1.2.2.1.9.7340033|67|2516 +1.3.6.1.2.1.2.2.1.9.1233125376|67|1656 +1.3.6.1.2.1.2.2.1.9.1258291712|67|14488 +1.3.6.1.2.1.2.2.1.9.1258292224|67|14492 +1.3.6.1.2.1.2.2.1.9.1258292736|67|14492 +1.3.6.1.2.1.2.2.1.9.1258293248|67|14492 +1.3.6.1.2.1.2.2.1.9.1258293760|67|14494 +1.3.6.1.2.1.2.2.1.9.1258294272|67|14500 +1.3.6.1.2.1.2.2.1.9.1258294784|67|14502 +1.3.6.1.2.1.2.2.1.9.1258295296|67|14506 +1.3.6.1.2.1.2.2.1.9.1258295808|67|14506 +1.3.6.1.2.1.2.2.1.9.1258296320|67|14506 +1.3.6.1.2.1.2.2.1.9.1258296832|67|14508 +1.3.6.1.2.1.2.2.1.9.1258297344|67|14508 +1.3.6.1.2.1.2.2.1.9.1258297856|67|14508 +1.3.6.1.2.1.2.2.1.9.1258298368|67|14510 +1.3.6.1.2.1.2.2.1.9.1258298880|67|14510 +1.3.6.1.2.1.2.2.1.9.1258299392|67|14510 +1.3.6.1.2.1.2.2.1.9.1258308096|67|4630 +1.3.6.1.2.1.2.2.1.9.1258310144|67|14794 +1.3.6.1.2.1.2.2.1.9.1275068928|67|1656 +1.3.6.1.2.1.2.2.1.9.1275119616|67|5460 +1.3.6.1.2.1.2.2.1.9.1275593728|67|5462 +1.3.6.1.2.1.2.2.1.9.1275595264|67|5468 +1.3.6.1.2.1.2.2.1.9.1275595776|67|5468 +1.3.6.1.2.1.2.2.1.9.1275596288|67|5472 +1.3.6.1.2.1.2.2.1.9.1275596800|67|5474 +1.3.6.1.2.1.2.2.1.9.1275597312|67|5474 +1.3.6.1.2.1.2.2.1.13.1048580|65|73507 +1.3.6.1.2.1.2.2.1.13.1048708|65|26718 +1.3.6.1.2.1.2.2.1.13.1048836|65|125518 +1.3.6.1.2.1.2.2.1.13.1048964|65|115415 +1.3.6.1.2.1.2.2.1.13.1049092|65|83957 +1.3.6.1.2.1.2.2.1.13.1049220|65|42775 +1.3.6.1.2.1.2.2.1.13.1049348|65|109771 +1.3.6.1.2.1.2.2.1.13.1049476|65|91769 +1.3.6.1.2.1.2.2.1.13.1049604|65|37068 +1.3.6.1.2.1.2.2.1.13.1049732|65|105110 +1.3.6.1.2.1.2.2.1.13.1049860|65|109700 +1.3.6.1.2.1.2.2.1.13.1049988|65|136621 +1.3.6.1.2.1.2.2.1.13.1050116|65|77997 +1.3.6.1.2.1.2.2.1.13.1050244|65|78534 +1.3.6.1.2.1.2.2.1.13.1050372|65|83740 +1.3.6.1.2.1.2.2.1.13.1050500|65|79007 +1.3.6.1.2.1.2.2.1.13.1050628|65|0 +1.3.6.1.2.1.2.2.1.13.1050756|65|0 +1.3.6.1.2.1.2.2.1.13.1050884|65|0 +1.3.6.1.2.1.2.2.1.13.1051012|65|0 +1.3.6.1.2.1.2.2.1.13.1051140|65|0 +1.3.6.1.2.1.2.2.1.13.1051268|65|0 +1.3.6.1.2.1.2.2.1.13.1051396|65|0 +1.3.6.1.2.1.2.2.1.13.1051524|65|0 +1.3.6.1.2.1.2.2.1.13.1051652|65|0 +1.3.6.1.2.1.2.2.1.13.1051780|65|0 +1.3.6.1.2.1.2.2.1.13.1051908|65|0 +1.3.6.1.2.1.2.2.1.13.1052036|65|0 +1.3.6.1.2.1.2.2.1.13.1052164|65|0 +1.3.6.1.2.1.2.2.1.13.1052292|65|0 +1.3.6.1.2.1.2.2.1.13.1052420|65|0 +1.3.6.1.2.1.2.2.1.13.1052548|65|0 +1.3.6.1.2.1.2.2.1.13.1052677|65|92508185 +1.3.6.1.2.1.2.2.1.13.1053189|65|330128117 +1.3.6.1.2.1.2.2.1.13.1053701|65|0 +1.3.6.1.2.1.2.2.1.13.1054213|65|0 +1.3.6.1.2.1.2.2.1.13.1054724|65|0 +1.3.6.1.2.1.2.2.1.13.1054852|65|0 +1.3.6.1.2.1.2.2.1.13.1054980|65|0 +1.3.6.1.2.1.2.2.1.13.1055108|65|0 +1.3.6.1.2.1.2.2.1.13.7340033|65|0 +1.3.6.1.2.1.2.2.1.13.1233125376|65|0 +1.3.6.1.2.1.2.2.1.13.1258291712|65|73507 +1.3.6.1.2.1.2.2.1.13.1258292224|65|26718 +1.3.6.1.2.1.2.2.1.13.1258292736|65|125518 +1.3.6.1.2.1.2.2.1.13.1258293248|65|115415 +1.3.6.1.2.1.2.2.1.13.1258293760|65|83957 +1.3.6.1.2.1.2.2.1.13.1258294272|65|42775 +1.3.6.1.2.1.2.2.1.13.1258294784|65|109771 +1.3.6.1.2.1.2.2.1.13.1258295296|65|91769 +1.3.6.1.2.1.2.2.1.13.1258295808|65|37068 +1.3.6.1.2.1.2.2.1.13.1258296320|65|105110 +1.3.6.1.2.1.2.2.1.13.1258296832|65|109700 +1.3.6.1.2.1.2.2.1.13.1258297344|65|136621 +1.3.6.1.2.1.2.2.1.13.1258297856|65|77997 +1.3.6.1.2.1.2.2.1.13.1258298368|65|78534 +1.3.6.1.2.1.2.2.1.13.1258298880|65|83740 +1.3.6.1.2.1.2.2.1.13.1258299392|65|79007 +1.3.6.1.2.1.2.2.1.13.1258308096|65|92508185 +1.3.6.1.2.1.2.2.1.13.1258310144|65|330128117 +1.3.6.1.2.1.2.2.1.13.1275068928|65|0 +1.3.6.1.2.1.2.2.1.13.1275119616|65|0 +1.3.6.1.2.1.2.2.1.13.1275593728|65|0 +1.3.6.1.2.1.2.2.1.13.1275595264|65|0 +1.3.6.1.2.1.2.2.1.13.1275595776|65|0 +1.3.6.1.2.1.2.2.1.13.1275596288|65|0 +1.3.6.1.2.1.2.2.1.13.1275596800|65|0 +1.3.6.1.2.1.2.2.1.13.1275597312|65|0 +1.3.6.1.2.1.2.2.1.14.1048580|65|0 +1.3.6.1.2.1.2.2.1.14.1048708|65|0 +1.3.6.1.2.1.2.2.1.14.1048836|65|0 +1.3.6.1.2.1.2.2.1.14.1048964|65|0 +1.3.6.1.2.1.2.2.1.14.1049092|65|0 +1.3.6.1.2.1.2.2.1.14.1049220|65|0 +1.3.6.1.2.1.2.2.1.14.1049348|65|0 +1.3.6.1.2.1.2.2.1.14.1049476|65|0 +1.3.6.1.2.1.2.2.1.14.1049604|65|0 +1.3.6.1.2.1.2.2.1.14.1049732|65|0 +1.3.6.1.2.1.2.2.1.14.1049860|65|0 +1.3.6.1.2.1.2.2.1.14.1049988|65|0 +1.3.6.1.2.1.2.2.1.14.1050116|65|0 +1.3.6.1.2.1.2.2.1.14.1050244|65|0 +1.3.6.1.2.1.2.2.1.14.1050372|65|0 +1.3.6.1.2.1.2.2.1.14.1050500|65|0 +1.3.6.1.2.1.2.2.1.14.1050628|65|0 +1.3.6.1.2.1.2.2.1.14.1050756|65|0 +1.3.6.1.2.1.2.2.1.14.1050884|65|0 +1.3.6.1.2.1.2.2.1.14.1051012|65|0 +1.3.6.1.2.1.2.2.1.14.1051140|65|0 +1.3.6.1.2.1.2.2.1.14.1051268|65|0 +1.3.6.1.2.1.2.2.1.14.1051396|65|0 +1.3.6.1.2.1.2.2.1.14.1051524|65|0 +1.3.6.1.2.1.2.2.1.14.1051652|65|0 +1.3.6.1.2.1.2.2.1.14.1051780|65|0 +1.3.6.1.2.1.2.2.1.14.1051908|65|0 +1.3.6.1.2.1.2.2.1.14.1052036|65|0 +1.3.6.1.2.1.2.2.1.14.1052164|65|0 +1.3.6.1.2.1.2.2.1.14.1052292|65|0 +1.3.6.1.2.1.2.2.1.14.1052420|65|0 +1.3.6.1.2.1.2.2.1.14.1052548|65|0 +1.3.6.1.2.1.2.2.1.14.1052677|65|0 +1.3.6.1.2.1.2.2.1.14.1053189|65|0 +1.3.6.1.2.1.2.2.1.14.1053701|65|0 +1.3.6.1.2.1.2.2.1.14.1054213|65|0 +1.3.6.1.2.1.2.2.1.14.1054724|65|0 +1.3.6.1.2.1.2.2.1.14.1054852|65|0 +1.3.6.1.2.1.2.2.1.14.1054980|65|0 +1.3.6.1.2.1.2.2.1.14.1055108|65|0 +1.3.6.1.2.1.2.2.1.14.7340033|65|0 +1.3.6.1.2.1.2.2.1.14.1233125376|65|0 +1.3.6.1.2.1.2.2.1.14.1258291712|65|0 +1.3.6.1.2.1.2.2.1.14.1258292224|65|0 +1.3.6.1.2.1.2.2.1.14.1258292736|65|0 +1.3.6.1.2.1.2.2.1.14.1258293248|65|0 +1.3.6.1.2.1.2.2.1.14.1258293760|65|0 +1.3.6.1.2.1.2.2.1.14.1258294272|65|0 +1.3.6.1.2.1.2.2.1.14.1258294784|65|0 +1.3.6.1.2.1.2.2.1.14.1258295296|65|0 +1.3.6.1.2.1.2.2.1.14.1258295808|65|0 +1.3.6.1.2.1.2.2.1.14.1258296320|65|0 +1.3.6.1.2.1.2.2.1.14.1258296832|65|0 +1.3.6.1.2.1.2.2.1.14.1258297344|65|0 +1.3.6.1.2.1.2.2.1.14.1258297856|65|0 +1.3.6.1.2.1.2.2.1.14.1258298368|65|0 +1.3.6.1.2.1.2.2.1.14.1258298880|65|0 +1.3.6.1.2.1.2.2.1.14.1258299392|65|0 +1.3.6.1.2.1.2.2.1.14.1258308096|65|0 +1.3.6.1.2.1.2.2.1.14.1258310144|65|0 +1.3.6.1.2.1.2.2.1.14.1275068928|65|0 +1.3.6.1.2.1.2.2.1.14.1275119616|65|0 +1.3.6.1.2.1.2.2.1.14.1275593728|65|0 +1.3.6.1.2.1.2.2.1.14.1275595264|65|0 +1.3.6.1.2.1.2.2.1.14.1275595776|65|0 +1.3.6.1.2.1.2.2.1.14.1275596288|65|0 +1.3.6.1.2.1.2.2.1.14.1275596800|65|0 +1.3.6.1.2.1.2.2.1.14.1275597312|65|0 +1.3.6.1.2.1.2.2.1.19.1048580|65|0 +1.3.6.1.2.1.2.2.1.19.1048708|65|0 +1.3.6.1.2.1.2.2.1.19.1048836|65|0 +1.3.6.1.2.1.2.2.1.19.1048964|65|0 +1.3.6.1.2.1.2.2.1.19.1049092|65|0 +1.3.6.1.2.1.2.2.1.19.1049220|65|0 +1.3.6.1.2.1.2.2.1.19.1049348|65|0 +1.3.6.1.2.1.2.2.1.19.1049476|65|0 +1.3.6.1.2.1.2.2.1.19.1049604|65|0 +1.3.6.1.2.1.2.2.1.19.1049732|65|0 +1.3.6.1.2.1.2.2.1.19.1049860|65|0 +1.3.6.1.2.1.2.2.1.19.1049988|65|0 +1.3.6.1.2.1.2.2.1.19.1050116|65|0 +1.3.6.1.2.1.2.2.1.19.1050244|65|0 +1.3.6.1.2.1.2.2.1.19.1050372|65|0 +1.3.6.1.2.1.2.2.1.19.1050500|65|0 +1.3.6.1.2.1.2.2.1.19.1050628|65|0 +1.3.6.1.2.1.2.2.1.19.1050756|65|0 +1.3.6.1.2.1.2.2.1.19.1050884|65|0 +1.3.6.1.2.1.2.2.1.19.1051012|65|0 +1.3.6.1.2.1.2.2.1.19.1051140|65|0 +1.3.6.1.2.1.2.2.1.19.1051268|65|0 +1.3.6.1.2.1.2.2.1.19.1051396|65|0 +1.3.6.1.2.1.2.2.1.19.1051524|65|0 +1.3.6.1.2.1.2.2.1.19.1051652|65|0 +1.3.6.1.2.1.2.2.1.19.1051780|65|0 +1.3.6.1.2.1.2.2.1.19.1051908|65|0 +1.3.6.1.2.1.2.2.1.19.1052036|65|0 +1.3.6.1.2.1.2.2.1.19.1052164|65|0 +1.3.6.1.2.1.2.2.1.19.1052292|65|0 +1.3.6.1.2.1.2.2.1.19.1052420|65|0 +1.3.6.1.2.1.2.2.1.19.1052548|65|0 +1.3.6.1.2.1.2.2.1.19.1052677|65|0 +1.3.6.1.2.1.2.2.1.19.1053189|65|0 +1.3.6.1.2.1.2.2.1.19.1053701|65|0 +1.3.6.1.2.1.2.2.1.19.1054213|65|0 +1.3.6.1.2.1.2.2.1.19.1054724|65|0 +1.3.6.1.2.1.2.2.1.19.1054852|65|0 +1.3.6.1.2.1.2.2.1.19.1054980|65|0 +1.3.6.1.2.1.2.2.1.19.1055108|65|0 +1.3.6.1.2.1.2.2.1.19.7340033|65|0 +1.3.6.1.2.1.2.2.1.19.1233125376|65|0 +1.3.6.1.2.1.2.2.1.19.1258291712|65|0 +1.3.6.1.2.1.2.2.1.19.1258292224|65|0 +1.3.6.1.2.1.2.2.1.19.1258292736|65|0 +1.3.6.1.2.1.2.2.1.19.1258293248|65|0 +1.3.6.1.2.1.2.2.1.19.1258293760|65|0 +1.3.6.1.2.1.2.2.1.19.1258294272|65|0 +1.3.6.1.2.1.2.2.1.19.1258294784|65|0 +1.3.6.1.2.1.2.2.1.19.1258295296|65|0 +1.3.6.1.2.1.2.2.1.19.1258295808|65|0 +1.3.6.1.2.1.2.2.1.19.1258296320|65|0 +1.3.6.1.2.1.2.2.1.19.1258296832|65|0 +1.3.6.1.2.1.2.2.1.19.1258297344|65|0 +1.3.6.1.2.1.2.2.1.19.1258297856|65|0 +1.3.6.1.2.1.2.2.1.19.1258298368|65|0 +1.3.6.1.2.1.2.2.1.19.1258298880|65|0 +1.3.6.1.2.1.2.2.1.19.1258299392|65|0 +1.3.6.1.2.1.2.2.1.19.1258308096|65|0 +1.3.6.1.2.1.2.2.1.19.1258310144|65|0 +1.3.6.1.2.1.2.2.1.19.1275068928|65|0 +1.3.6.1.2.1.2.2.1.19.1275119616|65|0 +1.3.6.1.2.1.2.2.1.19.1275593728|65|0 +1.3.6.1.2.1.2.2.1.19.1275595264|65|0 +1.3.6.1.2.1.2.2.1.19.1275595776|65|0 +1.3.6.1.2.1.2.2.1.19.1275596288|65|0 +1.3.6.1.2.1.2.2.1.19.1275596800|65|0 +1.3.6.1.2.1.2.2.1.19.1275597312|65|0 +1.3.6.1.2.1.2.2.1.20.1048580|65|0 +1.3.6.1.2.1.2.2.1.20.1048708|65|0 +1.3.6.1.2.1.2.2.1.20.1048836|65|0 +1.3.6.1.2.1.2.2.1.20.1048964|65|0 +1.3.6.1.2.1.2.2.1.20.1049092|65|0 +1.3.6.1.2.1.2.2.1.20.1049220|65|0 +1.3.6.1.2.1.2.2.1.20.1049348|65|0 +1.3.6.1.2.1.2.2.1.20.1049476|65|0 +1.3.6.1.2.1.2.2.1.20.1049604|65|0 +1.3.6.1.2.1.2.2.1.20.1049732|65|0 +1.3.6.1.2.1.2.2.1.20.1049860|65|0 +1.3.6.1.2.1.2.2.1.20.1049988|65|0 +1.3.6.1.2.1.2.2.1.20.1050116|65|0 +1.3.6.1.2.1.2.2.1.20.1050244|65|0 +1.3.6.1.2.1.2.2.1.20.1050372|65|0 +1.3.6.1.2.1.2.2.1.20.1050500|65|0 +1.3.6.1.2.1.2.2.1.20.1050628|65|0 +1.3.6.1.2.1.2.2.1.20.1050756|65|0 +1.3.6.1.2.1.2.2.1.20.1050884|65|0 +1.3.6.1.2.1.2.2.1.20.1051012|65|0 +1.3.6.1.2.1.2.2.1.20.1051140|65|0 +1.3.6.1.2.1.2.2.1.20.1051268|65|0 +1.3.6.1.2.1.2.2.1.20.1051396|65|0 +1.3.6.1.2.1.2.2.1.20.1051524|65|0 +1.3.6.1.2.1.2.2.1.20.1051652|65|0 +1.3.6.1.2.1.2.2.1.20.1051780|65|0 +1.3.6.1.2.1.2.2.1.20.1051908|65|0 +1.3.6.1.2.1.2.2.1.20.1052036|65|0 +1.3.6.1.2.1.2.2.1.20.1052164|65|0 +1.3.6.1.2.1.2.2.1.20.1052292|65|0 +1.3.6.1.2.1.2.2.1.20.1052420|65|0 +1.3.6.1.2.1.2.2.1.20.1052548|65|0 +1.3.6.1.2.1.2.2.1.20.1052677|65|0 +1.3.6.1.2.1.2.2.1.20.1053189|65|0 +1.3.6.1.2.1.2.2.1.20.1053701|65|0 +1.3.6.1.2.1.2.2.1.20.1054213|65|0 +1.3.6.1.2.1.2.2.1.20.1054724|65|0 +1.3.6.1.2.1.2.2.1.20.1054852|65|0 +1.3.6.1.2.1.2.2.1.20.1054980|65|0 +1.3.6.1.2.1.2.2.1.20.1055108|65|0 +1.3.6.1.2.1.2.2.1.20.7340033|65|0 +1.3.6.1.2.1.2.2.1.20.1233125376|65|0 +1.3.6.1.2.1.2.2.1.20.1258291712|65|0 +1.3.6.1.2.1.2.2.1.20.1258292224|65|0 +1.3.6.1.2.1.2.2.1.20.1258292736|65|0 +1.3.6.1.2.1.2.2.1.20.1258293248|65|0 +1.3.6.1.2.1.2.2.1.20.1258293760|65|0 +1.3.6.1.2.1.2.2.1.20.1258294272|65|0 +1.3.6.1.2.1.2.2.1.20.1258294784|65|0 +1.3.6.1.2.1.2.2.1.20.1258295296|65|0 +1.3.6.1.2.1.2.2.1.20.1258295808|65|0 +1.3.6.1.2.1.2.2.1.20.1258296320|65|0 +1.3.6.1.2.1.2.2.1.20.1258296832|65|0 +1.3.6.1.2.1.2.2.1.20.1258297344|65|0 +1.3.6.1.2.1.2.2.1.20.1258297856|65|0 +1.3.6.1.2.1.2.2.1.20.1258298368|65|0 +1.3.6.1.2.1.2.2.1.20.1258298880|65|0 +1.3.6.1.2.1.2.2.1.20.1258299392|65|0 +1.3.6.1.2.1.2.2.1.20.1258308096|65|0 +1.3.6.1.2.1.2.2.1.20.1258310144|65|0 +1.3.6.1.2.1.2.2.1.20.1275068928|65|0 +1.3.6.1.2.1.2.2.1.20.1275119616|65|0 +1.3.6.1.2.1.2.2.1.20.1275593728|65|0 +1.3.6.1.2.1.2.2.1.20.1275595264|65|0 +1.3.6.1.2.1.2.2.1.20.1275595776|65|0 +1.3.6.1.2.1.2.2.1.20.1275596288|65|0 +1.3.6.1.2.1.2.2.1.20.1275596800|65|0 +1.3.6.1.2.1.2.2.1.20.1275597312|65|0 +1.3.6.1.2.1.4.3.0|65|139295833 +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|74858859 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|7702233 +1.3.6.1.2.1.4.10.0|65|58938755 +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.172.31.12.7|2|7340033 +1.3.6.1.2.1.4.20.1.3.172.31.12.7|64|255.255.255.0 +1.3.6.1.2.1.4.22.1.2.7340033.172.31.12.1|4x|E48D8C333512 +1.3.6.1.2.1.4.22.1.2.7340033.172.31.12.8|4x|64006AEAC91D +1.3.6.1.2.1.4.22.1.2.8388737.169.254.31.40|4x|1866DA526470 +1.3.6.1.2.1.4.24.3.0|66|0 +1.3.6.1.2.1.4.31.1.1.3.1|65|0 +1.3.6.1.2.1.4.31.1.1.3.2|65|0 +1.3.6.1.2.1.4.31.1.1.4.1|70|0 +1.3.6.1.2.1.4.31.1.1.4.2|70|0 +1.3.6.1.2.1.4.31.1.1.5.1|65|0 +1.3.6.1.2.1.4.31.1.1.5.2|65|0 +1.3.6.1.2.1.4.31.1.1.6.1|70|0 +1.3.6.1.2.1.4.31.1.1.6.2|70|0 +1.3.6.1.2.1.4.31.1.1.7.1|65|0 +1.3.6.1.2.1.4.31.1.1.7.2|65|0 +1.3.6.1.2.1.4.31.1.1.8.1|65|0 +1.3.6.1.2.1.4.31.1.1.8.2|65|0 +1.3.6.1.2.1.4.31.1.1.9.1|65|0 +1.3.6.1.2.1.4.31.1.1.9.2|65|0 +1.3.6.1.2.1.4.31.1.1.10.1|65|0 +1.3.6.1.2.1.4.31.1.1.10.2|65|0 +1.3.6.1.2.1.4.31.1.1.11.1|65|0 +1.3.6.1.2.1.4.31.1.1.11.2|65|0 +1.3.6.1.2.1.4.31.1.1.12.1|65|0 +1.3.6.1.2.1.4.31.1.1.12.2|65|0 +1.3.6.1.2.1.4.31.1.1.13.1|70|0 +1.3.6.1.2.1.4.31.1.1.13.2|70|0 +1.3.6.1.2.1.4.31.1.1.14.1|65|0 +1.3.6.1.2.1.4.31.1.1.14.2|65|0 +1.3.6.1.2.1.4.31.1.1.15.1|65|0 +1.3.6.1.2.1.4.31.1.1.15.2|65|0 +1.3.6.1.2.1.4.31.1.1.16.1|65|0 +1.3.6.1.2.1.4.31.1.1.16.2|65|0 +1.3.6.1.2.1.4.31.1.1.17.1|65|0 +1.3.6.1.2.1.4.31.1.1.17.2|65|0 +1.3.6.1.2.1.4.31.1.1.18.1|65|0 +1.3.6.1.2.1.4.31.1.1.18.2|65|0 +1.3.6.1.2.1.4.31.1.1.19.1|70|0 +1.3.6.1.2.1.4.31.1.1.19.2|70|0 +1.3.6.1.2.1.4.31.1.1.20.1|65|0 +1.3.6.1.2.1.4.31.1.1.20.2|65|0 +1.3.6.1.2.1.4.31.1.1.21.1|70|0 +1.3.6.1.2.1.4.31.1.1.21.2|70|0 +1.3.6.1.2.1.4.31.1.1.22.1|65|0 +1.3.6.1.2.1.4.31.1.1.22.2|65|0 +1.3.6.1.2.1.4.31.1.1.23.1|65|0 +1.3.6.1.2.1.4.31.1.1.23.2|65|0 +1.3.6.1.2.1.4.31.1.1.24.1|70|0 +1.3.6.1.2.1.4.31.1.1.24.2|70|0 +1.3.6.1.2.1.4.31.1.1.25.1|65|0 +1.3.6.1.2.1.4.31.1.1.25.2|65|0 +1.3.6.1.2.1.4.31.1.1.26.1|65|0 +1.3.6.1.2.1.4.31.1.1.26.2|65|0 +1.3.6.1.2.1.4.31.1.1.27.1|65|0 +1.3.6.1.2.1.4.31.1.1.27.2|65|0 +1.3.6.1.2.1.4.31.1.1.28.1|65|0 +1.3.6.1.2.1.4.31.1.1.28.2|65|0 +1.3.6.1.2.1.4.31.1.1.29.1|65|0 +1.3.6.1.2.1.4.31.1.1.29.2|65|0 +1.3.6.1.2.1.4.31.1.1.30.1|65|0 +1.3.6.1.2.1.4.31.1.1.30.2|65|0 +1.3.6.1.2.1.4.31.1.1.31.1|70|0 +1.3.6.1.2.1.4.31.1.1.31.2|70|0 +1.3.6.1.2.1.4.31.1.1.32.1|65|0 +1.3.6.1.2.1.4.31.1.1.32.2|65|0 +1.3.6.1.2.1.4.31.1.1.33.1|70|0 +1.3.6.1.2.1.4.31.1.1.33.2|70|0 +1.3.6.1.2.1.4.31.1.1.34.1|65|0 +1.3.6.1.2.1.4.31.1.1.34.2|65|0 +1.3.6.1.2.1.4.31.1.1.35.1|70|0 +1.3.6.1.2.1.4.31.1.1.35.2|70|0 +1.3.6.1.2.1.4.31.1.1.36.1|65|0 +1.3.6.1.2.1.4.31.1.1.36.2|65|0 +1.3.6.1.2.1.4.31.1.1.37.1|70|0 +1.3.6.1.2.1.4.31.1.1.37.2|70|0 +1.3.6.1.2.1.4.31.1.1.38.1|65|0 +1.3.6.1.2.1.4.31.1.1.38.2|65|0 +1.3.6.1.2.1.4.31.1.1.39.1|70|0 +1.3.6.1.2.1.4.31.1.1.39.2|70|0 +1.3.6.1.2.1.4.31.1.1.40.1|65|0 +1.3.6.1.2.1.4.31.1.1.40.2|65|0 +1.3.6.1.2.1.4.31.1.1.41.1|70|0 +1.3.6.1.2.1.4.31.1.1.41.2|70|0 +1.3.6.1.2.1.4.31.1.1.42.1|65|0 +1.3.6.1.2.1.4.31.1.1.42.2|65|0 +1.3.6.1.2.1.4.31.1.1.43.1|70|0 +1.3.6.1.2.1.4.31.1.1.43.2|70|0 +1.3.6.1.2.1.4.31.1.1.44.1|65|0 +1.3.6.1.2.1.4.31.1.1.44.2|65|0 +1.3.6.1.2.1.4.31.1.1.45.1|70|0 +1.3.6.1.2.1.4.31.1.1.45.2|70|0 +1.3.6.1.2.1.4.31.1.1.46.1|67|0 +1.3.6.1.2.1.4.31.1.1.46.2|67|0 +1.3.6.1.2.1.4.31.1.1.47.1|66|15 +1.3.6.1.2.1.4.31.1.1.47.2|66|15 +1.3.6.1.2.1.4.35.1.4.7340033.1.4.172.31.12.7|4x|F48E38141241 +1.3.6.1.2.1.5.1.0|65|275464 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|1 +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|275463 +1.3.6.1.2.1.5.9.0|65|0 +1.3.6.1.2.1.5.10.0|65|0 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|275463 +1.3.6.1.2.1.5.15.0|65|74858721 +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|0 +1.3.6.1.2.1.5.22.0|65|275463 +1.3.6.1.2.1.5.23.0|65|0 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.5.29.1.2.1|65|275464 +1.3.6.1.2.1.5.29.1.2.2|65|0 +1.3.6.1.2.1.5.29.1.3.1|65|0 +1.3.6.1.2.1.5.29.1.3.2|65|0 +1.3.6.1.2.1.5.29.1.4.1|65|275463 +1.3.6.1.2.1.5.29.1.4.2|65|0 +1.3.6.1.2.1.5.29.1.5.1|65|74858724 +1.3.6.1.2.1.5.29.1.5.2|65|0 +1.3.6.1.2.1.5.30.1.3.1.0|65|0 +1.3.6.1.2.1.5.30.1.3.1.1|65|0 +1.3.6.1.2.1.5.30.1.3.1.2|65|0 +1.3.6.1.2.1.5.30.1.3.1.3|65|1 +1.3.6.1.2.1.5.30.1.3.1.4|65|0 +1.3.6.1.2.1.5.30.1.3.1.5|65|0 +1.3.6.1.2.1.5.30.1.3.1.6|65|0 +1.3.6.1.2.1.5.30.1.3.1.7|65|0 +1.3.6.1.2.1.5.30.1.3.1.8|65|275463 +1.3.6.1.2.1.5.30.1.3.1.9|65|0 +1.3.6.1.2.1.5.30.1.3.1.10|65|0 +1.3.6.1.2.1.5.30.1.3.1.11|65|0 +1.3.6.1.2.1.5.30.1.3.1.12|65|0 +1.3.6.1.2.1.5.30.1.3.1.13|65|0 +1.3.6.1.2.1.5.30.1.3.1.14|65|0 +1.3.6.1.2.1.5.30.1.3.1.15|65|0 +1.3.6.1.2.1.5.30.1.3.1.16|65|0 +1.3.6.1.2.1.5.30.1.3.1.17|65|0 +1.3.6.1.2.1.5.30.1.3.2.1|65|0 +1.3.6.1.2.1.5.30.1.3.2.2|65|0 +1.3.6.1.2.1.5.30.1.3.2.3|65|0 +1.3.6.1.2.1.5.30.1.3.2.4|65|0 +1.3.6.1.2.1.5.30.1.3.2.5|65|0 +1.3.6.1.2.1.5.30.1.3.2.6|65|0 +1.3.6.1.2.1.5.30.1.3.2.7|65|0 +1.3.6.1.2.1.5.30.1.3.2.8|65|0 +1.3.6.1.2.1.5.30.1.3.2.9|65|0 +1.3.6.1.2.1.5.30.1.3.2.10|65|0 +1.3.6.1.2.1.5.30.1.3.2.11|65|0 +1.3.6.1.2.1.5.30.1.3.2.12|65|0 +1.3.6.1.2.1.5.30.1.3.2.13|65|0 +1.3.6.1.2.1.5.30.1.3.2.14|65|0 +1.3.6.1.2.1.5.30.1.3.2.15|65|0 +1.3.6.1.2.1.5.30.1.3.2.16|65|0 +1.3.6.1.2.1.5.30.1.3.2.17|65|0 +1.3.6.1.2.1.5.30.1.3.2.18|65|0 +1.3.6.1.2.1.5.30.1.3.2.19|65|0 +1.3.6.1.2.1.5.30.1.3.2.20|65|0 +1.3.6.1.2.1.5.30.1.3.2.21|65|0 +1.3.6.1.2.1.5.30.1.3.2.22|65|0 +1.3.6.1.2.1.5.30.1.3.2.23|65|0 +1.3.6.1.2.1.5.30.1.3.2.24|65|0 +1.3.6.1.2.1.5.30.1.3.2.25|65|0 +1.3.6.1.2.1.5.30.1.3.2.26|65|0 +1.3.6.1.2.1.5.30.1.3.2.27|65|0 +1.3.6.1.2.1.5.30.1.3.2.28|65|0 +1.3.6.1.2.1.5.30.1.3.2.29|65|0 +1.3.6.1.2.1.5.30.1.3.2.30|65|0 +1.3.6.1.2.1.5.30.1.3.2.31|65|0 +1.3.6.1.2.1.5.30.1.3.2.32|65|0 +1.3.6.1.2.1.5.30.1.3.2.33|65|0 +1.3.6.1.2.1.5.30.1.3.2.34|65|0 +1.3.6.1.2.1.5.30.1.3.2.35|65|0 +1.3.6.1.2.1.5.30.1.3.2.36|65|0 +1.3.6.1.2.1.5.30.1.3.2.37|65|0 +1.3.6.1.2.1.5.30.1.3.2.38|65|0 +1.3.6.1.2.1.5.30.1.3.2.39|65|0 +1.3.6.1.2.1.5.30.1.3.2.40|65|0 +1.3.6.1.2.1.5.30.1.3.2.41|65|0 +1.3.6.1.2.1.5.30.1.3.2.42|65|0 +1.3.6.1.2.1.5.30.1.3.2.43|65|0 +1.3.6.1.2.1.5.30.1.3.2.44|65|0 +1.3.6.1.2.1.5.30.1.3.2.45|65|0 +1.3.6.1.2.1.5.30.1.3.2.46|65|0 +1.3.6.1.2.1.5.30.1.3.2.47|65|0 +1.3.6.1.2.1.5.30.1.3.2.48|65|0 +1.3.6.1.2.1.5.30.1.3.2.49|65|0 +1.3.6.1.2.1.5.30.1.3.2.50|65|0 +1.3.6.1.2.1.5.30.1.3.2.51|65|0 +1.3.6.1.2.1.5.30.1.3.2.52|65|0 +1.3.6.1.2.1.5.30.1.3.2.53|65|0 +1.3.6.1.2.1.5.30.1.3.2.54|65|0 +1.3.6.1.2.1.5.30.1.3.2.55|65|0 +1.3.6.1.2.1.5.30.1.3.2.56|65|0 +1.3.6.1.2.1.5.30.1.3.2.57|65|0 +1.3.6.1.2.1.5.30.1.3.2.58|65|0 +1.3.6.1.2.1.5.30.1.3.2.59|65|0 +1.3.6.1.2.1.5.30.1.3.2.60|65|0 +1.3.6.1.2.1.5.30.1.3.2.61|65|0 +1.3.6.1.2.1.5.30.1.3.2.62|65|0 +1.3.6.1.2.1.5.30.1.3.2.63|65|0 +1.3.6.1.2.1.5.30.1.3.2.64|65|0 +1.3.6.1.2.1.5.30.1.3.2.65|65|0 +1.3.6.1.2.1.5.30.1.3.2.66|65|0 +1.3.6.1.2.1.5.30.1.3.2.67|65|0 +1.3.6.1.2.1.5.30.1.3.2.68|65|0 +1.3.6.1.2.1.5.30.1.3.2.69|65|0 +1.3.6.1.2.1.5.30.1.3.2.70|65|0 +1.3.6.1.2.1.5.30.1.3.2.71|65|0 +1.3.6.1.2.1.5.30.1.3.2.72|65|0 +1.3.6.1.2.1.5.30.1.3.2.73|65|0 +1.3.6.1.2.1.5.30.1.3.2.74|65|0 +1.3.6.1.2.1.5.30.1.3.2.75|65|0 +1.3.6.1.2.1.5.30.1.3.2.76|65|0 +1.3.6.1.2.1.5.30.1.3.2.77|65|0 +1.3.6.1.2.1.5.30.1.3.2.78|65|0 +1.3.6.1.2.1.5.30.1.3.2.79|65|0 +1.3.6.1.2.1.5.30.1.3.2.80|65|0 +1.3.6.1.2.1.5.30.1.3.2.81|65|0 +1.3.6.1.2.1.5.30.1.3.2.82|65|0 +1.3.6.1.2.1.5.30.1.3.2.83|65|0 +1.3.6.1.2.1.5.30.1.3.2.84|65|0 +1.3.6.1.2.1.5.30.1.3.2.85|65|0 +1.3.6.1.2.1.5.30.1.3.2.86|65|0 +1.3.6.1.2.1.5.30.1.3.2.87|65|0 +1.3.6.1.2.1.5.30.1.3.2.88|65|0 +1.3.6.1.2.1.5.30.1.3.2.89|65|0 +1.3.6.1.2.1.5.30.1.3.2.90|65|0 +1.3.6.1.2.1.5.30.1.3.2.91|65|0 +1.3.6.1.2.1.5.30.1.3.2.92|65|0 +1.3.6.1.2.1.5.30.1.3.2.93|65|0 +1.3.6.1.2.1.5.30.1.3.2.94|65|0 +1.3.6.1.2.1.5.30.1.3.2.95|65|0 +1.3.6.1.2.1.5.30.1.3.2.96|65|0 +1.3.6.1.2.1.5.30.1.3.2.97|65|0 +1.3.6.1.2.1.5.30.1.3.2.98|65|0 +1.3.6.1.2.1.5.30.1.3.2.99|65|0 +1.3.6.1.2.1.5.30.1.3.2.100|65|0 +1.3.6.1.2.1.5.30.1.3.2.101|65|0 +1.3.6.1.2.1.5.30.1.3.2.102|65|0 +1.3.6.1.2.1.5.30.1.3.2.103|65|0 +1.3.6.1.2.1.5.30.1.3.2.104|65|0 +1.3.6.1.2.1.5.30.1.3.2.105|65|0 +1.3.6.1.2.1.5.30.1.3.2.106|65|0 +1.3.6.1.2.1.5.30.1.3.2.107|65|0 +1.3.6.1.2.1.5.30.1.3.2.108|65|0 +1.3.6.1.2.1.5.30.1.3.2.109|65|0 +1.3.6.1.2.1.5.30.1.3.2.110|65|0 +1.3.6.1.2.1.5.30.1.3.2.111|65|0 +1.3.6.1.2.1.5.30.1.3.2.112|65|0 +1.3.6.1.2.1.5.30.1.3.2.113|65|0 +1.3.6.1.2.1.5.30.1.3.2.114|65|0 +1.3.6.1.2.1.5.30.1.3.2.115|65|0 +1.3.6.1.2.1.5.30.1.3.2.116|65|0 +1.3.6.1.2.1.5.30.1.3.2.117|65|0 +1.3.6.1.2.1.5.30.1.3.2.118|65|0 +1.3.6.1.2.1.5.30.1.3.2.119|65|0 +1.3.6.1.2.1.5.30.1.3.2.120|65|0 +1.3.6.1.2.1.5.30.1.3.2.121|65|0 +1.3.6.1.2.1.5.30.1.3.2.122|65|0 +1.3.6.1.2.1.5.30.1.3.2.123|65|0 +1.3.6.1.2.1.5.30.1.3.2.124|65|0 +1.3.6.1.2.1.5.30.1.3.2.125|65|0 +1.3.6.1.2.1.5.30.1.3.2.126|65|0 +1.3.6.1.2.1.5.30.1.3.2.127|65|0 +1.3.6.1.2.1.5.30.1.3.2.128|65|0 +1.3.6.1.2.1.5.30.1.3.2.129|65|0 +1.3.6.1.2.1.5.30.1.3.2.130|65|0 +1.3.6.1.2.1.5.30.1.3.2.131|65|0 +1.3.6.1.2.1.5.30.1.3.2.132|65|0 +1.3.6.1.2.1.5.30.1.3.2.133|65|0 +1.3.6.1.2.1.5.30.1.3.2.134|65|0 +1.3.6.1.2.1.5.30.1.3.2.135|65|0 +1.3.6.1.2.1.5.30.1.3.2.136|65|0 +1.3.6.1.2.1.5.30.1.3.2.137|65|0 +1.3.6.1.2.1.5.30.1.3.2.138|65|0 +1.3.6.1.2.1.5.30.1.3.2.139|65|0 +1.3.6.1.2.1.5.30.1.3.2.140|65|0 +1.3.6.1.2.1.5.30.1.3.2.141|65|0 +1.3.6.1.2.1.5.30.1.3.2.142|65|0 +1.3.6.1.2.1.5.30.1.3.2.143|65|0 +1.3.6.1.2.1.5.30.1.3.2.144|65|0 +1.3.6.1.2.1.5.30.1.3.2.145|65|0 +1.3.6.1.2.1.5.30.1.3.2.146|65|0 +1.3.6.1.2.1.5.30.1.3.2.147|65|0 +1.3.6.1.2.1.5.30.1.3.2.148|65|0 +1.3.6.1.2.1.5.30.1.3.2.149|65|0 +1.3.6.1.2.1.5.30.1.3.2.150|65|0 +1.3.6.1.2.1.5.30.1.3.2.151|65|0 +1.3.6.1.2.1.5.30.1.3.2.152|65|0 +1.3.6.1.2.1.5.30.1.3.2.153|65|0 +1.3.6.1.2.1.5.30.1.3.2.154|65|0 +1.3.6.1.2.1.5.30.1.3.2.155|65|0 +1.3.6.1.2.1.5.30.1.3.2.156|65|0 +1.3.6.1.2.1.5.30.1.3.2.157|65|0 +1.3.6.1.2.1.5.30.1.3.2.158|65|0 +1.3.6.1.2.1.5.30.1.3.2.159|65|0 +1.3.6.1.2.1.5.30.1.3.2.160|65|0 +1.3.6.1.2.1.5.30.1.3.2.161|65|0 +1.3.6.1.2.1.5.30.1.3.2.162|65|0 +1.3.6.1.2.1.5.30.1.3.2.163|65|0 +1.3.6.1.2.1.5.30.1.3.2.164|65|0 +1.3.6.1.2.1.5.30.1.3.2.165|65|0 +1.3.6.1.2.1.5.30.1.3.2.166|65|0 +1.3.6.1.2.1.5.30.1.3.2.167|65|0 +1.3.6.1.2.1.5.30.1.3.2.168|65|0 +1.3.6.1.2.1.5.30.1.3.2.169|65|0 +1.3.6.1.2.1.5.30.1.3.2.170|65|0 +1.3.6.1.2.1.5.30.1.3.2.171|65|0 +1.3.6.1.2.1.5.30.1.3.2.172|65|0 +1.3.6.1.2.1.5.30.1.3.2.173|65|0 +1.3.6.1.2.1.5.30.1.3.2.174|65|0 +1.3.6.1.2.1.5.30.1.3.2.175|65|0 +1.3.6.1.2.1.5.30.1.3.2.176|65|0 +1.3.6.1.2.1.5.30.1.3.2.177|65|0 +1.3.6.1.2.1.5.30.1.3.2.178|65|0 +1.3.6.1.2.1.5.30.1.3.2.179|65|0 +1.3.6.1.2.1.5.30.1.3.2.180|65|0 +1.3.6.1.2.1.5.30.1.3.2.181|65|0 +1.3.6.1.2.1.5.30.1.3.2.182|65|0 +1.3.6.1.2.1.5.30.1.3.2.183|65|0 +1.3.6.1.2.1.5.30.1.3.2.184|65|0 +1.3.6.1.2.1.5.30.1.3.2.185|65|0 +1.3.6.1.2.1.5.30.1.3.2.186|65|0 +1.3.6.1.2.1.5.30.1.3.2.187|65|0 +1.3.6.1.2.1.5.30.1.3.2.188|65|0 +1.3.6.1.2.1.5.30.1.3.2.189|65|0 +1.3.6.1.2.1.5.30.1.3.2.190|65|0 +1.3.6.1.2.1.5.30.1.3.2.191|65|0 +1.3.6.1.2.1.5.30.1.3.2.192|65|0 +1.3.6.1.2.1.5.30.1.3.2.193|65|0 +1.3.6.1.2.1.5.30.1.3.2.194|65|0 +1.3.6.1.2.1.5.30.1.3.2.195|65|0 +1.3.6.1.2.1.5.30.1.3.2.196|65|0 +1.3.6.1.2.1.5.30.1.3.2.197|65|0 +1.3.6.1.2.1.5.30.1.3.2.198|65|0 +1.3.6.1.2.1.5.30.1.3.2.199|65|0 +1.3.6.1.2.1.5.30.1.3.2.200|65|0 +1.3.6.1.2.1.5.30.1.4.1.0|65|275463 +1.3.6.1.2.1.5.30.1.4.1.1|65|0 +1.3.6.1.2.1.5.30.1.4.1.2|65|0 +1.3.6.1.2.1.5.30.1.4.1.3|65|0 +1.3.6.1.2.1.5.30.1.4.1.4|65|0 +1.3.6.1.2.1.5.30.1.4.1.5|65|0 +1.3.6.1.2.1.5.30.1.4.1.6|65|0 +1.3.6.1.2.1.5.30.1.4.1.7|65|0 +1.3.6.1.2.1.5.30.1.4.1.8|65|0 +1.3.6.1.2.1.5.30.1.4.1.9|65|0 +1.3.6.1.2.1.5.30.1.4.1.10|65|0 +1.3.6.1.2.1.5.30.1.4.1.11|65|0 +1.3.6.1.2.1.5.30.1.4.1.12|65|0 +1.3.6.1.2.1.5.30.1.4.1.13|65|0 +1.3.6.1.2.1.5.30.1.4.1.14|65|0 +1.3.6.1.2.1.5.30.1.4.1.15|65|0 +1.3.6.1.2.1.5.30.1.4.1.16|65|0 +1.3.6.1.2.1.5.30.1.4.1.17|65|0 +1.3.6.1.2.1.5.30.1.4.2.1|65|0 +1.3.6.1.2.1.5.30.1.4.2.2|65|0 +1.3.6.1.2.1.5.30.1.4.2.3|65|0 +1.3.6.1.2.1.5.30.1.4.2.4|65|0 +1.3.6.1.2.1.5.30.1.4.2.5|65|0 +1.3.6.1.2.1.5.30.1.4.2.6|65|0 +1.3.6.1.2.1.5.30.1.4.2.7|65|0 +1.3.6.1.2.1.5.30.1.4.2.8|65|0 +1.3.6.1.2.1.5.30.1.4.2.9|65|0 +1.3.6.1.2.1.5.30.1.4.2.10|65|0 +1.3.6.1.2.1.5.30.1.4.2.11|65|0 +1.3.6.1.2.1.5.30.1.4.2.12|65|0 +1.3.6.1.2.1.5.30.1.4.2.13|65|0 +1.3.6.1.2.1.5.30.1.4.2.14|65|0 +1.3.6.1.2.1.5.30.1.4.2.15|65|0 +1.3.6.1.2.1.5.30.1.4.2.16|65|0 +1.3.6.1.2.1.5.30.1.4.2.17|65|0 +1.3.6.1.2.1.5.30.1.4.2.18|65|0 +1.3.6.1.2.1.5.30.1.4.2.19|65|0 +1.3.6.1.2.1.5.30.1.4.2.20|65|0 +1.3.6.1.2.1.5.30.1.4.2.21|65|0 +1.3.6.1.2.1.5.30.1.4.2.22|65|0 +1.3.6.1.2.1.5.30.1.4.2.23|65|0 +1.3.6.1.2.1.5.30.1.4.2.24|65|0 +1.3.6.1.2.1.5.30.1.4.2.25|65|0 +1.3.6.1.2.1.5.30.1.4.2.26|65|0 +1.3.6.1.2.1.5.30.1.4.2.27|65|0 +1.3.6.1.2.1.5.30.1.4.2.28|65|0 +1.3.6.1.2.1.5.30.1.4.2.29|65|0 +1.3.6.1.2.1.5.30.1.4.2.30|65|0 +1.3.6.1.2.1.5.30.1.4.2.31|65|0 +1.3.6.1.2.1.5.30.1.4.2.32|65|0 +1.3.6.1.2.1.5.30.1.4.2.33|65|0 +1.3.6.1.2.1.5.30.1.4.2.34|65|0 +1.3.6.1.2.1.5.30.1.4.2.35|65|0 +1.3.6.1.2.1.5.30.1.4.2.36|65|0 +1.3.6.1.2.1.5.30.1.4.2.37|65|0 +1.3.6.1.2.1.5.30.1.4.2.38|65|0 +1.3.6.1.2.1.5.30.1.4.2.39|65|0 +1.3.6.1.2.1.5.30.1.4.2.40|65|0 +1.3.6.1.2.1.5.30.1.4.2.41|65|0 +1.3.6.1.2.1.5.30.1.4.2.42|65|0 +1.3.6.1.2.1.5.30.1.4.2.43|65|0 +1.3.6.1.2.1.5.30.1.4.2.44|65|0 +1.3.6.1.2.1.5.30.1.4.2.45|65|0 +1.3.6.1.2.1.5.30.1.4.2.46|65|0 +1.3.6.1.2.1.5.30.1.4.2.47|65|0 +1.3.6.1.2.1.5.30.1.4.2.48|65|0 +1.3.6.1.2.1.5.30.1.4.2.49|65|0 +1.3.6.1.2.1.5.30.1.4.2.50|65|0 +1.3.6.1.2.1.5.30.1.4.2.51|65|0 +1.3.6.1.2.1.5.30.1.4.2.52|65|0 +1.3.6.1.2.1.5.30.1.4.2.53|65|0 +1.3.6.1.2.1.5.30.1.4.2.54|65|0 +1.3.6.1.2.1.5.30.1.4.2.55|65|0 +1.3.6.1.2.1.5.30.1.4.2.56|65|0 +1.3.6.1.2.1.5.30.1.4.2.57|65|0 +1.3.6.1.2.1.5.30.1.4.2.58|65|0 +1.3.6.1.2.1.5.30.1.4.2.59|65|0 +1.3.6.1.2.1.5.30.1.4.2.60|65|0 +1.3.6.1.2.1.5.30.1.4.2.61|65|0 +1.3.6.1.2.1.5.30.1.4.2.62|65|0 +1.3.6.1.2.1.5.30.1.4.2.63|65|0 +1.3.6.1.2.1.5.30.1.4.2.64|65|0 +1.3.6.1.2.1.5.30.1.4.2.65|65|0 +1.3.6.1.2.1.5.30.1.4.2.66|65|0 +1.3.6.1.2.1.5.30.1.4.2.67|65|0 +1.3.6.1.2.1.5.30.1.4.2.68|65|0 +1.3.6.1.2.1.5.30.1.4.2.69|65|0 +1.3.6.1.2.1.5.30.1.4.2.70|65|0 +1.3.6.1.2.1.5.30.1.4.2.71|65|0 +1.3.6.1.2.1.5.30.1.4.2.72|65|0 +1.3.6.1.2.1.5.30.1.4.2.73|65|0 +1.3.6.1.2.1.5.30.1.4.2.74|65|0 +1.3.6.1.2.1.5.30.1.4.2.75|65|0 +1.3.6.1.2.1.5.30.1.4.2.76|65|0 +1.3.6.1.2.1.5.30.1.4.2.77|65|0 +1.3.6.1.2.1.5.30.1.4.2.78|65|0 +1.3.6.1.2.1.5.30.1.4.2.79|65|0 +1.3.6.1.2.1.5.30.1.4.2.80|65|0 +1.3.6.1.2.1.5.30.1.4.2.81|65|0 +1.3.6.1.2.1.5.30.1.4.2.82|65|0 +1.3.6.1.2.1.5.30.1.4.2.83|65|0 +1.3.6.1.2.1.5.30.1.4.2.84|65|0 +1.3.6.1.2.1.5.30.1.4.2.85|65|0 +1.3.6.1.2.1.5.30.1.4.2.86|65|0 +1.3.6.1.2.1.5.30.1.4.2.87|65|0 +1.3.6.1.2.1.5.30.1.4.2.88|65|0 +1.3.6.1.2.1.5.30.1.4.2.89|65|0 +1.3.6.1.2.1.5.30.1.4.2.90|65|0 +1.3.6.1.2.1.5.30.1.4.2.91|65|0 +1.3.6.1.2.1.5.30.1.4.2.92|65|0 +1.3.6.1.2.1.5.30.1.4.2.93|65|0 +1.3.6.1.2.1.5.30.1.4.2.94|65|0 +1.3.6.1.2.1.5.30.1.4.2.95|65|0 +1.3.6.1.2.1.5.30.1.4.2.96|65|0 +1.3.6.1.2.1.5.30.1.4.2.97|65|0 +1.3.6.1.2.1.5.30.1.4.2.98|65|0 +1.3.6.1.2.1.5.30.1.4.2.99|65|0 +1.3.6.1.2.1.5.30.1.4.2.100|65|0 +1.3.6.1.2.1.5.30.1.4.2.101|65|0 +1.3.6.1.2.1.5.30.1.4.2.102|65|0 +1.3.6.1.2.1.5.30.1.4.2.103|65|0 +1.3.6.1.2.1.5.30.1.4.2.104|65|0 +1.3.6.1.2.1.5.30.1.4.2.105|65|0 +1.3.6.1.2.1.5.30.1.4.2.106|65|0 +1.3.6.1.2.1.5.30.1.4.2.107|65|0 +1.3.6.1.2.1.5.30.1.4.2.108|65|0 +1.3.6.1.2.1.5.30.1.4.2.109|65|0 +1.3.6.1.2.1.5.30.1.4.2.110|65|0 +1.3.6.1.2.1.5.30.1.4.2.111|65|0 +1.3.6.1.2.1.5.30.1.4.2.112|65|0 +1.3.6.1.2.1.5.30.1.4.2.113|65|0 +1.3.6.1.2.1.5.30.1.4.2.114|65|0 +1.3.6.1.2.1.5.30.1.4.2.115|65|0 +1.3.6.1.2.1.5.30.1.4.2.116|65|0 +1.3.6.1.2.1.5.30.1.4.2.117|65|0 +1.3.6.1.2.1.5.30.1.4.2.118|65|0 +1.3.6.1.2.1.5.30.1.4.2.119|65|0 +1.3.6.1.2.1.5.30.1.4.2.120|65|0 +1.3.6.1.2.1.5.30.1.4.2.121|65|0 +1.3.6.1.2.1.5.30.1.4.2.122|65|0 +1.3.6.1.2.1.5.30.1.4.2.123|65|0 +1.3.6.1.2.1.5.30.1.4.2.124|65|0 +1.3.6.1.2.1.5.30.1.4.2.125|65|0 +1.3.6.1.2.1.5.30.1.4.2.126|65|0 +1.3.6.1.2.1.5.30.1.4.2.127|65|0 +1.3.6.1.2.1.5.30.1.4.2.128|65|0 +1.3.6.1.2.1.5.30.1.4.2.129|65|0 +1.3.6.1.2.1.5.30.1.4.2.130|65|0 +1.3.6.1.2.1.5.30.1.4.2.131|65|0 +1.3.6.1.2.1.5.30.1.4.2.132|65|0 +1.3.6.1.2.1.5.30.1.4.2.133|65|0 +1.3.6.1.2.1.5.30.1.4.2.134|65|0 +1.3.6.1.2.1.5.30.1.4.2.135|65|0 +1.3.6.1.2.1.5.30.1.4.2.136|65|0 +1.3.6.1.2.1.5.30.1.4.2.137|65|0 +1.3.6.1.2.1.5.30.1.4.2.138|65|0 +1.3.6.1.2.1.5.30.1.4.2.139|65|0 +1.3.6.1.2.1.5.30.1.4.2.140|65|0 +1.3.6.1.2.1.5.30.1.4.2.141|65|0 +1.3.6.1.2.1.5.30.1.4.2.142|65|0 +1.3.6.1.2.1.5.30.1.4.2.143|65|0 +1.3.6.1.2.1.5.30.1.4.2.144|65|0 +1.3.6.1.2.1.5.30.1.4.2.145|65|0 +1.3.6.1.2.1.5.30.1.4.2.146|65|0 +1.3.6.1.2.1.5.30.1.4.2.147|65|0 +1.3.6.1.2.1.5.30.1.4.2.148|65|0 +1.3.6.1.2.1.5.30.1.4.2.149|65|0 +1.3.6.1.2.1.5.30.1.4.2.150|65|0 +1.3.6.1.2.1.5.30.1.4.2.151|65|0 +1.3.6.1.2.1.5.30.1.4.2.152|65|0 +1.3.6.1.2.1.5.30.1.4.2.153|65|0 +1.3.6.1.2.1.5.30.1.4.2.154|65|0 +1.3.6.1.2.1.5.30.1.4.2.155|65|0 +1.3.6.1.2.1.5.30.1.4.2.156|65|0 +1.3.6.1.2.1.5.30.1.4.2.157|65|0 +1.3.6.1.2.1.5.30.1.4.2.158|65|0 +1.3.6.1.2.1.5.30.1.4.2.159|65|0 +1.3.6.1.2.1.5.30.1.4.2.160|65|0 +1.3.6.1.2.1.5.30.1.4.2.161|65|0 +1.3.6.1.2.1.5.30.1.4.2.162|65|0 +1.3.6.1.2.1.5.30.1.4.2.163|65|0 +1.3.6.1.2.1.5.30.1.4.2.164|65|0 +1.3.6.1.2.1.5.30.1.4.2.165|65|0 +1.3.6.1.2.1.5.30.1.4.2.166|65|0 +1.3.6.1.2.1.5.30.1.4.2.167|65|0 +1.3.6.1.2.1.5.30.1.4.2.168|65|0 +1.3.6.1.2.1.5.30.1.4.2.169|65|0 +1.3.6.1.2.1.5.30.1.4.2.170|65|0 +1.3.6.1.2.1.5.30.1.4.2.171|65|0 +1.3.6.1.2.1.5.30.1.4.2.172|65|0 +1.3.6.1.2.1.5.30.1.4.2.173|65|0 +1.3.6.1.2.1.5.30.1.4.2.174|65|0 +1.3.6.1.2.1.5.30.1.4.2.175|65|0 +1.3.6.1.2.1.5.30.1.4.2.176|65|0 +1.3.6.1.2.1.5.30.1.4.2.177|65|0 +1.3.6.1.2.1.5.30.1.4.2.178|65|0 +1.3.6.1.2.1.5.30.1.4.2.179|65|0 +1.3.6.1.2.1.5.30.1.4.2.180|65|0 +1.3.6.1.2.1.5.30.1.4.2.181|65|0 +1.3.6.1.2.1.5.30.1.4.2.182|65|0 +1.3.6.1.2.1.5.30.1.4.2.183|65|0 +1.3.6.1.2.1.5.30.1.4.2.184|65|0 +1.3.6.1.2.1.5.30.1.4.2.185|65|0 +1.3.6.1.2.1.5.30.1.4.2.186|65|0 +1.3.6.1.2.1.5.30.1.4.2.187|65|0 +1.3.6.1.2.1.5.30.1.4.2.188|65|0 +1.3.6.1.2.1.5.30.1.4.2.189|65|0 +1.3.6.1.2.1.5.30.1.4.2.190|65|0 +1.3.6.1.2.1.5.30.1.4.2.191|65|0 +1.3.6.1.2.1.5.30.1.4.2.192|65|0 +1.3.6.1.2.1.5.30.1.4.2.193|65|0 +1.3.6.1.2.1.5.30.1.4.2.194|65|0 +1.3.6.1.2.1.5.30.1.4.2.195|65|0 +1.3.6.1.2.1.5.30.1.4.2.196|65|0 +1.3.6.1.2.1.5.30.1.4.2.197|65|0 +1.3.6.1.2.1.5.30.1.4.2.198|65|0 +1.3.6.1.2.1.5.30.1.4.2.199|65|0 +1.3.6.1.2.1.5.30.1.4.2.200|65|0 +1.3.6.1.2.1.6.5.0|65|0 +1.3.6.1.2.1.6.6.0|65|10791 +1.3.6.1.2.1.6.7.0|65|0 +1.3.6.1.2.1.6.8.0|65|10546 +1.3.6.1.2.1.6.9.0|66|1 +1.3.6.1.2.1.6.10.0|65|77777 +1.3.6.1.2.1.6.11.0|65|70579 +1.3.6.1.2.1.6.12.0|65|1 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|0 +1.3.6.1.2.1.6.17.0|70|77793 +1.3.6.1.2.1.6.18.0|70|70615 +1.3.6.1.2.1.7.1.0|65|1900888 +1.3.6.1.2.1.7.2.0|65|11143 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|1922520 +1.3.6.1.2.1.10.7.2.1.19.1048580|2|3 +1.3.6.1.2.1.10.7.2.1.19.1048708|2|3 +1.3.6.1.2.1.10.7.2.1.19.1048836|2|3 +1.3.6.1.2.1.10.7.2.1.19.1048964|2|3 +1.3.6.1.2.1.10.7.2.1.19.1049092|2|3 +1.3.6.1.2.1.10.7.2.1.19.1049220|2|3 +1.3.6.1.2.1.10.7.2.1.19.1049348|2|3 +1.3.6.1.2.1.10.7.2.1.19.1049476|2|3 +1.3.6.1.2.1.10.7.2.1.19.1049604|2|3 +1.3.6.1.2.1.10.7.2.1.19.1049732|2|3 +1.3.6.1.2.1.10.7.2.1.19.1049860|2|3 +1.3.6.1.2.1.10.7.2.1.19.1049988|2|3 +1.3.6.1.2.1.10.7.2.1.19.1050116|2|3 +1.3.6.1.2.1.10.7.2.1.19.1050244|2|3 +1.3.6.1.2.1.10.7.2.1.19.1050372|2|3 +1.3.6.1.2.1.10.7.2.1.19.1050500|2|3 +1.3.6.1.2.1.10.7.2.1.19.1050628|2|1 +1.3.6.1.2.1.10.7.2.1.19.1050756|2|1 +1.3.6.1.2.1.10.7.2.1.19.1050884|2|1 +1.3.6.1.2.1.10.7.2.1.19.1051012|2|1 +1.3.6.1.2.1.10.7.2.1.19.1051140|2|1 +1.3.6.1.2.1.10.7.2.1.19.1051268|2|1 +1.3.6.1.2.1.10.7.2.1.19.1051396|2|1 +1.3.6.1.2.1.10.7.2.1.19.1051524|2|1 +1.3.6.1.2.1.10.7.2.1.19.1051652|2|1 +1.3.6.1.2.1.10.7.2.1.19.1051780|2|1 +1.3.6.1.2.1.10.7.2.1.19.1051908|2|1 +1.3.6.1.2.1.10.7.2.1.19.1052036|2|1 +1.3.6.1.2.1.10.7.2.1.19.1052164|2|1 +1.3.6.1.2.1.10.7.2.1.19.1052292|2|1 +1.3.6.1.2.1.10.7.2.1.19.1052420|2|1 +1.3.6.1.2.1.10.7.2.1.19.1052548|2|1 +1.3.6.1.2.1.10.7.2.1.19.1052677|2|3 +1.3.6.1.2.1.10.7.2.1.19.1053189|2|3 +1.3.6.1.2.1.10.7.2.1.19.1053701|2|1 +1.3.6.1.2.1.10.7.2.1.19.1054213|2|1 +1.3.6.1.2.1.10.7.2.1.19.1054724|2|1 +1.3.6.1.2.1.10.7.2.1.19.1054852|2|1 +1.3.6.1.2.1.10.7.2.1.19.1054980|2|1 +1.3.6.1.2.1.10.7.2.1.19.1055108|2|1 +1.3.6.1.2.1.10.7.2.1.19.7340033|2|3 +1.3.6.1.2.1.10.7.2.1.19.1258291712|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258292224|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258292736|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258293248|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258293760|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258294272|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258294784|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258295296|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258295808|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258296320|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258296832|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258297344|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258297856|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258298368|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258298880|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258299392|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258308096|2|1 +1.3.6.1.2.1.10.7.2.1.19.1258310144|2|1 +1.3.6.1.2.1.11.1.0|65|1221274 +1.3.6.1.2.1.11.2.0|65|1221273 +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|8019095 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|146724 +1.3.6.1.2.1.11.16.0|65|445056 +1.3.6.1.2.1.11.17.0|65|0 +1.3.6.1.2.1.11.18.0|65|0 +1.3.6.1.2.1.11.19.0|65|0 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|152 +1.3.6.1.2.1.11.22.0|65|0 +1.3.6.1.2.1.11.24.0|65|0 +1.3.6.1.2.1.11.25.0|65|0 +1.3.6.1.2.1.11.26.0|65|0 +1.3.6.1.2.1.11.27.0|65|0 +1.3.6.1.2.1.11.28.0|65|1221275 +1.3.6.1.2.1.11.29.0|65|0 +1.3.6.1.2.1.11.30.0|2|2 +1.3.6.1.2.1.16.19.1.0|4|F0400040 +1.3.6.1.2.1.17.1.4.1.2.49|2|1054724 +1.3.6.1.2.1.17.1.4.1.2.51|2|1054980 +1.3.6.1.2.1.17.1.4.1.2.337|2|1258291712 +1.3.6.1.2.1.17.1.4.1.2.338|2|1258292224 +1.3.6.1.2.1.17.1.4.1.2.339|2|1258292736 +1.3.6.1.2.1.17.1.4.1.2.340|2|1258293248 +1.3.6.1.2.1.17.1.4.1.2.341|2|1258293760 +1.3.6.1.2.1.17.1.4.1.2.342|2|1258294272 +1.3.6.1.2.1.17.1.4.1.2.343|2|1258294784 +1.3.6.1.2.1.17.1.4.1.2.344|2|1258295296 +1.3.6.1.2.1.17.1.4.1.2.345|2|1258295808 +1.3.6.1.2.1.17.1.4.1.2.346|2|1258296320 +1.3.6.1.2.1.17.1.4.1.2.347|2|1258296832 +1.3.6.1.2.1.17.1.4.1.2.348|2|1258297344 +1.3.6.1.2.1.17.1.4.1.2.349|2|1258297856 +1.3.6.1.2.1.17.1.4.1.2.350|2|1258298368 +1.3.6.1.2.1.17.1.4.1.2.351|2|1258298880 +1.3.6.1.2.1.17.1.4.1.2.352|2|1258299392 +1.3.6.1.2.1.17.1.4.1.2.369|2|1258308096 +1.3.6.1.2.1.17.1.4.1.2.373|2|1258310144 +1.3.6.1.2.1.17.2.1.0|5| +1.3.6.1.2.1.17.7.1.1.1.0|2|1 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.1|4x|000000000000A00000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203830203030200a303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.100|4x|000000000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030204646204646203030203030203838203030200a303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.1|4x|000000000000A00000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203830203030200a303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.100|4x|000000000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.3.1.1.1|4|Vlan 1 +1.3.6.1.2.1.17.7.1.4.3.1.1.100|4|Vlan 100 +1.3.6.1.2.1.31.1.1.1.1.1048580|4|TenGigabitEthernet 0/1 +1.3.6.1.2.1.31.1.1.1.1.1048708|4|TenGigabitEthernet 0/2 +1.3.6.1.2.1.31.1.1.1.1.1048836|4|TenGigabitEthernet 0/3 +1.3.6.1.2.1.31.1.1.1.1.1048964|4|TenGigabitEthernet 0/4 +1.3.6.1.2.1.31.1.1.1.1.1049092|4|TenGigabitEthernet 0/5 +1.3.6.1.2.1.31.1.1.1.1.1049220|4|TenGigabitEthernet 0/6 +1.3.6.1.2.1.31.1.1.1.1.1049348|4|TenGigabitEthernet 0/7 +1.3.6.1.2.1.31.1.1.1.1.1049476|4|TenGigabitEthernet 0/8 +1.3.6.1.2.1.31.1.1.1.1.1049604|4|TenGigabitEthernet 0/9 +1.3.6.1.2.1.31.1.1.1.1.1049732|4|TenGigabitEthernet 0/10 +1.3.6.1.2.1.31.1.1.1.1.1049860|4|TenGigabitEthernet 0/11 +1.3.6.1.2.1.31.1.1.1.1.1049988|4|TenGigabitEthernet 0/12 +1.3.6.1.2.1.31.1.1.1.1.1050116|4|TenGigabitEthernet 0/13 +1.3.6.1.2.1.31.1.1.1.1.1050244|4|TenGigabitEthernet 0/14 +1.3.6.1.2.1.31.1.1.1.1.1050372|4|TenGigabitEthernet 0/15 +1.3.6.1.2.1.31.1.1.1.1.1050500|4|TenGigabitEthernet 0/16 +1.3.6.1.2.1.31.1.1.1.1.1050628|4|TenGigabitEthernet 0/17 +1.3.6.1.2.1.31.1.1.1.1.1050756|4|TenGigabitEthernet 0/18 +1.3.6.1.2.1.31.1.1.1.1.1050884|4|TenGigabitEthernet 0/19 +1.3.6.1.2.1.31.1.1.1.1.1051012|4|TenGigabitEthernet 0/20 +1.3.6.1.2.1.31.1.1.1.1.1051140|4|TenGigabitEthernet 0/21 +1.3.6.1.2.1.31.1.1.1.1.1051268|4|TenGigabitEthernet 0/22 +1.3.6.1.2.1.31.1.1.1.1.1051396|4|TenGigabitEthernet 0/23 +1.3.6.1.2.1.31.1.1.1.1.1051524|4|TenGigabitEthernet 0/24 +1.3.6.1.2.1.31.1.1.1.1.1051652|4|TenGigabitEthernet 0/25 +1.3.6.1.2.1.31.1.1.1.1.1051780|4|TenGigabitEthernet 0/26 +1.3.6.1.2.1.31.1.1.1.1.1051908|4|TenGigabitEthernet 0/27 +1.3.6.1.2.1.31.1.1.1.1.1052036|4|TenGigabitEthernet 0/28 +1.3.6.1.2.1.31.1.1.1.1.1052164|4|TenGigabitEthernet 0/29 +1.3.6.1.2.1.31.1.1.1.1.1052292|4|TenGigabitEthernet 0/30 +1.3.6.1.2.1.31.1.1.1.1.1052420|4|TenGigabitEthernet 0/31 +1.3.6.1.2.1.31.1.1.1.1.1052548|4|TenGigabitEthernet 0/32 +1.3.6.1.2.1.31.1.1.1.1.1052677|4|fortyGigE 0/33 +1.3.6.1.2.1.31.1.1.1.1.1053189|4|fortyGigE 0/37 +1.3.6.1.2.1.31.1.1.1.1.1053701|4|fortyGigE 0/41 +1.3.6.1.2.1.31.1.1.1.1.1054213|4|fortyGigE 0/45 +1.3.6.1.2.1.31.1.1.1.1.1054724|4|TenGigabitEthernet 0/49 +1.3.6.1.2.1.31.1.1.1.1.1054852|4|TenGigabitEthernet 0/50 +1.3.6.1.2.1.31.1.1.1.1.1054980|4|TenGigabitEthernet 0/51 +1.3.6.1.2.1.31.1.1.1.1.1055108|4|TenGigabitEthernet 0/52 +1.3.6.1.2.1.31.1.1.1.1.7340033|4|ManagementEthernet 0/0 +1.3.6.1.2.1.31.1.1.1.1.1233125376|4|NULL 0 +1.3.6.1.2.1.31.1.1.1.1.1258291712|4|Port-channel 1 +1.3.6.1.2.1.31.1.1.1.1.1258292224|4|Port-channel 2 +1.3.6.1.2.1.31.1.1.1.1.1258292736|4|Port-channel 3 +1.3.6.1.2.1.31.1.1.1.1.1258293248|4|Port-channel 4 +1.3.6.1.2.1.31.1.1.1.1.1258293760|4|Port-channel 5 +1.3.6.1.2.1.31.1.1.1.1.1258294272|4|Port-channel 6 +1.3.6.1.2.1.31.1.1.1.1.1258294784|4|Port-channel 7 +1.3.6.1.2.1.31.1.1.1.1.1258295296|4|Port-channel 8 +1.3.6.1.2.1.31.1.1.1.1.1258295808|4|Port-channel 9 +1.3.6.1.2.1.31.1.1.1.1.1258296320|4|Port-channel 10 +1.3.6.1.2.1.31.1.1.1.1.1258296832|4|Port-channel 11 +1.3.6.1.2.1.31.1.1.1.1.1258297344|4|Port-channel 12 +1.3.6.1.2.1.31.1.1.1.1.1258297856|4|Port-channel 13 +1.3.6.1.2.1.31.1.1.1.1.1258298368|4|Port-channel 14 +1.3.6.1.2.1.31.1.1.1.1.1258298880|4|Port-channel 15 +1.3.6.1.2.1.31.1.1.1.1.1258299392|4|Port-channel 16 +1.3.6.1.2.1.31.1.1.1.1.1258308096|4|Port-channel 33 +1.3.6.1.2.1.31.1.1.1.1.1258310144|4|Port-channel 37 +1.3.6.1.2.1.31.1.1.1.1.1275068928|4|Vlan 1 +1.3.6.1.2.1.31.1.1.1.1.1275119616|4|Vlan 100 +1.3.6.1.2.1.31.1.1.1.2.1048580|65|104034 +1.3.6.1.2.1.31.1.1.1.2.1048708|65|26806 +1.3.6.1.2.1.31.1.1.1.2.1048836|65|148490 +1.3.6.1.2.1.31.1.1.1.2.1048964|65|130137 +1.3.6.1.2.1.31.1.1.1.2.1049092|65|83676 +1.3.6.1.2.1.31.1.1.1.2.1049220|65|42772 +1.3.6.1.2.1.31.1.1.1.2.1049348|65|111111 +1.3.6.1.2.1.31.1.1.1.2.1049476|65|91510 +1.3.6.1.2.1.31.1.1.1.2.1049604|65|36987 +1.3.6.1.2.1.31.1.1.1.2.1049732|65|105568 +1.3.6.1.2.1.31.1.1.1.2.1049860|65|141784 +1.3.6.1.2.1.31.1.1.1.2.1049988|65|172520 +1.3.6.1.2.1.31.1.1.1.2.1050116|65|85248 +1.3.6.1.2.1.31.1.1.1.2.1050244|65|80264 +1.3.6.1.2.1.31.1.1.1.2.1050372|65|84812 +1.3.6.1.2.1.31.1.1.1.2.1050500|65|79003 +1.3.6.1.2.1.31.1.1.1.2.1050628|65|0 +1.3.6.1.2.1.31.1.1.1.2.1050756|65|0 +1.3.6.1.2.1.31.1.1.1.2.1050884|65|0 +1.3.6.1.2.1.31.1.1.1.2.1051012|65|0 +1.3.6.1.2.1.31.1.1.1.2.1051140|65|0 +1.3.6.1.2.1.31.1.1.1.2.1051268|65|0 +1.3.6.1.2.1.31.1.1.1.2.1051396|65|0 +1.3.6.1.2.1.31.1.1.1.2.1051524|65|0 +1.3.6.1.2.1.31.1.1.1.2.1051652|65|0 +1.3.6.1.2.1.31.1.1.1.2.1051780|65|0 +1.3.6.1.2.1.31.1.1.1.2.1051908|65|0 +1.3.6.1.2.1.31.1.1.1.2.1052036|65|0 +1.3.6.1.2.1.31.1.1.1.2.1052164|65|0 +1.3.6.1.2.1.31.1.1.1.2.1052292|65|0 +1.3.6.1.2.1.31.1.1.1.2.1052420|65|0 +1.3.6.1.2.1.31.1.1.1.2.1052548|65|0 +1.3.6.1.2.1.31.1.1.1.2.1052677|65|53927873 +1.3.6.1.2.1.31.1.1.1.2.1053189|65|114816720 +1.3.6.1.2.1.31.1.1.1.2.1053701|65|0 +1.3.6.1.2.1.31.1.1.1.2.1054213|65|0 +1.3.6.1.2.1.31.1.1.1.2.1054724|65|0 +1.3.6.1.2.1.31.1.1.1.2.1054852|65|0 +1.3.6.1.2.1.31.1.1.1.2.1054980|65|0 +1.3.6.1.2.1.31.1.1.1.2.1055108|65|0 +1.3.6.1.2.1.31.1.1.1.2.7340033|65|85988 +1.3.6.1.2.1.31.1.1.1.2.1233125376|65|0 +1.3.6.1.2.1.31.1.1.1.2.1258291712|65|104034 +1.3.6.1.2.1.31.1.1.1.2.1258292224|65|26806 +1.3.6.1.2.1.31.1.1.1.2.1258292736|65|148490 +1.3.6.1.2.1.31.1.1.1.2.1258293248|65|130137 +1.3.6.1.2.1.31.1.1.1.2.1258293760|65|83676 +1.3.6.1.2.1.31.1.1.1.2.1258294272|65|42772 +1.3.6.1.2.1.31.1.1.1.2.1258294784|65|111111 +1.3.6.1.2.1.31.1.1.1.2.1258295296|65|91510 +1.3.6.1.2.1.31.1.1.1.2.1258295808|65|36987 +1.3.6.1.2.1.31.1.1.1.2.1258296320|65|105568 +1.3.6.1.2.1.31.1.1.1.2.1258296832|65|141784 +1.3.6.1.2.1.31.1.1.1.2.1258297344|65|172520 +1.3.6.1.2.1.31.1.1.1.2.1258297856|65|85248 +1.3.6.1.2.1.31.1.1.1.2.1258298368|65|80264 +1.3.6.1.2.1.31.1.1.1.2.1258298880|65|84812 +1.3.6.1.2.1.31.1.1.1.2.1258299392|65|79003 +1.3.6.1.2.1.31.1.1.1.2.1258308096|65|53927873 +1.3.6.1.2.1.31.1.1.1.2.1258310144|65|114816720 +1.3.6.1.2.1.31.1.1.1.2.1275068928|65|0 +1.3.6.1.2.1.31.1.1.1.2.1275119616|65|0 +1.3.6.1.2.1.31.1.1.1.2.1275593728|65|0 +1.3.6.1.2.1.31.1.1.1.2.1275595264|65|0 +1.3.6.1.2.1.31.1.1.1.2.1275595776|65|0 +1.3.6.1.2.1.31.1.1.1.2.1275596288|65|0 +1.3.6.1.2.1.31.1.1.1.2.1275596800|65|0 +1.3.6.1.2.1.31.1.1.1.2.1275597312|65|0 +1.3.6.1.2.1.31.1.1.1.3.1048580|65|5046 +1.3.6.1.2.1.31.1.1.1.3.1048708|65|1339 +1.3.6.1.2.1.31.1.1.1.3.1048836|65|794 +1.3.6.1.2.1.31.1.1.1.3.1048964|65|13162 +1.3.6.1.2.1.31.1.1.1.3.1049092|65|1907 +1.3.6.1.2.1.31.1.1.1.3.1049220|65|0 +1.3.6.1.2.1.31.1.1.1.3.1049348|65|2687 +1.3.6.1.2.1.31.1.1.1.3.1049476|65|2386 +1.3.6.1.2.1.31.1.1.1.3.1049604|65|82 +1.3.6.1.2.1.31.1.1.1.3.1049732|65|1535 +1.3.6.1.2.1.31.1.1.1.3.1049860|65|6874 +1.3.6.1.2.1.31.1.1.1.3.1049988|65|13055 +1.3.6.1.2.1.31.1.1.1.3.1050116|65|4146 +1.3.6.1.2.1.31.1.1.1.3.1050244|65|1726 +1.3.6.1.2.1.31.1.1.1.3.1050372|65|2386 +1.3.6.1.2.1.31.1.1.1.3.1050500|65|585683 +1.3.6.1.2.1.31.1.1.1.3.1050628|65|0 +1.3.6.1.2.1.31.1.1.1.3.1050756|65|0 +1.3.6.1.2.1.31.1.1.1.3.1050884|65|0 +1.3.6.1.2.1.31.1.1.1.3.1051012|65|0 +1.3.6.1.2.1.31.1.1.1.3.1051140|65|0 +1.3.6.1.2.1.31.1.1.1.3.1051268|65|0 +1.3.6.1.2.1.31.1.1.1.3.1051396|65|0 +1.3.6.1.2.1.31.1.1.1.3.1051524|65|0 +1.3.6.1.2.1.31.1.1.1.3.1051652|65|0 +1.3.6.1.2.1.31.1.1.1.3.1051780|65|0 +1.3.6.1.2.1.31.1.1.1.3.1051908|65|0 +1.3.6.1.2.1.31.1.1.1.3.1052036|65|0 +1.3.6.1.2.1.31.1.1.1.3.1052164|65|0 +1.3.6.1.2.1.31.1.1.1.3.1052292|65|0 +1.3.6.1.2.1.31.1.1.1.3.1052420|65|0 +1.3.6.1.2.1.31.1.1.1.3.1052548|65|0 +1.3.6.1.2.1.31.1.1.1.3.1052677|65|39165797 +1.3.6.1.2.1.31.1.1.1.3.1053189|65|309563304 +1.3.6.1.2.1.31.1.1.1.3.1053701|65|0 +1.3.6.1.2.1.31.1.1.1.3.1054213|65|0 +1.3.6.1.2.1.31.1.1.1.3.1054724|65|0 +1.3.6.1.2.1.31.1.1.1.3.1054852|65|0 +1.3.6.1.2.1.31.1.1.1.3.1054980|65|0 +1.3.6.1.2.1.31.1.1.1.3.1055108|65|0 +1.3.6.1.2.1.31.1.1.1.3.7340033|65|0 +1.3.6.1.2.1.31.1.1.1.3.1233125376|65|0 +1.3.6.1.2.1.31.1.1.1.3.1258291712|65|5046 +1.3.6.1.2.1.31.1.1.1.3.1258292224|65|1339 +1.3.6.1.2.1.31.1.1.1.3.1258292736|65|794 +1.3.6.1.2.1.31.1.1.1.3.1258293248|65|13162 +1.3.6.1.2.1.31.1.1.1.3.1258293760|65|1907 +1.3.6.1.2.1.31.1.1.1.3.1258294272|65|0 +1.3.6.1.2.1.31.1.1.1.3.1258294784|65|2687 +1.3.6.1.2.1.31.1.1.1.3.1258295296|65|2386 +1.3.6.1.2.1.31.1.1.1.3.1258295808|65|82 +1.3.6.1.2.1.31.1.1.1.3.1258296320|65|1535 +1.3.6.1.2.1.31.1.1.1.3.1258296832|65|6874 +1.3.6.1.2.1.31.1.1.1.3.1258297344|65|13055 +1.3.6.1.2.1.31.1.1.1.3.1258297856|65|4146 +1.3.6.1.2.1.31.1.1.1.3.1258298368|65|1726 +1.3.6.1.2.1.31.1.1.1.3.1258298880|65|2386 +1.3.6.1.2.1.31.1.1.1.3.1258299392|65|585683 +1.3.6.1.2.1.31.1.1.1.3.1258308096|65|39165797 +1.3.6.1.2.1.31.1.1.1.3.1258310144|65|309563304 +1.3.6.1.2.1.31.1.1.1.3.1275068928|65|0 +1.3.6.1.2.1.31.1.1.1.3.1275119616|65|0 +1.3.6.1.2.1.31.1.1.1.3.1275593728|65|0 +1.3.6.1.2.1.31.1.1.1.3.1275595264|65|0 +1.3.6.1.2.1.31.1.1.1.3.1275595776|65|0 +1.3.6.1.2.1.31.1.1.1.3.1275596288|65|0 +1.3.6.1.2.1.31.1.1.1.3.1275596800|65|0 +1.3.6.1.2.1.31.1.1.1.3.1275597312|65|0 +1.3.6.1.2.1.31.1.1.1.4.1048580|65|109867832 +1.3.6.1.2.1.31.1.1.1.4.1048708|65|109898621 +1.3.6.1.2.1.31.1.1.1.4.1048836|65|109874987 +1.3.6.1.2.1.31.1.1.1.4.1048964|65|109883658 +1.3.6.1.2.1.31.1.1.1.4.1049092|65|109898521 +1.3.6.1.2.1.31.1.1.1.4.1049220|65|109898770 +1.3.6.1.2.1.31.1.1.1.4.1049348|65|109896458 +1.3.6.1.2.1.31.1.1.1.4.1049476|65|109898021 +1.3.6.1.2.1.31.1.1.1.4.1049604|65|109898760 +1.3.6.1.2.1.31.1.1.1.4.1049732|65|109897923 +1.3.6.1.2.1.31.1.1.1.4.1049860|65|109866211 +1.3.6.1.2.1.31.1.1.1.4.1049988|65|109861283 +1.3.6.1.2.1.31.1.1.1.4.1050116|65|109890774 +1.3.6.1.2.1.31.1.1.1.4.1050244|65|109896766 +1.3.6.1.2.1.31.1.1.1.4.1050372|65|109901292 +1.3.6.1.2.1.31.1.1.1.4.1050500|65|109898023 +1.3.6.1.2.1.31.1.1.1.4.1050628|65|0 +1.3.6.1.2.1.31.1.1.1.4.1050756|65|0 +1.3.6.1.2.1.31.1.1.1.4.1050884|65|0 +1.3.6.1.2.1.31.1.1.1.4.1051012|65|0 +1.3.6.1.2.1.31.1.1.1.4.1051140|65|0 +1.3.6.1.2.1.31.1.1.1.4.1051268|65|0 +1.3.6.1.2.1.31.1.1.1.4.1051396|65|0 +1.3.6.1.2.1.31.1.1.1.4.1051524|65|0 +1.3.6.1.2.1.31.1.1.1.4.1051652|65|0 +1.3.6.1.2.1.31.1.1.1.4.1051780|65|0 +1.3.6.1.2.1.31.1.1.1.4.1051908|65|0 +1.3.6.1.2.1.31.1.1.1.4.1052036|65|0 +1.3.6.1.2.1.31.1.1.1.4.1052164|65|0 +1.3.6.1.2.1.31.1.1.1.4.1052292|65|0 +1.3.6.1.2.1.31.1.1.1.4.1052420|65|0 +1.3.6.1.2.1.31.1.1.1.4.1052548|65|0 +1.3.6.1.2.1.31.1.1.1.4.1052677|65|127644530 +1.3.6.1.2.1.31.1.1.1.4.1053189|65|1636853 +1.3.6.1.2.1.31.1.1.1.4.1053701|65|0 +1.3.6.1.2.1.31.1.1.1.4.1054213|65|0 +1.3.6.1.2.1.31.1.1.1.4.1054724|65|0 +1.3.6.1.2.1.31.1.1.1.4.1054852|65|0 +1.3.6.1.2.1.31.1.1.1.4.1054980|65|0 +1.3.6.1.2.1.31.1.1.1.4.1055108|65|0 +1.3.6.1.2.1.31.1.1.1.4.7340033|65|0 +1.3.6.1.2.1.31.1.1.1.4.1233125376|65|0 +1.3.6.1.2.1.31.1.1.1.4.1258291712|65|109867832 +1.3.6.1.2.1.31.1.1.1.4.1258292224|65|109898621 +1.3.6.1.2.1.31.1.1.1.4.1258292736|65|109874987 +1.3.6.1.2.1.31.1.1.1.4.1258293248|65|109883658 +1.3.6.1.2.1.31.1.1.1.4.1258293760|65|109898521 +1.3.6.1.2.1.31.1.1.1.4.1258294272|65|109898770 +1.3.6.1.2.1.31.1.1.1.4.1258294784|65|109896458 +1.3.6.1.2.1.31.1.1.1.4.1258295296|65|109898021 +1.3.6.1.2.1.31.1.1.1.4.1258295808|65|109898760 +1.3.6.1.2.1.31.1.1.1.4.1258296320|65|109897923 +1.3.6.1.2.1.31.1.1.1.4.1258296832|65|109866211 +1.3.6.1.2.1.31.1.1.1.4.1258297344|65|109861283 +1.3.6.1.2.1.31.1.1.1.4.1258297856|65|109890774 +1.3.6.1.2.1.31.1.1.1.4.1258298368|65|109896766 +1.3.6.1.2.1.31.1.1.1.4.1258298880|65|109901292 +1.3.6.1.2.1.31.1.1.1.4.1258299392|65|109898023 +1.3.6.1.2.1.31.1.1.1.4.1258308096|65|127644530 +1.3.6.1.2.1.31.1.1.1.4.1258310144|65|1636853 +1.3.6.1.2.1.31.1.1.1.4.1275068928|65|0 +1.3.6.1.2.1.31.1.1.1.4.1275119616|65|0 +1.3.6.1.2.1.31.1.1.1.4.1275593728|65|0 +1.3.6.1.2.1.31.1.1.1.4.1275595264|65|0 +1.3.6.1.2.1.31.1.1.1.4.1275595776|65|0 +1.3.6.1.2.1.31.1.1.1.4.1275596288|65|0 +1.3.6.1.2.1.31.1.1.1.4.1275596800|65|0 +1.3.6.1.2.1.31.1.1.1.4.1275597312|65|0 +1.3.6.1.2.1.31.1.1.1.5.1048580|65|44542552 +1.3.6.1.2.1.31.1.1.1.5.1048708|65|44546259 +1.3.6.1.2.1.31.1.1.1.5.1048836|65|44546804 +1.3.6.1.2.1.31.1.1.1.5.1048964|65|44534436 +1.3.6.1.2.1.31.1.1.1.5.1049092|65|44545691 +1.3.6.1.2.1.31.1.1.1.5.1049220|65|44547598 +1.3.6.1.2.1.31.1.1.1.5.1049348|65|44544912 +1.3.6.1.2.1.31.1.1.1.5.1049476|65|44545212 +1.3.6.1.2.1.31.1.1.1.5.1049604|65|44547528 +1.3.6.1.2.1.31.1.1.1.5.1049732|65|44546063 +1.3.6.1.2.1.31.1.1.1.5.1049860|65|44540724 +1.3.6.1.2.1.31.1.1.1.5.1049988|65|44534543 +1.3.6.1.2.1.31.1.1.1.5.1050116|65|44543452 +1.3.6.1.2.1.31.1.1.1.5.1050244|65|44545872 +1.3.6.1.2.1.31.1.1.1.5.1050372|65|44545215 +1.3.6.1.2.1.31.1.1.1.5.1050500|65|43961920 +1.3.6.1.2.1.31.1.1.1.5.1050628|65|0 +1.3.6.1.2.1.31.1.1.1.5.1050756|65|0 +1.3.6.1.2.1.31.1.1.1.5.1050884|65|0 +1.3.6.1.2.1.31.1.1.1.5.1051012|65|0 +1.3.6.1.2.1.31.1.1.1.5.1051140|65|0 +1.3.6.1.2.1.31.1.1.1.5.1051268|65|0 +1.3.6.1.2.1.31.1.1.1.5.1051396|65|0 +1.3.6.1.2.1.31.1.1.1.5.1051524|65|0 +1.3.6.1.2.1.31.1.1.1.5.1051652|65|0 +1.3.6.1.2.1.31.1.1.1.5.1051780|65|0 +1.3.6.1.2.1.31.1.1.1.5.1051908|65|0 +1.3.6.1.2.1.31.1.1.1.5.1052036|65|0 +1.3.6.1.2.1.31.1.1.1.5.1052164|65|0 +1.3.6.1.2.1.31.1.1.1.5.1052292|65|0 +1.3.6.1.2.1.31.1.1.1.5.1052420|65|0 +1.3.6.1.2.1.31.1.1.1.5.1052548|65|0 +1.3.6.1.2.1.31.1.1.1.5.1052677|65|44547598 +1.3.6.1.2.1.31.1.1.1.5.1053189|65|642784 +1.3.6.1.2.1.31.1.1.1.5.1053701|65|0 +1.3.6.1.2.1.31.1.1.1.5.1054213|65|0 +1.3.6.1.2.1.31.1.1.1.5.1054724|65|0 +1.3.6.1.2.1.31.1.1.1.5.1054852|65|0 +1.3.6.1.2.1.31.1.1.1.5.1054980|65|0 +1.3.6.1.2.1.31.1.1.1.5.1055108|65|0 +1.3.6.1.2.1.31.1.1.1.5.7340033|65|0 +1.3.6.1.2.1.31.1.1.1.5.1233125376|65|0 +1.3.6.1.2.1.31.1.1.1.5.1258291712|65|44542552 +1.3.6.1.2.1.31.1.1.1.5.1258292224|65|44546259 +1.3.6.1.2.1.31.1.1.1.5.1258292736|65|44546804 +1.3.6.1.2.1.31.1.1.1.5.1258293248|65|44534436 +1.3.6.1.2.1.31.1.1.1.5.1258293760|65|44545691 +1.3.6.1.2.1.31.1.1.1.5.1258294272|65|44547598 +1.3.6.1.2.1.31.1.1.1.5.1258294784|65|44544912 +1.3.6.1.2.1.31.1.1.1.5.1258295296|65|44545212 +1.3.6.1.2.1.31.1.1.1.5.1258295808|65|44547528 +1.3.6.1.2.1.31.1.1.1.5.1258296320|65|44546063 +1.3.6.1.2.1.31.1.1.1.5.1258296832|65|44540724 +1.3.6.1.2.1.31.1.1.1.5.1258297344|65|44534543 +1.3.6.1.2.1.31.1.1.1.5.1258297856|65|44543452 +1.3.6.1.2.1.31.1.1.1.5.1258298368|65|44545872 +1.3.6.1.2.1.31.1.1.1.5.1258298880|65|44545215 +1.3.6.1.2.1.31.1.1.1.5.1258299392|65|43961920 +1.3.6.1.2.1.31.1.1.1.5.1258308096|65|44547598 +1.3.6.1.2.1.31.1.1.1.5.1258310144|65|642784 +1.3.6.1.2.1.31.1.1.1.5.1275068928|65|0 +1.3.6.1.2.1.31.1.1.1.5.1275119616|65|0 +1.3.6.1.2.1.31.1.1.1.5.1275593728|65|0 +1.3.6.1.2.1.31.1.1.1.5.1275595264|65|0 +1.3.6.1.2.1.31.1.1.1.5.1275595776|65|0 +1.3.6.1.2.1.31.1.1.1.5.1275596288|65|0 +1.3.6.1.2.1.31.1.1.1.5.1275596800|65|0 +1.3.6.1.2.1.31.1.1.1.5.1275597312|65|0 +1.3.6.1.2.1.31.1.1.1.6.1048580|70|1225426338468 +1.3.6.1.2.1.31.1.1.1.6.1048708|70|716682107396 +1.3.6.1.2.1.31.1.1.1.6.1048836|70|4842137414707 +1.3.6.1.2.1.31.1.1.1.6.1048964|70|7517753139793 +1.3.6.1.2.1.31.1.1.1.6.1049092|70|7127173838517 +1.3.6.1.2.1.31.1.1.1.6.1049220|70|604566317 +1.3.6.1.2.1.31.1.1.1.6.1049348|70|13274078359947 +1.3.6.1.2.1.31.1.1.1.6.1049476|70|4650288576079 +1.3.6.1.2.1.31.1.1.1.6.1049604|70|12850530597480 +1.3.6.1.2.1.31.1.1.1.6.1049732|70|4153823051365 +1.3.6.1.2.1.31.1.1.1.6.1049860|70|3645934079721 +1.3.6.1.2.1.31.1.1.1.6.1049988|70|10566750564621 +1.3.6.1.2.1.31.1.1.1.6.1050116|70|13479899984817 +1.3.6.1.2.1.31.1.1.1.6.1050244|70|58800299882012 +1.3.6.1.2.1.31.1.1.1.6.1050372|70|19781439756189 +1.3.6.1.2.1.31.1.1.1.6.1050500|70|27553860870328 +1.3.6.1.2.1.31.1.1.1.6.1050628|70|0 +1.3.6.1.2.1.31.1.1.1.6.1050756|70|0 +1.3.6.1.2.1.31.1.1.1.6.1050884|70|0 +1.3.6.1.2.1.31.1.1.1.6.1051012|70|0 +1.3.6.1.2.1.31.1.1.1.6.1051140|70|0 +1.3.6.1.2.1.31.1.1.1.6.1051268|70|0 +1.3.6.1.2.1.31.1.1.1.6.1051396|70|0 +1.3.6.1.2.1.31.1.1.1.6.1051524|70|0 +1.3.6.1.2.1.31.1.1.1.6.1051652|70|0 +1.3.6.1.2.1.31.1.1.1.6.1051780|70|0 +1.3.6.1.2.1.31.1.1.1.6.1051908|70|0 +1.3.6.1.2.1.31.1.1.1.6.1052036|70|0 +1.3.6.1.2.1.31.1.1.1.6.1052164|70|0 +1.3.6.1.2.1.31.1.1.1.6.1052292|70|0 +1.3.6.1.2.1.31.1.1.1.6.1052420|70|0 +1.3.6.1.2.1.31.1.1.1.6.1052548|70|0 +1.3.6.1.2.1.31.1.1.1.6.1052677|70|12992459032 +1.3.6.1.2.1.31.1.1.1.6.1053189|70|198927601195440 +1.3.6.1.2.1.31.1.1.1.6.1053701|70|0 +1.3.6.1.2.1.31.1.1.1.6.1054213|70|0 +1.3.6.1.2.1.31.1.1.1.6.1054724|70|0 +1.3.6.1.2.1.31.1.1.1.6.1054852|70|0 +1.3.6.1.2.1.31.1.1.1.6.1054980|70|0 +1.3.6.1.2.1.31.1.1.1.6.1055108|70|0 +1.3.6.1.2.1.31.1.1.1.6.7340033|70|242284140 +1.3.6.1.2.1.31.1.1.1.6.1233125376|70|0 +1.3.6.1.2.1.31.1.1.1.6.1258291712|70|1225426338468 +1.3.6.1.2.1.31.1.1.1.6.1258292224|70|716682107396 +1.3.6.1.2.1.31.1.1.1.6.1258292736|70|4842137414707 +1.3.6.1.2.1.31.1.1.1.6.1258293248|70|7517753139793 +1.3.6.1.2.1.31.1.1.1.6.1258293760|70|7127173838517 +1.3.6.1.2.1.31.1.1.1.6.1258294272|70|604566317 +1.3.6.1.2.1.31.1.1.1.6.1258294784|70|13274078359947 +1.3.6.1.2.1.31.1.1.1.6.1258295296|70|4650288576079 +1.3.6.1.2.1.31.1.1.1.6.1258295808|70|12850530597480 +1.3.6.1.2.1.31.1.1.1.6.1258296320|70|4153823051365 +1.3.6.1.2.1.31.1.1.1.6.1258296832|70|3645934079721 +1.3.6.1.2.1.31.1.1.1.6.1258297344|70|10566750564621 +1.3.6.1.2.1.31.1.1.1.6.1258297856|70|13479899984817 +1.3.6.1.2.1.31.1.1.1.6.1258298368|70|58800299882012 +1.3.6.1.2.1.31.1.1.1.6.1258298880|70|19781439756189 +1.3.6.1.2.1.31.1.1.1.6.1258299392|70|27553860870328 +1.3.6.1.2.1.31.1.1.1.6.1258308096|70|12992459032 +1.3.6.1.2.1.31.1.1.1.6.1258310144|70|198927601195440 +1.3.6.1.2.1.31.1.1.1.6.1275068928|70|0 +1.3.6.1.2.1.31.1.1.1.6.1275119616|70|0 +1.3.6.1.2.1.31.1.1.1.6.1275593728|70|0 +1.3.6.1.2.1.31.1.1.1.6.1275595264|70|0 +1.3.6.1.2.1.31.1.1.1.6.1275595776|70|0 +1.3.6.1.2.1.31.1.1.1.6.1275596288|70|0 +1.3.6.1.2.1.31.1.1.1.6.1275596800|70|0 +1.3.6.1.2.1.31.1.1.1.6.1275597312|70|0 +1.3.6.1.2.1.31.1.1.1.7.1048580|70|576675801 +1.3.6.1.2.1.31.1.1.1.7.1048708|70|248150374 +1.3.6.1.2.1.31.1.1.1.7.1048836|70|1692597632 +1.3.6.1.2.1.31.1.1.1.7.1048964|70|2076112964 +1.3.6.1.2.1.31.1.1.1.7.1049092|70|3459389181 +1.3.6.1.2.1.31.1.1.1.7.1049220|70|1500041 +1.3.6.1.2.1.31.1.1.1.7.1049348|70|7009354522 +1.3.6.1.2.1.31.1.1.1.7.1049476|70|2771252182 +1.3.6.1.2.1.31.1.1.1.7.1049604|70|5595892623 +1.3.6.1.2.1.31.1.1.1.7.1049732|70|1462368965 +1.3.6.1.2.1.31.1.1.1.7.1049860|70|1552781195 +1.3.6.1.2.1.31.1.1.1.7.1049988|70|5068273002 +1.3.6.1.2.1.31.1.1.1.7.1050116|70|4597166410 +1.3.6.1.2.1.31.1.1.1.7.1050244|70|10370555621 +1.3.6.1.2.1.31.1.1.1.7.1050372|70|4757552708 +1.3.6.1.2.1.31.1.1.1.7.1050500|70|8152163060 +1.3.6.1.2.1.31.1.1.1.7.1050628|70|0 +1.3.6.1.2.1.31.1.1.1.7.1050756|70|0 +1.3.6.1.2.1.31.1.1.1.7.1050884|70|0 +1.3.6.1.2.1.31.1.1.1.7.1051012|70|0 +1.3.6.1.2.1.31.1.1.1.7.1051140|70|0 +1.3.6.1.2.1.31.1.1.1.7.1051268|70|0 +1.3.6.1.2.1.31.1.1.1.7.1051396|70|0 +1.3.6.1.2.1.31.1.1.1.7.1051524|70|0 +1.3.6.1.2.1.31.1.1.1.7.1051652|70|0 +1.3.6.1.2.1.31.1.1.1.7.1051780|70|0 +1.3.6.1.2.1.31.1.1.1.7.1051908|70|0 +1.3.6.1.2.1.31.1.1.1.7.1052036|70|0 +1.3.6.1.2.1.31.1.1.1.7.1052164|70|0 +1.3.6.1.2.1.31.1.1.1.7.1052292|70|0 +1.3.6.1.2.1.31.1.1.1.7.1052420|70|0 +1.3.6.1.2.1.31.1.1.1.7.1052548|70|0 +1.3.6.1.2.1.31.1.1.1.7.1052677|70|8610834 +1.3.6.1.2.1.31.1.1.1.7.1053189|70|69828395926 +1.3.6.1.2.1.31.1.1.1.7.1053701|70|0 +1.3.6.1.2.1.31.1.1.1.7.1054213|70|0 +1.3.6.1.2.1.31.1.1.1.7.1054724|70|0 +1.3.6.1.2.1.31.1.1.1.7.1054852|70|0 +1.3.6.1.2.1.31.1.1.1.7.1054980|70|0 +1.3.6.1.2.1.31.1.1.1.7.1055108|70|0 +1.3.6.1.2.1.31.1.1.1.7.7340033|70|2272700 +1.3.6.1.2.1.31.1.1.1.7.1233125376|70|0 +1.3.6.1.2.1.31.1.1.1.7.1258291712|70|576675801 +1.3.6.1.2.1.31.1.1.1.7.1258292224|70|248150374 +1.3.6.1.2.1.31.1.1.1.7.1258292736|70|1692597632 +1.3.6.1.2.1.31.1.1.1.7.1258293248|70|2076112964 +1.3.6.1.2.1.31.1.1.1.7.1258293760|70|3459389181 +1.3.6.1.2.1.31.1.1.1.7.1258294272|70|1500041 +1.3.6.1.2.1.31.1.1.1.7.1258294784|70|7009354522 +1.3.6.1.2.1.31.1.1.1.7.1258295296|70|2771252182 +1.3.6.1.2.1.31.1.1.1.7.1258295808|70|5595892623 +1.3.6.1.2.1.31.1.1.1.7.1258296320|70|1462368965 +1.3.6.1.2.1.31.1.1.1.7.1258296832|70|1552781195 +1.3.6.1.2.1.31.1.1.1.7.1258297344|70|5068273002 +1.3.6.1.2.1.31.1.1.1.7.1258297856|70|4597166410 +1.3.6.1.2.1.31.1.1.1.7.1258298368|70|10370555621 +1.3.6.1.2.1.31.1.1.1.7.1258298880|70|4757552708 +1.3.6.1.2.1.31.1.1.1.7.1258299392|70|8152163060 +1.3.6.1.2.1.31.1.1.1.7.1258308096|70|8610834 +1.3.6.1.2.1.31.1.1.1.7.1258310144|70|69828395926 +1.3.6.1.2.1.31.1.1.1.7.1275068928|70|0 +1.3.6.1.2.1.31.1.1.1.7.1275119616|70|0 +1.3.6.1.2.1.31.1.1.1.7.1275593728|70|0 +1.3.6.1.2.1.31.1.1.1.7.1275595264|70|0 +1.3.6.1.2.1.31.1.1.1.7.1275595776|70|0 +1.3.6.1.2.1.31.1.1.1.7.1275596288|70|0 +1.3.6.1.2.1.31.1.1.1.7.1275596800|70|0 +1.3.6.1.2.1.31.1.1.1.7.1275597312|70|0 +1.3.6.1.2.1.31.1.1.1.8.1048580|70|104034 +1.3.6.1.2.1.31.1.1.1.8.1048708|70|26806 +1.3.6.1.2.1.31.1.1.1.8.1048836|70|148490 +1.3.6.1.2.1.31.1.1.1.8.1048964|70|130137 +1.3.6.1.2.1.31.1.1.1.8.1049092|70|83676 +1.3.6.1.2.1.31.1.1.1.8.1049220|70|42772 +1.3.6.1.2.1.31.1.1.1.8.1049348|70|111111 +1.3.6.1.2.1.31.1.1.1.8.1049476|70|91510 +1.3.6.1.2.1.31.1.1.1.8.1049604|70|36987 +1.3.6.1.2.1.31.1.1.1.8.1049732|70|105568 +1.3.6.1.2.1.31.1.1.1.8.1049860|70|141784 +1.3.6.1.2.1.31.1.1.1.8.1049988|70|172520 +1.3.6.1.2.1.31.1.1.1.8.1050116|70|85248 +1.3.6.1.2.1.31.1.1.1.8.1050244|70|80264 +1.3.6.1.2.1.31.1.1.1.8.1050372|70|84812 +1.3.6.1.2.1.31.1.1.1.8.1050500|70|79003 +1.3.6.1.2.1.31.1.1.1.8.1050628|70|0 +1.3.6.1.2.1.31.1.1.1.8.1050756|70|0 +1.3.6.1.2.1.31.1.1.1.8.1050884|70|0 +1.3.6.1.2.1.31.1.1.1.8.1051012|70|0 +1.3.6.1.2.1.31.1.1.1.8.1051140|70|0 +1.3.6.1.2.1.31.1.1.1.8.1051268|70|0 +1.3.6.1.2.1.31.1.1.1.8.1051396|70|0 +1.3.6.1.2.1.31.1.1.1.8.1051524|70|0 +1.3.6.1.2.1.31.1.1.1.8.1051652|70|0 +1.3.6.1.2.1.31.1.1.1.8.1051780|70|0 +1.3.6.1.2.1.31.1.1.1.8.1051908|70|0 +1.3.6.1.2.1.31.1.1.1.8.1052036|70|0 +1.3.6.1.2.1.31.1.1.1.8.1052164|70|0 +1.3.6.1.2.1.31.1.1.1.8.1052292|70|0 +1.3.6.1.2.1.31.1.1.1.8.1052420|70|0 +1.3.6.1.2.1.31.1.1.1.8.1052548|70|0 +1.3.6.1.2.1.31.1.1.1.8.1052677|70|53927873 +1.3.6.1.2.1.31.1.1.1.8.1053189|70|114816720 +1.3.6.1.2.1.31.1.1.1.8.1053701|70|0 +1.3.6.1.2.1.31.1.1.1.8.1054213|70|0 +1.3.6.1.2.1.31.1.1.1.8.1054724|70|0 +1.3.6.1.2.1.31.1.1.1.8.1054852|70|0 +1.3.6.1.2.1.31.1.1.1.8.1054980|70|0 +1.3.6.1.2.1.31.1.1.1.8.1055108|70|0 +1.3.6.1.2.1.31.1.1.1.8.7340033|70|85988 +1.3.6.1.2.1.31.1.1.1.8.1233125376|70|0 +1.3.6.1.2.1.31.1.1.1.8.1258291712|70|104034 +1.3.6.1.2.1.31.1.1.1.8.1258292224|70|26806 +1.3.6.1.2.1.31.1.1.1.8.1258292736|70|148490 +1.3.6.1.2.1.31.1.1.1.8.1258293248|70|130137 +1.3.6.1.2.1.31.1.1.1.8.1258293760|70|83676 +1.3.6.1.2.1.31.1.1.1.8.1258294272|70|42772 +1.3.6.1.2.1.31.1.1.1.8.1258294784|70|111111 +1.3.6.1.2.1.31.1.1.1.8.1258295296|70|91510 +1.3.6.1.2.1.31.1.1.1.8.1258295808|70|36987 +1.3.6.1.2.1.31.1.1.1.8.1258296320|70|105568 +1.3.6.1.2.1.31.1.1.1.8.1258296832|70|141784 +1.3.6.1.2.1.31.1.1.1.8.1258297344|70|172520 +1.3.6.1.2.1.31.1.1.1.8.1258297856|70|85248 +1.3.6.1.2.1.31.1.1.1.8.1258298368|70|80264 +1.3.6.1.2.1.31.1.1.1.8.1258298880|70|84812 +1.3.6.1.2.1.31.1.1.1.8.1258299392|70|79003 +1.3.6.1.2.1.31.1.1.1.8.1258308096|70|53927873 +1.3.6.1.2.1.31.1.1.1.8.1258310144|70|114816720 +1.3.6.1.2.1.31.1.1.1.8.1275068928|70|0 +1.3.6.1.2.1.31.1.1.1.8.1275119616|70|0 +1.3.6.1.2.1.31.1.1.1.8.1275593728|70|0 +1.3.6.1.2.1.31.1.1.1.8.1275595264|70|0 +1.3.6.1.2.1.31.1.1.1.8.1275595776|70|0 +1.3.6.1.2.1.31.1.1.1.8.1275596288|70|0 +1.3.6.1.2.1.31.1.1.1.8.1275596800|70|0 +1.3.6.1.2.1.31.1.1.1.8.1275597312|70|0 +1.3.6.1.2.1.31.1.1.1.9.1048580|70|5046 +1.3.6.1.2.1.31.1.1.1.9.1048708|70|1339 +1.3.6.1.2.1.31.1.1.1.9.1048836|70|794 +1.3.6.1.2.1.31.1.1.1.9.1048964|70|13162 +1.3.6.1.2.1.31.1.1.1.9.1049092|70|1907 +1.3.6.1.2.1.31.1.1.1.9.1049220|70|0 +1.3.6.1.2.1.31.1.1.1.9.1049348|70|2687 +1.3.6.1.2.1.31.1.1.1.9.1049476|70|2386 +1.3.6.1.2.1.31.1.1.1.9.1049604|70|82 +1.3.6.1.2.1.31.1.1.1.9.1049732|70|1535 +1.3.6.1.2.1.31.1.1.1.9.1049860|70|6874 +1.3.6.1.2.1.31.1.1.1.9.1049988|70|13055 +1.3.6.1.2.1.31.1.1.1.9.1050116|70|4146 +1.3.6.1.2.1.31.1.1.1.9.1050244|70|1726 +1.3.6.1.2.1.31.1.1.1.9.1050372|70|2386 +1.3.6.1.2.1.31.1.1.1.9.1050500|70|585683 +1.3.6.1.2.1.31.1.1.1.9.1050628|70|0 +1.3.6.1.2.1.31.1.1.1.9.1050756|70|0 +1.3.6.1.2.1.31.1.1.1.9.1050884|70|0 +1.3.6.1.2.1.31.1.1.1.9.1051012|70|0 +1.3.6.1.2.1.31.1.1.1.9.1051140|70|0 +1.3.6.1.2.1.31.1.1.1.9.1051268|70|0 +1.3.6.1.2.1.31.1.1.1.9.1051396|70|0 +1.3.6.1.2.1.31.1.1.1.9.1051524|70|0 +1.3.6.1.2.1.31.1.1.1.9.1051652|70|0 +1.3.6.1.2.1.31.1.1.1.9.1051780|70|0 +1.3.6.1.2.1.31.1.1.1.9.1051908|70|0 +1.3.6.1.2.1.31.1.1.1.9.1052036|70|0 +1.3.6.1.2.1.31.1.1.1.9.1052164|70|0 +1.3.6.1.2.1.31.1.1.1.9.1052292|70|0 +1.3.6.1.2.1.31.1.1.1.9.1052420|70|0 +1.3.6.1.2.1.31.1.1.1.9.1052548|70|0 +1.3.6.1.2.1.31.1.1.1.9.1052677|70|39165797 +1.3.6.1.2.1.31.1.1.1.9.1053189|70|309563304 +1.3.6.1.2.1.31.1.1.1.9.1053701|70|0 +1.3.6.1.2.1.31.1.1.1.9.1054213|70|0 +1.3.6.1.2.1.31.1.1.1.9.1054724|70|0 +1.3.6.1.2.1.31.1.1.1.9.1054852|70|0 +1.3.6.1.2.1.31.1.1.1.9.1054980|70|0 +1.3.6.1.2.1.31.1.1.1.9.1055108|70|0 +1.3.6.1.2.1.31.1.1.1.9.7340033|70|0 +1.3.6.1.2.1.31.1.1.1.9.1233125376|70|0 +1.3.6.1.2.1.31.1.1.1.9.1258291712|70|5046 +1.3.6.1.2.1.31.1.1.1.9.1258292224|70|1339 +1.3.6.1.2.1.31.1.1.1.9.1258292736|70|794 +1.3.6.1.2.1.31.1.1.1.9.1258293248|70|13162 +1.3.6.1.2.1.31.1.1.1.9.1258293760|70|1907 +1.3.6.1.2.1.31.1.1.1.9.1258294272|70|0 +1.3.6.1.2.1.31.1.1.1.9.1258294784|70|2687 +1.3.6.1.2.1.31.1.1.1.9.1258295296|70|2386 +1.3.6.1.2.1.31.1.1.1.9.1258295808|70|82 +1.3.6.1.2.1.31.1.1.1.9.1258296320|70|1535 +1.3.6.1.2.1.31.1.1.1.9.1258296832|70|6874 +1.3.6.1.2.1.31.1.1.1.9.1258297344|70|13055 +1.3.6.1.2.1.31.1.1.1.9.1258297856|70|4146 +1.3.6.1.2.1.31.1.1.1.9.1258298368|70|1726 +1.3.6.1.2.1.31.1.1.1.9.1258298880|70|2386 +1.3.6.1.2.1.31.1.1.1.9.1258299392|70|585683 +1.3.6.1.2.1.31.1.1.1.9.1258308096|70|39165797 +1.3.6.1.2.1.31.1.1.1.9.1258310144|70|309563304 +1.3.6.1.2.1.31.1.1.1.9.1275068928|70|0 +1.3.6.1.2.1.31.1.1.1.9.1275119616|70|0 +1.3.6.1.2.1.31.1.1.1.9.1275593728|70|0 +1.3.6.1.2.1.31.1.1.1.9.1275595264|70|0 +1.3.6.1.2.1.31.1.1.1.9.1275595776|70|0 +1.3.6.1.2.1.31.1.1.1.9.1275596288|70|0 +1.3.6.1.2.1.31.1.1.1.9.1275596800|70|0 +1.3.6.1.2.1.31.1.1.1.9.1275597312|70|0 +1.3.6.1.2.1.31.1.1.1.10.1048580|70|5205815317186 +1.3.6.1.2.1.31.1.1.1.10.1048708|70|8012701954664 +1.3.6.1.2.1.31.1.1.1.10.1048836|70|3771530461245 +1.3.6.1.2.1.31.1.1.1.10.1048964|70|10748360635874 +1.3.6.1.2.1.31.1.1.1.10.1049092|70|9191465420324 +1.3.6.1.2.1.31.1.1.1.10.1049220|70|17832373915 +1.3.6.1.2.1.31.1.1.1.10.1049348|70|8370313577419 +1.3.6.1.2.1.31.1.1.1.10.1049476|70|10668669425423 +1.3.6.1.2.1.31.1.1.1.10.1049604|70|12140822538583 +1.3.6.1.2.1.31.1.1.1.10.1049732|70|7322756476825 +1.3.6.1.2.1.31.1.1.1.10.1049860|70|10420120286694 +1.3.6.1.2.1.31.1.1.1.10.1049988|70|40737429841366 +1.3.6.1.2.1.31.1.1.1.10.1050116|70|11462371683990 +1.3.6.1.2.1.31.1.1.1.10.1050244|70|23642716501990 +1.3.6.1.2.1.31.1.1.1.10.1050372|70|22458748198046 +1.3.6.1.2.1.31.1.1.1.10.1050500|70|15862920647267 +1.3.6.1.2.1.31.1.1.1.10.1050628|70|0 +1.3.6.1.2.1.31.1.1.1.10.1050756|70|0 +1.3.6.1.2.1.31.1.1.1.10.1050884|70|0 +1.3.6.1.2.1.31.1.1.1.10.1051012|70|0 +1.3.6.1.2.1.31.1.1.1.10.1051140|70|0 +1.3.6.1.2.1.31.1.1.1.10.1051268|70|0 +1.3.6.1.2.1.31.1.1.1.10.1051396|70|0 +1.3.6.1.2.1.31.1.1.1.10.1051524|70|0 +1.3.6.1.2.1.31.1.1.1.10.1051652|70|0 +1.3.6.1.2.1.31.1.1.1.10.1051780|70|0 +1.3.6.1.2.1.31.1.1.1.10.1051908|70|0 +1.3.6.1.2.1.31.1.1.1.10.1052036|70|0 +1.3.6.1.2.1.31.1.1.1.10.1052164|70|0 +1.3.6.1.2.1.31.1.1.1.10.1052292|70|0 +1.3.6.1.2.1.31.1.1.1.10.1052420|70|0 +1.3.6.1.2.1.31.1.1.1.10.1052548|70|0 +1.3.6.1.2.1.31.1.1.1.10.1052677|70|20105987690 +1.3.6.1.2.1.31.1.1.1.10.1053189|70|189311564292936 +1.3.6.1.2.1.31.1.1.1.10.1053701|70|0 +1.3.6.1.2.1.31.1.1.1.10.1054213|70|0 +1.3.6.1.2.1.31.1.1.1.10.1054724|70|0 +1.3.6.1.2.1.31.1.1.1.10.1054852|70|0 +1.3.6.1.2.1.31.1.1.1.10.1054980|70|0 +1.3.6.1.2.1.31.1.1.1.10.1055108|70|0 +1.3.6.1.2.1.31.1.1.1.10.7340033|70|375614394 +1.3.6.1.2.1.31.1.1.1.10.1233125376|70|0 +1.3.6.1.2.1.31.1.1.1.10.1258291712|70|5205815317186 +1.3.6.1.2.1.31.1.1.1.10.1258292224|70|8012701954664 +1.3.6.1.2.1.31.1.1.1.10.1258292736|70|3771530461245 +1.3.6.1.2.1.31.1.1.1.10.1258293248|70|10748360635874 +1.3.6.1.2.1.31.1.1.1.10.1258293760|70|9191465420324 +1.3.6.1.2.1.31.1.1.1.10.1258294272|70|17832373915 +1.3.6.1.2.1.31.1.1.1.10.1258294784|70|8370313577419 +1.3.6.1.2.1.31.1.1.1.10.1258295296|70|10668669425423 +1.3.6.1.2.1.31.1.1.1.10.1258295808|70|12140822538583 +1.3.6.1.2.1.31.1.1.1.10.1258296320|70|7322756476825 +1.3.6.1.2.1.31.1.1.1.10.1258296832|70|10420120286694 +1.3.6.1.2.1.31.1.1.1.10.1258297344|70|40737429841366 +1.3.6.1.2.1.31.1.1.1.10.1258297856|70|11462371683990 +1.3.6.1.2.1.31.1.1.1.10.1258298368|70|23642716501990 +1.3.6.1.2.1.31.1.1.1.10.1258298880|70|22458748198046 +1.3.6.1.2.1.31.1.1.1.10.1258299392|70|15862920647267 +1.3.6.1.2.1.31.1.1.1.10.1258308096|70|20105987690 +1.3.6.1.2.1.31.1.1.1.10.1258310144|70|189311564292936 +1.3.6.1.2.1.31.1.1.1.10.1275068928|70|0 +1.3.6.1.2.1.31.1.1.1.10.1275119616|70|0 +1.3.6.1.2.1.31.1.1.1.10.1275593728|70|0 +1.3.6.1.2.1.31.1.1.1.10.1275595264|70|0 +1.3.6.1.2.1.31.1.1.1.10.1275595776|70|0 +1.3.6.1.2.1.31.1.1.1.10.1275596288|70|0 +1.3.6.1.2.1.31.1.1.1.10.1275596800|70|0 +1.3.6.1.2.1.31.1.1.1.10.1275597312|70|0 +1.3.6.1.2.1.31.1.1.1.11.1048580|70|1159816852 +1.3.6.1.2.1.31.1.1.1.11.1048708|70|2162499925 +1.3.6.1.2.1.31.1.1.1.11.1048836|70|1921470192 +1.3.6.1.2.1.31.1.1.1.11.1048964|70|3073482639 +1.3.6.1.2.1.31.1.1.1.11.1049092|70|3768699250 +1.3.6.1.2.1.31.1.1.1.11.1049220|70|9596048 +1.3.6.1.2.1.31.1.1.1.11.1049348|70|5235355813 +1.3.6.1.2.1.31.1.1.1.11.1049476|70|3635971763 +1.3.6.1.2.1.31.1.1.1.11.1049604|70|5413053677 +1.3.6.1.2.1.31.1.1.1.11.1049732|70|2282263728 +1.3.6.1.2.1.31.1.1.1.11.1049860|70|2824738109 +1.3.6.1.2.1.31.1.1.1.11.1049988|70|10171493969 +1.3.6.1.2.1.31.1.1.1.11.1050116|70|4864274854 +1.3.6.1.2.1.31.1.1.1.11.1050244|70|9471617900 +1.3.6.1.2.1.31.1.1.1.11.1050372|70|7366069513 +1.3.6.1.2.1.31.1.1.1.11.1050500|70|8000484353 +1.3.6.1.2.1.31.1.1.1.11.1050628|70|0 +1.3.6.1.2.1.31.1.1.1.11.1050756|70|0 +1.3.6.1.2.1.31.1.1.1.11.1050884|70|0 +1.3.6.1.2.1.31.1.1.1.11.1051012|70|0 +1.3.6.1.2.1.31.1.1.1.11.1051140|70|0 +1.3.6.1.2.1.31.1.1.1.11.1051268|70|0 +1.3.6.1.2.1.31.1.1.1.11.1051396|70|0 +1.3.6.1.2.1.31.1.1.1.11.1051524|70|0 +1.3.6.1.2.1.31.1.1.1.11.1051652|70|0 +1.3.6.1.2.1.31.1.1.1.11.1051780|70|0 +1.3.6.1.2.1.31.1.1.1.11.1051908|70|0 +1.3.6.1.2.1.31.1.1.1.11.1052036|70|0 +1.3.6.1.2.1.31.1.1.1.11.1052164|70|0 +1.3.6.1.2.1.31.1.1.1.11.1052292|70|0 +1.3.6.1.2.1.31.1.1.1.11.1052420|70|0 +1.3.6.1.2.1.31.1.1.1.11.1052548|70|0 +1.3.6.1.2.1.31.1.1.1.11.1052677|70|7914124 +1.3.6.1.2.1.31.1.1.1.11.1053189|70|57901583925 +1.3.6.1.2.1.31.1.1.1.11.1053701|70|0 +1.3.6.1.2.1.31.1.1.1.11.1054213|70|0 +1.3.6.1.2.1.31.1.1.1.11.1054724|70|0 +1.3.6.1.2.1.31.1.1.1.11.1054852|70|0 +1.3.6.1.2.1.31.1.1.1.11.1054980|70|0 +1.3.6.1.2.1.31.1.1.1.11.1055108|70|0 +1.3.6.1.2.1.31.1.1.1.11.7340033|70|2308553 +1.3.6.1.2.1.31.1.1.1.11.1233125376|70|0 +1.3.6.1.2.1.31.1.1.1.11.1258291712|70|1159816852 +1.3.6.1.2.1.31.1.1.1.11.1258292224|70|2162499925 +1.3.6.1.2.1.31.1.1.1.11.1258292736|70|1921470192 +1.3.6.1.2.1.31.1.1.1.11.1258293248|70|3073482639 +1.3.6.1.2.1.31.1.1.1.11.1258293760|70|3768699250 +1.3.6.1.2.1.31.1.1.1.11.1258294272|70|9596048 +1.3.6.1.2.1.31.1.1.1.11.1258294784|70|5235355813 +1.3.6.1.2.1.31.1.1.1.11.1258295296|70|3635971763 +1.3.6.1.2.1.31.1.1.1.11.1258295808|70|5413053677 +1.3.6.1.2.1.31.1.1.1.11.1258296320|70|2282263728 +1.3.6.1.2.1.31.1.1.1.11.1258296832|70|2824738109 +1.3.6.1.2.1.31.1.1.1.11.1258297344|70|10171493969 +1.3.6.1.2.1.31.1.1.1.11.1258297856|70|4864274854 +1.3.6.1.2.1.31.1.1.1.11.1258298368|70|9471617900 +1.3.6.1.2.1.31.1.1.1.11.1258298880|70|7366069513 +1.3.6.1.2.1.31.1.1.1.11.1258299392|70|8000484353 +1.3.6.1.2.1.31.1.1.1.11.1258308096|70|7914124 +1.3.6.1.2.1.31.1.1.1.11.1258310144|70|57901583925 +1.3.6.1.2.1.31.1.1.1.11.1275068928|70|0 +1.3.6.1.2.1.31.1.1.1.11.1275119616|70|0 +1.3.6.1.2.1.31.1.1.1.11.1275593728|70|0 +1.3.6.1.2.1.31.1.1.1.11.1275595264|70|0 +1.3.6.1.2.1.31.1.1.1.11.1275595776|70|0 +1.3.6.1.2.1.31.1.1.1.11.1275596288|70|0 +1.3.6.1.2.1.31.1.1.1.11.1275596800|70|0 +1.3.6.1.2.1.31.1.1.1.11.1275597312|70|0 +1.3.6.1.2.1.31.1.1.1.12.1048580|70|109867832 +1.3.6.1.2.1.31.1.1.1.12.1048708|70|109898621 +1.3.6.1.2.1.31.1.1.1.12.1048836|70|109874987 +1.3.6.1.2.1.31.1.1.1.12.1048964|70|109883658 +1.3.6.1.2.1.31.1.1.1.12.1049092|70|109898521 +1.3.6.1.2.1.31.1.1.1.12.1049220|70|109898770 +1.3.6.1.2.1.31.1.1.1.12.1049348|70|109896458 +1.3.6.1.2.1.31.1.1.1.12.1049476|70|109898021 +1.3.6.1.2.1.31.1.1.1.12.1049604|70|109898760 +1.3.6.1.2.1.31.1.1.1.12.1049732|70|109897923 +1.3.6.1.2.1.31.1.1.1.12.1049860|70|109866211 +1.3.6.1.2.1.31.1.1.1.12.1049988|70|109861283 +1.3.6.1.2.1.31.1.1.1.12.1050116|70|109890774 +1.3.6.1.2.1.31.1.1.1.12.1050244|70|109896766 +1.3.6.1.2.1.31.1.1.1.12.1050372|70|109901292 +1.3.6.1.2.1.31.1.1.1.12.1050500|70|109898023 +1.3.6.1.2.1.31.1.1.1.12.1050628|70|0 +1.3.6.1.2.1.31.1.1.1.12.1050756|70|0 +1.3.6.1.2.1.31.1.1.1.12.1050884|70|0 +1.3.6.1.2.1.31.1.1.1.12.1051012|70|0 +1.3.6.1.2.1.31.1.1.1.12.1051140|70|0 +1.3.6.1.2.1.31.1.1.1.12.1051268|70|0 +1.3.6.1.2.1.31.1.1.1.12.1051396|70|0 +1.3.6.1.2.1.31.1.1.1.12.1051524|70|0 +1.3.6.1.2.1.31.1.1.1.12.1051652|70|0 +1.3.6.1.2.1.31.1.1.1.12.1051780|70|0 +1.3.6.1.2.1.31.1.1.1.12.1051908|70|0 +1.3.6.1.2.1.31.1.1.1.12.1052036|70|0 +1.3.6.1.2.1.31.1.1.1.12.1052164|70|0 +1.3.6.1.2.1.31.1.1.1.12.1052292|70|0 +1.3.6.1.2.1.31.1.1.1.12.1052420|70|0 +1.3.6.1.2.1.31.1.1.1.12.1052548|70|0 +1.3.6.1.2.1.31.1.1.1.12.1052677|70|127644530 +1.3.6.1.2.1.31.1.1.1.12.1053189|70|1636853 +1.3.6.1.2.1.31.1.1.1.12.1053701|70|0 +1.3.6.1.2.1.31.1.1.1.12.1054213|70|0 +1.3.6.1.2.1.31.1.1.1.12.1054724|70|0 +1.3.6.1.2.1.31.1.1.1.12.1054852|70|0 +1.3.6.1.2.1.31.1.1.1.12.1054980|70|0 +1.3.6.1.2.1.31.1.1.1.12.1055108|70|0 +1.3.6.1.2.1.31.1.1.1.12.7340033|70|0 +1.3.6.1.2.1.31.1.1.1.12.1233125376|70|0 +1.3.6.1.2.1.31.1.1.1.12.1258291712|70|109867832 +1.3.6.1.2.1.31.1.1.1.12.1258292224|70|109898621 +1.3.6.1.2.1.31.1.1.1.12.1258292736|70|109874987 +1.3.6.1.2.1.31.1.1.1.12.1258293248|70|109883658 +1.3.6.1.2.1.31.1.1.1.12.1258293760|70|109898521 +1.3.6.1.2.1.31.1.1.1.12.1258294272|70|109898770 +1.3.6.1.2.1.31.1.1.1.12.1258294784|70|109896458 +1.3.6.1.2.1.31.1.1.1.12.1258295296|70|109898021 +1.3.6.1.2.1.31.1.1.1.12.1258295808|70|109898760 +1.3.6.1.2.1.31.1.1.1.12.1258296320|70|109897923 +1.3.6.1.2.1.31.1.1.1.12.1258296832|70|109866211 +1.3.6.1.2.1.31.1.1.1.12.1258297344|70|109861283 +1.3.6.1.2.1.31.1.1.1.12.1258297856|70|109890774 +1.3.6.1.2.1.31.1.1.1.12.1258298368|70|109896766 +1.3.6.1.2.1.31.1.1.1.12.1258298880|70|109901292 +1.3.6.1.2.1.31.1.1.1.12.1258299392|70|109898023 +1.3.6.1.2.1.31.1.1.1.12.1258308096|70|127644530 +1.3.6.1.2.1.31.1.1.1.12.1258310144|70|1636853 +1.3.6.1.2.1.31.1.1.1.12.1275068928|70|0 +1.3.6.1.2.1.31.1.1.1.12.1275119616|70|0 +1.3.6.1.2.1.31.1.1.1.12.1275593728|70|0 +1.3.6.1.2.1.31.1.1.1.12.1275595264|70|0 +1.3.6.1.2.1.31.1.1.1.12.1275595776|70|0 +1.3.6.1.2.1.31.1.1.1.12.1275596288|70|0 +1.3.6.1.2.1.31.1.1.1.12.1275596800|70|0 +1.3.6.1.2.1.31.1.1.1.12.1275597312|70|0 +1.3.6.1.2.1.31.1.1.1.13.1048580|70|44542552 +1.3.6.1.2.1.31.1.1.1.13.1048708|70|44546259 +1.3.6.1.2.1.31.1.1.1.13.1048836|70|44546804 +1.3.6.1.2.1.31.1.1.1.13.1048964|70|44534436 +1.3.6.1.2.1.31.1.1.1.13.1049092|70|44545691 +1.3.6.1.2.1.31.1.1.1.13.1049220|70|44547598 +1.3.6.1.2.1.31.1.1.1.13.1049348|70|44544912 +1.3.6.1.2.1.31.1.1.1.13.1049476|70|44545212 +1.3.6.1.2.1.31.1.1.1.13.1049604|70|44547528 +1.3.6.1.2.1.31.1.1.1.13.1049732|70|44546063 +1.3.6.1.2.1.31.1.1.1.13.1049860|70|44540724 +1.3.6.1.2.1.31.1.1.1.13.1049988|70|44534543 +1.3.6.1.2.1.31.1.1.1.13.1050116|70|44543452 +1.3.6.1.2.1.31.1.1.1.13.1050244|70|44545872 +1.3.6.1.2.1.31.1.1.1.13.1050372|70|44545215 +1.3.6.1.2.1.31.1.1.1.13.1050500|70|43961920 +1.3.6.1.2.1.31.1.1.1.13.1050628|70|0 +1.3.6.1.2.1.31.1.1.1.13.1050756|70|0 +1.3.6.1.2.1.31.1.1.1.13.1050884|70|0 +1.3.6.1.2.1.31.1.1.1.13.1051012|70|0 +1.3.6.1.2.1.31.1.1.1.13.1051140|70|0 +1.3.6.1.2.1.31.1.1.1.13.1051268|70|0 +1.3.6.1.2.1.31.1.1.1.13.1051396|70|0 +1.3.6.1.2.1.31.1.1.1.13.1051524|70|0 +1.3.6.1.2.1.31.1.1.1.13.1051652|70|0 +1.3.6.1.2.1.31.1.1.1.13.1051780|70|0 +1.3.6.1.2.1.31.1.1.1.13.1051908|70|0 +1.3.6.1.2.1.31.1.1.1.13.1052036|70|0 +1.3.6.1.2.1.31.1.1.1.13.1052164|70|0 +1.3.6.1.2.1.31.1.1.1.13.1052292|70|0 +1.3.6.1.2.1.31.1.1.1.13.1052420|70|0 +1.3.6.1.2.1.31.1.1.1.13.1052548|70|0 +1.3.6.1.2.1.31.1.1.1.13.1052677|70|44547598 +1.3.6.1.2.1.31.1.1.1.13.1053189|70|642784 +1.3.6.1.2.1.31.1.1.1.13.1053701|70|0 +1.3.6.1.2.1.31.1.1.1.13.1054213|70|0 +1.3.6.1.2.1.31.1.1.1.13.1054724|70|0 +1.3.6.1.2.1.31.1.1.1.13.1054852|70|0 +1.3.6.1.2.1.31.1.1.1.13.1054980|70|0 +1.3.6.1.2.1.31.1.1.1.13.1055108|70|0 +1.3.6.1.2.1.31.1.1.1.13.7340033|70|0 +1.3.6.1.2.1.31.1.1.1.13.1233125376|70|0 +1.3.6.1.2.1.31.1.1.1.13.1258291712|70|44542552 +1.3.6.1.2.1.31.1.1.1.13.1258292224|70|44546259 +1.3.6.1.2.1.31.1.1.1.13.1258292736|70|44546804 +1.3.6.1.2.1.31.1.1.1.13.1258293248|70|44534436 +1.3.6.1.2.1.31.1.1.1.13.1258293760|70|44545691 +1.3.6.1.2.1.31.1.1.1.13.1258294272|70|44547598 +1.3.6.1.2.1.31.1.1.1.13.1258294784|70|44544912 +1.3.6.1.2.1.31.1.1.1.13.1258295296|70|44545212 +1.3.6.1.2.1.31.1.1.1.13.1258295808|70|44547528 +1.3.6.1.2.1.31.1.1.1.13.1258296320|70|44546063 +1.3.6.1.2.1.31.1.1.1.13.1258296832|70|44540724 +1.3.6.1.2.1.31.1.1.1.13.1258297344|70|44534543 +1.3.6.1.2.1.31.1.1.1.13.1258297856|70|44543452 +1.3.6.1.2.1.31.1.1.1.13.1258298368|70|44545872 +1.3.6.1.2.1.31.1.1.1.13.1258298880|70|44545215 +1.3.6.1.2.1.31.1.1.1.13.1258299392|70|43961920 +1.3.6.1.2.1.31.1.1.1.13.1258308096|70|44547598 +1.3.6.1.2.1.31.1.1.1.13.1258310144|70|642784 +1.3.6.1.2.1.31.1.1.1.13.1275068928|70|0 +1.3.6.1.2.1.31.1.1.1.13.1275119616|70|0 +1.3.6.1.2.1.31.1.1.1.13.1275593728|70|0 +1.3.6.1.2.1.31.1.1.1.13.1275595264|70|0 +1.3.6.1.2.1.31.1.1.1.13.1275595776|70|0 +1.3.6.1.2.1.31.1.1.1.13.1275596288|70|0 +1.3.6.1.2.1.31.1.1.1.13.1275596800|70|0 +1.3.6.1.2.1.31.1.1.1.13.1275597312|70|0 +1.3.6.1.2.1.31.1.1.1.14.1048580|2|1 +1.3.6.1.2.1.31.1.1.1.14.1048708|2|1 +1.3.6.1.2.1.31.1.1.1.14.1048836|2|1 +1.3.6.1.2.1.31.1.1.1.14.1048964|2|1 +1.3.6.1.2.1.31.1.1.1.14.1049092|2|1 +1.3.6.1.2.1.31.1.1.1.14.1049220|2|1 +1.3.6.1.2.1.31.1.1.1.14.1049348|2|1 +1.3.6.1.2.1.31.1.1.1.14.1049476|2|1 +1.3.6.1.2.1.31.1.1.1.14.1049604|2|1 +1.3.6.1.2.1.31.1.1.1.14.1049732|2|1 +1.3.6.1.2.1.31.1.1.1.14.1049860|2|1 +1.3.6.1.2.1.31.1.1.1.14.1049988|2|1 +1.3.6.1.2.1.31.1.1.1.14.1050116|2|1 +1.3.6.1.2.1.31.1.1.1.14.1050244|2|1 +1.3.6.1.2.1.31.1.1.1.14.1050372|2|1 +1.3.6.1.2.1.31.1.1.1.14.1050500|2|1 +1.3.6.1.2.1.31.1.1.1.14.1050628|2|1 +1.3.6.1.2.1.31.1.1.1.14.1050756|2|1 +1.3.6.1.2.1.31.1.1.1.14.1050884|2|1 +1.3.6.1.2.1.31.1.1.1.14.1051012|2|1 +1.3.6.1.2.1.31.1.1.1.14.1051140|2|1 +1.3.6.1.2.1.31.1.1.1.14.1051268|2|1 +1.3.6.1.2.1.31.1.1.1.14.1051396|2|1 +1.3.6.1.2.1.31.1.1.1.14.1051524|2|1 +1.3.6.1.2.1.31.1.1.1.14.1051652|2|1 +1.3.6.1.2.1.31.1.1.1.14.1051780|2|1 +1.3.6.1.2.1.31.1.1.1.14.1051908|2|1 +1.3.6.1.2.1.31.1.1.1.14.1052036|2|1 +1.3.6.1.2.1.31.1.1.1.14.1052164|2|1 +1.3.6.1.2.1.31.1.1.1.14.1052292|2|1 +1.3.6.1.2.1.31.1.1.1.14.1052420|2|1 +1.3.6.1.2.1.31.1.1.1.14.1052548|2|1 +1.3.6.1.2.1.31.1.1.1.14.1052677|2|1 +1.3.6.1.2.1.31.1.1.1.14.1053189|2|1 +1.3.6.1.2.1.31.1.1.1.14.1053701|2|1 +1.3.6.1.2.1.31.1.1.1.14.1054213|2|1 +1.3.6.1.2.1.31.1.1.1.14.1054724|2|1 +1.3.6.1.2.1.31.1.1.1.14.1054852|2|1 +1.3.6.1.2.1.31.1.1.1.14.1054980|2|1 +1.3.6.1.2.1.31.1.1.1.14.1055108|2|1 +1.3.6.1.2.1.31.1.1.1.14.7340033|2|1 +1.3.6.1.2.1.31.1.1.1.14.1233125376|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258291712|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258292224|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258292736|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258293248|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258293760|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258294272|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258294784|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258295296|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258295808|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258296320|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258296832|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258297344|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258297856|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258298368|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258298880|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258299392|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258308096|2|1 +1.3.6.1.2.1.31.1.1.1.14.1258310144|2|1 +1.3.6.1.2.1.31.1.1.1.14.1275068928|2|1 +1.3.6.1.2.1.31.1.1.1.14.1275119616|2|1 +1.3.6.1.2.1.31.1.1.1.14.1275593728|2|1 +1.3.6.1.2.1.31.1.1.1.14.1275595264|2|1 +1.3.6.1.2.1.31.1.1.1.14.1275595776|2|1 +1.3.6.1.2.1.31.1.1.1.14.1275596288|2|1 +1.3.6.1.2.1.31.1.1.1.14.1275596800|2|1 +1.3.6.1.2.1.31.1.1.1.14.1275597312|2|1 +1.3.6.1.2.1.31.1.1.1.15.1048580|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1048708|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1048836|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1048964|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1049092|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1049220|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1049348|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1049476|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1049604|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1049732|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1049860|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1049988|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1050116|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1050244|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1050372|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1050500|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1050628|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1050756|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1050884|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1051012|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1051140|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1051268|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1051396|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1051524|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1051652|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1051780|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1051908|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1052036|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1052164|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1052292|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1052420|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1052548|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1052677|66|40000 +1.3.6.1.2.1.31.1.1.1.15.1053189|66|40000 +1.3.6.1.2.1.31.1.1.1.15.1053701|66|40000 +1.3.6.1.2.1.31.1.1.1.15.1054213|66|40000 +1.3.6.1.2.1.31.1.1.1.15.1054724|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1054852|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1054980|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1055108|66|10000 +1.3.6.1.2.1.31.1.1.1.15.7340033|66|100 +1.3.6.1.2.1.31.1.1.1.15.1233125376|66|0 +1.3.6.1.2.1.31.1.1.1.15.1258291712|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1258292224|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1258292736|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1258293248|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1258293760|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1258294272|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1258294784|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1258295296|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1258295808|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1258296320|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1258296832|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1258297344|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1258297856|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1258298368|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1258298880|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1258299392|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1258308096|66|40000 +1.3.6.1.2.1.31.1.1.1.15.1258310144|66|40000 +1.3.6.1.2.1.31.1.1.1.15.1275068928|66|40000 +1.3.6.1.2.1.31.1.1.1.15.1275119616|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1275593728|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1275595264|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1275595776|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1275596288|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1275596800|66|10000 +1.3.6.1.2.1.31.1.1.1.15.1275597312|66|10000 +1.3.6.1.2.1.31.1.1.1.16.1048580|2|2 +1.3.6.1.2.1.31.1.1.1.16.1048708|2|2 +1.3.6.1.2.1.31.1.1.1.16.1048836|2|2 +1.3.6.1.2.1.31.1.1.1.16.1048964|2|2 +1.3.6.1.2.1.31.1.1.1.16.1049092|2|2 +1.3.6.1.2.1.31.1.1.1.16.1049220|2|2 +1.3.6.1.2.1.31.1.1.1.16.1049348|2|2 +1.3.6.1.2.1.31.1.1.1.16.1049476|2|2 +1.3.6.1.2.1.31.1.1.1.16.1049604|2|2 +1.3.6.1.2.1.31.1.1.1.16.1049732|2|2 +1.3.6.1.2.1.31.1.1.1.16.1049860|2|2 +1.3.6.1.2.1.31.1.1.1.16.1049988|2|2 +1.3.6.1.2.1.31.1.1.1.16.1050116|2|2 +1.3.6.1.2.1.31.1.1.1.16.1050244|2|2 +1.3.6.1.2.1.31.1.1.1.16.1050372|2|2 +1.3.6.1.2.1.31.1.1.1.16.1050500|2|2 +1.3.6.1.2.1.31.1.1.1.16.1050628|2|2 +1.3.6.1.2.1.31.1.1.1.16.1050756|2|2 +1.3.6.1.2.1.31.1.1.1.16.1050884|2|2 +1.3.6.1.2.1.31.1.1.1.16.1051012|2|2 +1.3.6.1.2.1.31.1.1.1.16.1051140|2|2 +1.3.6.1.2.1.31.1.1.1.16.1051268|2|2 +1.3.6.1.2.1.31.1.1.1.16.1051396|2|2 +1.3.6.1.2.1.31.1.1.1.16.1051524|2|2 +1.3.6.1.2.1.31.1.1.1.16.1051652|2|2 +1.3.6.1.2.1.31.1.1.1.16.1051780|2|2 +1.3.6.1.2.1.31.1.1.1.16.1051908|2|2 +1.3.6.1.2.1.31.1.1.1.16.1052036|2|2 +1.3.6.1.2.1.31.1.1.1.16.1052164|2|2 +1.3.6.1.2.1.31.1.1.1.16.1052292|2|2 +1.3.6.1.2.1.31.1.1.1.16.1052420|2|2 +1.3.6.1.2.1.31.1.1.1.16.1052548|2|2 +1.3.6.1.2.1.31.1.1.1.16.1052677|2|2 +1.3.6.1.2.1.31.1.1.1.16.1053189|2|2 +1.3.6.1.2.1.31.1.1.1.16.1053701|2|2 +1.3.6.1.2.1.31.1.1.1.16.1054213|2|2 +1.3.6.1.2.1.31.1.1.1.16.1054724|2|1 +1.3.6.1.2.1.31.1.1.1.16.1054852|2|2 +1.3.6.1.2.1.31.1.1.1.16.1054980|2|1 +1.3.6.1.2.1.31.1.1.1.16.1055108|2|2 +1.3.6.1.2.1.31.1.1.1.16.7340033|2|2 +1.3.6.1.2.1.31.1.1.1.16.1233125376|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258291712|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258292224|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258292736|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258293248|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258293760|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258294272|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258294784|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258295296|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258295808|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258296320|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258296832|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258297344|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258297856|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258298368|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258298880|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258299392|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258308096|2|2 +1.3.6.1.2.1.31.1.1.1.16.1258310144|2|2 +1.3.6.1.2.1.31.1.1.1.16.1275068928|2|2 +1.3.6.1.2.1.31.1.1.1.16.1275119616|2|2 +1.3.6.1.2.1.31.1.1.1.16.1275593728|2|2 +1.3.6.1.2.1.31.1.1.1.16.1275595264|2|2 +1.3.6.1.2.1.31.1.1.1.16.1275595776|2|2 +1.3.6.1.2.1.31.1.1.1.16.1275596288|2|2 +1.3.6.1.2.1.31.1.1.1.16.1275596800|2|2 +1.3.6.1.2.1.31.1.1.1.16.1275597312|2|2 +1.3.6.1.2.1.31.1.1.1.17.1048580|2|2 +1.3.6.1.2.1.31.1.1.1.17.1048708|2|2 +1.3.6.1.2.1.31.1.1.1.17.1048836|2|2 +1.3.6.1.2.1.31.1.1.1.17.1048964|2|2 +1.3.6.1.2.1.31.1.1.1.17.1049092|2|2 +1.3.6.1.2.1.31.1.1.1.17.1049220|2|2 +1.3.6.1.2.1.31.1.1.1.17.1049348|2|2 +1.3.6.1.2.1.31.1.1.1.17.1049476|2|2 +1.3.6.1.2.1.31.1.1.1.17.1049604|2|2 +1.3.6.1.2.1.31.1.1.1.17.1049732|2|2 +1.3.6.1.2.1.31.1.1.1.17.1049860|2|2 +1.3.6.1.2.1.31.1.1.1.17.1049988|2|2 +1.3.6.1.2.1.31.1.1.1.17.1050116|2|2 +1.3.6.1.2.1.31.1.1.1.17.1050244|2|2 +1.3.6.1.2.1.31.1.1.1.17.1050372|2|2 +1.3.6.1.2.1.31.1.1.1.17.1050500|2|2 +1.3.6.1.2.1.31.1.1.1.17.1050628|2|2 +1.3.6.1.2.1.31.1.1.1.17.1050756|2|2 +1.3.6.1.2.1.31.1.1.1.17.1050884|2|2 +1.3.6.1.2.1.31.1.1.1.17.1051012|2|2 +1.3.6.1.2.1.31.1.1.1.17.1051140|2|2 +1.3.6.1.2.1.31.1.1.1.17.1051268|2|2 +1.3.6.1.2.1.31.1.1.1.17.1051396|2|2 +1.3.6.1.2.1.31.1.1.1.17.1051524|2|2 +1.3.6.1.2.1.31.1.1.1.17.1051652|2|2 +1.3.6.1.2.1.31.1.1.1.17.1051780|2|2 +1.3.6.1.2.1.31.1.1.1.17.1051908|2|2 +1.3.6.1.2.1.31.1.1.1.17.1052036|2|2 +1.3.6.1.2.1.31.1.1.1.17.1052164|2|2 +1.3.6.1.2.1.31.1.1.1.17.1052292|2|2 +1.3.6.1.2.1.31.1.1.1.17.1052420|2|2 +1.3.6.1.2.1.31.1.1.1.17.1052548|2|2 +1.3.6.1.2.1.31.1.1.1.17.1052677|2|1 +1.3.6.1.2.1.31.1.1.1.17.1053189|2|1 +1.3.6.1.2.1.31.1.1.1.17.1053701|2|2 +1.3.6.1.2.1.31.1.1.1.17.1054213|2|2 +1.3.6.1.2.1.31.1.1.1.17.1054724|2|2 +1.3.6.1.2.1.31.1.1.1.17.1054852|2|2 +1.3.6.1.2.1.31.1.1.1.17.1054980|2|2 +1.3.6.1.2.1.31.1.1.1.17.1055108|2|2 +1.3.6.1.2.1.31.1.1.1.17.7340033|2|1 +1.3.6.1.2.1.31.1.1.1.17.1233125376|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258291712|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258292224|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258292736|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258293248|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258293760|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258294272|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258294784|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258295296|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258295808|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258296320|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258296832|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258297344|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258297856|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258298368|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258298880|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258299392|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258308096|2|2 +1.3.6.1.2.1.31.1.1.1.17.1258310144|2|2 +1.3.6.1.2.1.31.1.1.1.17.1275068928|2|2 +1.3.6.1.2.1.31.1.1.1.17.1275119616|2|2 +1.3.6.1.2.1.31.1.1.1.17.1275593728|2|2 +1.3.6.1.2.1.31.1.1.1.17.1275595264|2|2 +1.3.6.1.2.1.31.1.1.1.17.1275595776|2|2 +1.3.6.1.2.1.31.1.1.1.17.1275596288|2|2 +1.3.6.1.2.1.31.1.1.1.17.1275596800|2|2 +1.3.6.1.2.1.31.1.1.1.17.1275597312|2|2 +1.3.6.1.2.1.31.1.1.1.18.1048580|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1048708|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1048836|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1048964|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1049092|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1049220|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1049348|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1049476|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1049604|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1049732|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1049860|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1049988|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1050116|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1050244|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1050372|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1050500|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1050628|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1050756|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1050884|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1051012|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1051140|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1051268|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1051396|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1051524|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1051652|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1051780|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1051908|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1052036|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1052164|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1052292|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1052420|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1052548|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1052677|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1053189|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1053701|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1054213|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1054724|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1054852|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1054980|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1055108|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.7340033|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1233125376|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258291712|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258292224|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258292736|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258293248|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258293760|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258294272|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258294784|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258295296|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258295808|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258296320|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258296832|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258297344|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258297856|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258298368|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258298880|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258299392|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258308096|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1258310144|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1275068928|4x|0000 +1.3.6.1.2.1.31.1.1.1.18.1275119616|4x|0000 +1.3.6.1.2.1.31.1.1.1.19.1048580|67|0 +1.3.6.1.2.1.31.1.1.1.19.1048708|67|0 +1.3.6.1.2.1.31.1.1.1.19.1048836|67|0 +1.3.6.1.2.1.31.1.1.1.19.1048964|67|0 +1.3.6.1.2.1.31.1.1.1.19.1049092|67|0 +1.3.6.1.2.1.31.1.1.1.19.1049220|67|0 +1.3.6.1.2.1.31.1.1.1.19.1049348|67|0 +1.3.6.1.2.1.31.1.1.1.19.1049476|67|0 +1.3.6.1.2.1.31.1.1.1.19.1049604|67|0 +1.3.6.1.2.1.31.1.1.1.19.1049732|67|0 +1.3.6.1.2.1.31.1.1.1.19.1049860|67|0 +1.3.6.1.2.1.31.1.1.1.19.1049988|67|0 +1.3.6.1.2.1.31.1.1.1.19.1050116|67|0 +1.3.6.1.2.1.31.1.1.1.19.1050244|67|0 +1.3.6.1.2.1.31.1.1.1.19.1050372|67|0 +1.3.6.1.2.1.31.1.1.1.19.1050500|67|0 +1.3.6.1.2.1.31.1.1.1.19.1050628|67|0 +1.3.6.1.2.1.31.1.1.1.19.1050756|67|0 +1.3.6.1.2.1.31.1.1.1.19.1050884|67|0 +1.3.6.1.2.1.31.1.1.1.19.1051012|67|0 +1.3.6.1.2.1.31.1.1.1.19.1051140|67|0 +1.3.6.1.2.1.31.1.1.1.19.1051268|67|0 +1.3.6.1.2.1.31.1.1.1.19.1051396|67|0 +1.3.6.1.2.1.31.1.1.1.19.1051524|67|0 +1.3.6.1.2.1.31.1.1.1.19.1051652|67|0 +1.3.6.1.2.1.31.1.1.1.19.1051780|67|0 +1.3.6.1.2.1.31.1.1.1.19.1051908|67|0 +1.3.6.1.2.1.31.1.1.1.19.1052036|67|0 +1.3.6.1.2.1.31.1.1.1.19.1052164|67|0 +1.3.6.1.2.1.31.1.1.1.19.1052292|67|0 +1.3.6.1.2.1.31.1.1.1.19.1052420|67|0 +1.3.6.1.2.1.31.1.1.1.19.1052548|67|0 +1.3.6.1.2.1.31.1.1.1.19.1052677|67|0 +1.3.6.1.2.1.31.1.1.1.19.1053189|67|0 +1.3.6.1.2.1.31.1.1.1.19.1053701|67|0 +1.3.6.1.2.1.31.1.1.1.19.1054213|67|0 +1.3.6.1.2.1.31.1.1.1.19.1054724|67|0 +1.3.6.1.2.1.31.1.1.1.19.1054852|67|0 +1.3.6.1.2.1.31.1.1.1.19.1054980|67|0 +1.3.6.1.2.1.31.1.1.1.19.1055108|67|0 +1.3.6.1.2.1.31.1.1.1.19.7340033|67|0 +1.3.6.1.2.1.31.1.1.1.19.1233125376|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258291712|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258292224|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258292736|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258293248|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258293760|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258294272|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258294784|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258295296|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258295808|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258296320|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258296832|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258297344|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258297856|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258298368|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258298880|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258299392|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258308096|67|0 +1.3.6.1.2.1.31.1.1.1.19.1258310144|67|0 +1.3.6.1.2.1.31.1.1.1.19.1275068928|67|0 +1.3.6.1.2.1.31.1.1.1.19.1275119616|67|0 +1.3.6.1.2.1.31.1.1.1.19.1275593728|67|0 +1.3.6.1.2.1.31.1.1.1.19.1275595264|67|0 +1.3.6.1.2.1.31.1.1.1.19.1275595776|67|0 +1.3.6.1.2.1.31.1.1.1.19.1275596288|67|0 +1.3.6.1.2.1.31.1.1.1.19.1275596800|67|0 +1.3.6.1.2.1.31.1.1.1.19.1275597312|67|0 +1.3.6.1.2.1.31.1.2.1.3.0.1048580|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1048708|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1048836|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1048964|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1049092|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1049220|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1049348|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1049476|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1049604|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1049732|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1049860|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1049988|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1050116|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1050244|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1050372|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1050500|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1050628|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1050756|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1050884|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1051012|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1051140|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1051268|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1051396|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1051524|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1051652|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1051780|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1051908|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1052036|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1052164|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1052292|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1052420|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1052548|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1052677|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1053189|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1053701|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1054213|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1054724|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1054852|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1054980|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1055108|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.7340033|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1233125376|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258291712|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258292224|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258292736|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258293248|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258293760|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258294272|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258294784|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258295296|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258295808|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258296320|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258296832|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258297344|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258297856|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258298368|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258298880|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258299392|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258308096|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1258310144|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1275068928|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1275119616|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1275593728|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1275595264|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1275595776|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1275596288|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1275596800|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1275597312|2|1 +1.3.6.1.2.1.31.1.2.1.3.1048580.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1048708.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1048836.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1048964.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1049092.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1049220.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1049348.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1049476.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1049604.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1049732.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1049860.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1049988.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1050116.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1050244.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1050372.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1050500.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1050628.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1050756.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1050884.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1051012.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1051140.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1051268.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1051396.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1051524.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1051652.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1051780.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1051908.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1052036.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1052164.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1052292.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1052420.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1052548.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1052677.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1053189.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1053701.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1054213.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1054724.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1054852.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1054980.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1055108.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.7340033.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1233125376.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258291712.1048580|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258292224.1048708|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258292736.1048836|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258293248.1048964|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258293760.1049092|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258294272.1049220|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258294784.1049348|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258295296.1049476|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258295808.1049604|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258296320.1049732|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258296832.1049860|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258297344.1049988|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258297856.1050116|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258298368.1050244|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258298880.1050372|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258299392.1050500|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258308096.1052677|2|1 +1.3.6.1.2.1.31.1.2.1.3.1258310144.1053189|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275068928.1054724|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275068928.1054980|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275068928.1258308096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258291712|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258292224|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258292736|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258293248|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258293760|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258294272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258294784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258295296|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258295808|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258296320|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258296832|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258297344|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258297856|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258298368|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258298880|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258299392|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258308096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275119616.1258310144|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258291712|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258292224|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258292736|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258293248|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258293760|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258294272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258294784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258295296|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258295808|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258296320|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258296832|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258297344|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258297856|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258298368|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258298880|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258299392|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258308096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275593728.1258310144|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258291712|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258292224|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258292736|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258293248|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258293760|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258294272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258294784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258295296|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258295808|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258296320|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258296832|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258297344|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258297856|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258298368|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258298880|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258299392|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258308096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595264.1258310144|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258291712|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258292224|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258292736|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258293248|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258293760|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258294272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258294784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258295296|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258295808|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258296320|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258296832|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258297344|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258297856|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258298368|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258298880|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258299392|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258308096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275595776.1258310144|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258291712|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258292224|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258292736|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258293248|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258293760|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258294272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258294784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258295296|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258295808|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258296320|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258296832|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258297344|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258297856|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258298368|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258298880|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258299392|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258308096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596288.1258310144|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258291712|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258292224|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258292736|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258293248|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258293760|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258294272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258294784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258295296|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258295808|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258296320|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258296832|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258297344|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258297856|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258298368|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258298880|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258299392|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258308096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275596800.1258310144|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258291712|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258292224|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258292736|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258293248|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258293760|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258294272|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258294784|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258295296|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258295808|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258296320|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258296832|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258297344|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258297856|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258298368|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258298880|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258299392|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258308096|2|1 +1.3.6.1.2.1.31.1.2.1.3.1275597312.1258310144|2|1 +1.3.6.1.2.1.47.1.1.1.1.2.1|4| +1.3.6.1.2.1.47.1.1.1.1.2.2|4|PowerConnect MXL-10/40GbE +1.3.6.1.2.1.47.1.1.1.1.2.3|4|Module 0 +1.3.6.1.2.1.47.1.1.1.1.2.4|4|Unit: 0 Port 1 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.5|4|Unit: 0 Port 2 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.6|4|Unit: 0 Port 3 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.7|4|Unit: 0 Port 4 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.8|4|Unit: 0 Port 5 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.9|4|Unit: 0 Port 6 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.10|4|Unit: 0 Port 7 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.11|4|Unit: 0 Port 8 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.12|4|Unit: 0 Port 9 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.13|4|Unit: 0 Port 10 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.14|4|Unit: 0 Port 11 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.15|4|Unit: 0 Port 12 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.16|4|Unit: 0 Port 13 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.17|4|Unit: 0 Port 14 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.18|4|Unit: 0 Port 15 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.19|4|Unit: 0 Port 16 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.20|4|Unit: 0 Port 17 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.21|4|Unit: 0 Port 18 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.22|4|Unit: 0 Port 19 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.23|4|Unit: 0 Port 20 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.24|4|Unit: 0 Port 21 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.25|4|Unit: 0 Port 22 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.26|4|Unit: 0 Port 23 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.27|4|Unit: 0 Port 24 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.28|4|Unit: 0 Port 25 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.29|4|Unit: 0 Port 26 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.30|4|Unit: 0 Port 27 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.31|4|Unit: 0 Port 28 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.32|4|Unit: 0 Port 29 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.33|4|Unit: 0 Port 30 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.34|4|Unit: 0 Port 31 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.35|4|Unit: 0 Port 32 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.36|4|40G QSFP+ port +1.3.6.1.2.1.47.1.1.1.1.2.37|4|Unit: 0 Port 33 40G Level +1.3.6.1.2.1.47.1.1.1.1.2.41|4|40G QSFP+ port +1.3.6.1.2.1.47.1.1.1.1.2.42|4|Unit: 0 Port 37 40G Level +1.3.6.1.2.1.47.1.1.1.1.2.46|4|Optional module 0 +1.3.6.1.2.1.47.1.1.1.1.2.47|4|2-port 40G QSFP (XL) +1.3.6.1.2.1.47.1.1.1.1.2.48|4|Unit: 0 Port 41 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.49|4|Unit: 0 Port 42 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.50|4|Unit: 0 Port 43 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.51|4|Unit: 0 Port 44 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.52|4|Unit: 0 Port 45 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.53|4|Unit: 0 Port 46 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.54|4|Unit: 0 Port 47 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.55|4|Unit: 0 Port 48 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.56|4|Optional module 1 +1.3.6.1.2.1.47.1.1.1.1.2.57|4|4-port 10GE SFP+ (XL) +1.3.6.1.2.1.47.1.1.1.1.2.58|4|Unit: 0 Port 49 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.59|4|Unit: 0 Port 50 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.60|4|Unit: 0 Port 51 10G Level +1.3.6.1.2.1.47.1.1.1.1.2.61|4|Unit: 0 Port 52 10G Level +1.3.6.1.2.1.47.1.1.1.1.3.1|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.2|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.4|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.5|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.6|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.7|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.8|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.9|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.10|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.11|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.12|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.13|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.14|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.15|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.16|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.17|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.18|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.19|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.20|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.21|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.22|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.23|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.24|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.25|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.26|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.27|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.28|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.29|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.30|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.31|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.32|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.33|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.34|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.35|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.36|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.37|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.41|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.42|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.46|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.47|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.48|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.52|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.56|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.57|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.58|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.59|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.60|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.61|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.4.1|2|0 +1.3.6.1.2.1.47.1.1.1.1.4.2|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.3|2|2 +1.3.6.1.2.1.47.1.1.1.1.4.4|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.5|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.6|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.7|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.8|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.9|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.10|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.11|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.12|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.13|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.14|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.15|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.16|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.17|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.18|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.19|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.20|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.21|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.22|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.23|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.24|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.25|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.26|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.27|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.28|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.29|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.30|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.31|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.32|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.33|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.34|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.35|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.36|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.37|2|36 +1.3.6.1.2.1.47.1.1.1.1.4.41|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.42|2|41 +1.3.6.1.2.1.47.1.1.1.1.4.46|2|2 +1.3.6.1.2.1.47.1.1.1.1.4.47|2|46 +1.3.6.1.2.1.47.1.1.1.1.4.48|2|47 +1.3.6.1.2.1.47.1.1.1.1.4.52|2|47 +1.3.6.1.2.1.47.1.1.1.1.4.56|2|2 +1.3.6.1.2.1.47.1.1.1.1.4.57|2|56 +1.3.6.1.2.1.47.1.1.1.1.4.58|2|57 +1.3.6.1.2.1.47.1.1.1.1.4.59|2|57 +1.3.6.1.2.1.47.1.1.1.1.4.60|2|57 +1.3.6.1.2.1.47.1.1.1.1.4.61|2|57 +1.3.6.1.2.1.47.1.1.1.1.5.1|2|11 +1.3.6.1.2.1.47.1.1.1.1.5.2|2|3 +1.3.6.1.2.1.47.1.1.1.1.5.3|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.4|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.5|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.6|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.7|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.9|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.10|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.11|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.12|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.13|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.14|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.15|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.17|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.18|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.19|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.20|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.21|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.22|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.23|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.24|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.25|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.26|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.27|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.28|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.29|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.30|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.31|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.32|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.33|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.34|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.35|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.36|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.37|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.41|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.42|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.46|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.47|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.48|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.52|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.56|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.57|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.58|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.59|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.60|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.61|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.1|2|-1 +1.3.6.1.2.1.47.1.1.1.1.6.2|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.3|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.4|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.5|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.6|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.7|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.8|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.9|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.10|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.11|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.12|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.13|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.14|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.15|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.16|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.17|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.18|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.19|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.20|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.21|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.22|2|19 +1.3.6.1.2.1.47.1.1.1.1.6.23|2|20 +1.3.6.1.2.1.47.1.1.1.1.6.24|2|21 +1.3.6.1.2.1.47.1.1.1.1.6.25|2|22 +1.3.6.1.2.1.47.1.1.1.1.6.26|2|23 +1.3.6.1.2.1.47.1.1.1.1.6.27|2|24 +1.3.6.1.2.1.47.1.1.1.1.6.28|2|25 +1.3.6.1.2.1.47.1.1.1.1.6.29|2|26 +1.3.6.1.2.1.47.1.1.1.1.6.30|2|27 +1.3.6.1.2.1.47.1.1.1.1.6.31|2|28 +1.3.6.1.2.1.47.1.1.1.1.6.32|2|29 +1.3.6.1.2.1.47.1.1.1.1.6.33|2|30 +1.3.6.1.2.1.47.1.1.1.1.6.34|2|31 +1.3.6.1.2.1.47.1.1.1.1.6.35|2|32 +1.3.6.1.2.1.47.1.1.1.1.6.36|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.37|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.41|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.42|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.46|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.47|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.48|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.52|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.56|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.57|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.58|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.59|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.60|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.61|2|4 +1.3.6.1.2.1.47.1.1.1.1.7.1|4|Stack +1.3.6.1.2.1.47.1.1.1.1.7.2|4|Unit 0 +1.3.6.1.2.1.47.1.1.1.1.7.3|4|Module 0 +1.3.6.1.2.1.47.1.1.1.1.7.4|4|Te 0/1 +1.3.6.1.2.1.47.1.1.1.1.7.5|4|Te 0/2 +1.3.6.1.2.1.47.1.1.1.1.7.6|4|Te 0/3 +1.3.6.1.2.1.47.1.1.1.1.7.7|4|Te 0/4 +1.3.6.1.2.1.47.1.1.1.1.7.8|4|Te 0/5 +1.3.6.1.2.1.47.1.1.1.1.7.9|4|Te 0/6 +1.3.6.1.2.1.47.1.1.1.1.7.10|4|Te 0/7 +1.3.6.1.2.1.47.1.1.1.1.7.11|4|Te 0/8 +1.3.6.1.2.1.47.1.1.1.1.7.12|4|Te 0/9 +1.3.6.1.2.1.47.1.1.1.1.7.13|4|Te 0/10 +1.3.6.1.2.1.47.1.1.1.1.7.14|4|Te 0/11 +1.3.6.1.2.1.47.1.1.1.1.7.15|4|Te 0/12 +1.3.6.1.2.1.47.1.1.1.1.7.16|4|Te 0/13 +1.3.6.1.2.1.47.1.1.1.1.7.17|4|Te 0/14 +1.3.6.1.2.1.47.1.1.1.1.7.18|4|Te 0/15 +1.3.6.1.2.1.47.1.1.1.1.7.19|4|Te 0/16 +1.3.6.1.2.1.47.1.1.1.1.7.20|4|Te 0/17 +1.3.6.1.2.1.47.1.1.1.1.7.21|4|Te 0/18 +1.3.6.1.2.1.47.1.1.1.1.7.22|4|Te 0/19 +1.3.6.1.2.1.47.1.1.1.1.7.23|4|Te 0/20 +1.3.6.1.2.1.47.1.1.1.1.7.24|4|Te 0/21 +1.3.6.1.2.1.47.1.1.1.1.7.25|4|Te 0/22 +1.3.6.1.2.1.47.1.1.1.1.7.26|4|Te 0/23 +1.3.6.1.2.1.47.1.1.1.1.7.27|4|Te 0/24 +1.3.6.1.2.1.47.1.1.1.1.7.28|4|Te 0/25 +1.3.6.1.2.1.47.1.1.1.1.7.29|4|Te 0/26 +1.3.6.1.2.1.47.1.1.1.1.7.30|4|Te 0/27 +1.3.6.1.2.1.47.1.1.1.1.7.31|4|Te 0/28 +1.3.6.1.2.1.47.1.1.1.1.7.32|4|Te 0/29 +1.3.6.1.2.1.47.1.1.1.1.7.33|4|Te 0/30 +1.3.6.1.2.1.47.1.1.1.1.7.34|4|Te 0/31 +1.3.6.1.2.1.47.1.1.1.1.7.35|4|Te 0/32 +1.3.6.1.2.1.47.1.1.1.1.7.36|4|40G QSFP+ port +1.3.6.1.2.1.47.1.1.1.1.7.37|4|Fo 0/33 +1.3.6.1.2.1.47.1.1.1.1.7.41|4|40G QSFP+ port +1.3.6.1.2.1.47.1.1.1.1.7.42|4|Fo 0/37 +1.3.6.1.2.1.47.1.1.1.1.7.46|4|Slot 0.0 +1.3.6.1.2.1.47.1.1.1.1.7.47|4|2-port 40G QSFP (XL) +1.3.6.1.2.1.47.1.1.1.1.7.48|4|Te 0/41 +1.3.6.1.2.1.47.1.1.1.1.7.49|4|Te 0/42 +1.3.6.1.2.1.47.1.1.1.1.7.50|4|Te 0/43 +1.3.6.1.2.1.47.1.1.1.1.7.51|4|Te 0/44 +1.3.6.1.2.1.47.1.1.1.1.7.52|4|Te 0/45 +1.3.6.1.2.1.47.1.1.1.1.7.53|4|Te 0/46 +1.3.6.1.2.1.47.1.1.1.1.7.54|4|Te 0/47 +1.3.6.1.2.1.47.1.1.1.1.7.55|4|Te 0/48 +1.3.6.1.2.1.47.1.1.1.1.7.56|4|Slot 0.1 +1.3.6.1.2.1.47.1.1.1.1.7.57|4|4-port 10GE SFP+ (XL) +1.3.6.1.2.1.47.1.1.1.1.7.58|4|Te 0/49 +1.3.6.1.2.1.47.1.1.1.1.7.59|4|Te 0/50 +1.3.6.1.2.1.47.1.1.1.1.7.60|4|Te 0/51 +1.3.6.1.2.1.47.1.1.1.1.7.61|4|Te 0/52 +1.3.6.1.2.1.47.1.1.1.1.8.1|4| +1.3.6.1.2.1.47.1.1.1.1.8.2|4|A06 +1.3.6.1.2.1.47.1.1.1.1.8.3|4| +1.3.6.1.2.1.47.1.1.1.1.8.4|4| +1.3.6.1.2.1.47.1.1.1.1.8.5|4| +1.3.6.1.2.1.47.1.1.1.1.8.6|4| +1.3.6.1.2.1.47.1.1.1.1.8.7|4| +1.3.6.1.2.1.47.1.1.1.1.8.8|4| +1.3.6.1.2.1.47.1.1.1.1.8.9|4| +1.3.6.1.2.1.47.1.1.1.1.8.10|4| +1.3.6.1.2.1.47.1.1.1.1.8.11|4| +1.3.6.1.2.1.47.1.1.1.1.8.12|4| +1.3.6.1.2.1.47.1.1.1.1.8.13|4| +1.3.6.1.2.1.47.1.1.1.1.8.14|4| +1.3.6.1.2.1.47.1.1.1.1.8.15|4| +1.3.6.1.2.1.47.1.1.1.1.8.16|4| +1.3.6.1.2.1.47.1.1.1.1.8.17|4| +1.3.6.1.2.1.47.1.1.1.1.8.18|4| +1.3.6.1.2.1.47.1.1.1.1.8.19|4| +1.3.6.1.2.1.47.1.1.1.1.8.20|4| +1.3.6.1.2.1.47.1.1.1.1.8.21|4| +1.3.6.1.2.1.47.1.1.1.1.8.22|4| +1.3.6.1.2.1.47.1.1.1.1.8.23|4| +1.3.6.1.2.1.47.1.1.1.1.8.24|4| +1.3.6.1.2.1.47.1.1.1.1.8.25|4| +1.3.6.1.2.1.47.1.1.1.1.8.26|4| +1.3.6.1.2.1.47.1.1.1.1.8.27|4| +1.3.6.1.2.1.47.1.1.1.1.8.28|4| +1.3.6.1.2.1.47.1.1.1.1.8.29|4| +1.3.6.1.2.1.47.1.1.1.1.8.30|4| +1.3.6.1.2.1.47.1.1.1.1.8.31|4| +1.3.6.1.2.1.47.1.1.1.1.8.32|4| +1.3.6.1.2.1.47.1.1.1.1.8.33|4| +1.3.6.1.2.1.47.1.1.1.1.8.34|4| +1.3.6.1.2.1.47.1.1.1.1.8.35|4| +1.3.6.1.2.1.47.1.1.1.1.8.36|4| +1.3.6.1.2.1.47.1.1.1.1.8.37|4| +1.3.6.1.2.1.47.1.1.1.1.8.41|4| +1.3.6.1.2.1.47.1.1.1.1.8.42|4| +1.3.6.1.2.1.47.1.1.1.1.8.46|4| +1.3.6.1.2.1.47.1.1.1.1.8.47|4| +1.3.6.1.2.1.47.1.1.1.1.8.48|4| +1.3.6.1.2.1.47.1.1.1.1.8.52|4| +1.3.6.1.2.1.47.1.1.1.1.8.56|4| +1.3.6.1.2.1.47.1.1.1.1.8.57|4| +1.3.6.1.2.1.47.1.1.1.1.8.58|4| +1.3.6.1.2.1.47.1.1.1.1.8.59|4| +1.3.6.1.2.1.47.1.1.1.1.8.60|4| +1.3.6.1.2.1.47.1.1.1.1.8.61|4| +1.3.6.1.2.1.47.1.1.1.1.9.1|4| +1.3.6.1.2.1.47.1.1.1.1.9.2|4| +1.3.6.1.2.1.47.1.1.1.1.9.3|4| +1.3.6.1.2.1.47.1.1.1.1.9.4|4| +1.3.6.1.2.1.47.1.1.1.1.9.5|4| +1.3.6.1.2.1.47.1.1.1.1.9.6|4| +1.3.6.1.2.1.47.1.1.1.1.9.7|4| +1.3.6.1.2.1.47.1.1.1.1.9.8|4| +1.3.6.1.2.1.47.1.1.1.1.9.9|4| +1.3.6.1.2.1.47.1.1.1.1.9.10|4| +1.3.6.1.2.1.47.1.1.1.1.9.11|4| +1.3.6.1.2.1.47.1.1.1.1.9.12|4| +1.3.6.1.2.1.47.1.1.1.1.9.13|4| +1.3.6.1.2.1.47.1.1.1.1.9.14|4| +1.3.6.1.2.1.47.1.1.1.1.9.15|4| +1.3.6.1.2.1.47.1.1.1.1.9.16|4| +1.3.6.1.2.1.47.1.1.1.1.9.17|4| +1.3.6.1.2.1.47.1.1.1.1.9.18|4| +1.3.6.1.2.1.47.1.1.1.1.9.19|4| +1.3.6.1.2.1.47.1.1.1.1.9.20|4| +1.3.6.1.2.1.47.1.1.1.1.9.21|4| +1.3.6.1.2.1.47.1.1.1.1.9.22|4| +1.3.6.1.2.1.47.1.1.1.1.9.23|4| +1.3.6.1.2.1.47.1.1.1.1.9.24|4| +1.3.6.1.2.1.47.1.1.1.1.9.25|4| +1.3.6.1.2.1.47.1.1.1.1.9.26|4| +1.3.6.1.2.1.47.1.1.1.1.9.27|4| +1.3.6.1.2.1.47.1.1.1.1.9.28|4| +1.3.6.1.2.1.47.1.1.1.1.9.29|4| +1.3.6.1.2.1.47.1.1.1.1.9.30|4| +1.3.6.1.2.1.47.1.1.1.1.9.31|4| +1.3.6.1.2.1.47.1.1.1.1.9.32|4| +1.3.6.1.2.1.47.1.1.1.1.9.33|4| +1.3.6.1.2.1.47.1.1.1.1.9.34|4| +1.3.6.1.2.1.47.1.1.1.1.9.35|4| +1.3.6.1.2.1.47.1.1.1.1.9.36|4| +1.3.6.1.2.1.47.1.1.1.1.9.37|4| +1.3.6.1.2.1.47.1.1.1.1.9.41|4| +1.3.6.1.2.1.47.1.1.1.1.9.42|4| +1.3.6.1.2.1.47.1.1.1.1.9.46|4| +1.3.6.1.2.1.47.1.1.1.1.9.47|4| +1.3.6.1.2.1.47.1.1.1.1.9.48|4| +1.3.6.1.2.1.47.1.1.1.1.9.52|4| +1.3.6.1.2.1.47.1.1.1.1.9.56|4| +1.3.6.1.2.1.47.1.1.1.1.9.57|4| +1.3.6.1.2.1.47.1.1.1.1.9.58|4| +1.3.6.1.2.1.47.1.1.1.1.9.59|4| +1.3.6.1.2.1.47.1.1.1.1.9.60|4| +1.3.6.1.2.1.47.1.1.1.1.9.61|4| +1.3.6.1.2.1.47.1.1.1.1.10.1|4| +1.3.6.1.2.1.47.1.1.1.1.10.2|4|9.13(0.2) +1.3.6.1.2.1.47.1.1.1.1.10.3|4| +1.3.6.1.2.1.47.1.1.1.1.10.4|4| +1.3.6.1.2.1.47.1.1.1.1.10.5|4| +1.3.6.1.2.1.47.1.1.1.1.10.6|4| +1.3.6.1.2.1.47.1.1.1.1.10.7|4| +1.3.6.1.2.1.47.1.1.1.1.10.8|4| +1.3.6.1.2.1.47.1.1.1.1.10.9|4| +1.3.6.1.2.1.47.1.1.1.1.10.10|4| +1.3.6.1.2.1.47.1.1.1.1.10.11|4| +1.3.6.1.2.1.47.1.1.1.1.10.12|4| +1.3.6.1.2.1.47.1.1.1.1.10.13|4| +1.3.6.1.2.1.47.1.1.1.1.10.14|4| +1.3.6.1.2.1.47.1.1.1.1.10.15|4| +1.3.6.1.2.1.47.1.1.1.1.10.16|4| +1.3.6.1.2.1.47.1.1.1.1.10.17|4| +1.3.6.1.2.1.47.1.1.1.1.10.18|4| +1.3.6.1.2.1.47.1.1.1.1.10.19|4| +1.3.6.1.2.1.47.1.1.1.1.10.20|4| +1.3.6.1.2.1.47.1.1.1.1.10.21|4| +1.3.6.1.2.1.47.1.1.1.1.10.22|4| +1.3.6.1.2.1.47.1.1.1.1.10.23|4| +1.3.6.1.2.1.47.1.1.1.1.10.24|4| +1.3.6.1.2.1.47.1.1.1.1.10.25|4| +1.3.6.1.2.1.47.1.1.1.1.10.26|4| +1.3.6.1.2.1.47.1.1.1.1.10.27|4| +1.3.6.1.2.1.47.1.1.1.1.10.28|4| +1.3.6.1.2.1.47.1.1.1.1.10.29|4| +1.3.6.1.2.1.47.1.1.1.1.10.30|4| +1.3.6.1.2.1.47.1.1.1.1.10.31|4| +1.3.6.1.2.1.47.1.1.1.1.10.32|4| +1.3.6.1.2.1.47.1.1.1.1.10.33|4| +1.3.6.1.2.1.47.1.1.1.1.10.34|4| +1.3.6.1.2.1.47.1.1.1.1.10.35|4| +1.3.6.1.2.1.47.1.1.1.1.10.36|4| +1.3.6.1.2.1.47.1.1.1.1.10.37|4| +1.3.6.1.2.1.47.1.1.1.1.10.41|4| +1.3.6.1.2.1.47.1.1.1.1.10.42|4| +1.3.6.1.2.1.47.1.1.1.1.10.46|4| +1.3.6.1.2.1.47.1.1.1.1.10.47|4| +1.3.6.1.2.1.47.1.1.1.1.10.48|4| +1.3.6.1.2.1.47.1.1.1.1.10.52|4| +1.3.6.1.2.1.47.1.1.1.1.10.56|4| +1.3.6.1.2.1.47.1.1.1.1.10.57|4| +1.3.6.1.2.1.47.1.1.1.1.10.58|4| +1.3.6.1.2.1.47.1.1.1.1.10.59|4| +1.3.6.1.2.1.47.1.1.1.1.10.60|4| +1.3.6.1.2.1.47.1.1.1.1.10.61|4| +1.3.6.1.2.1.47.1.1.1.1.11.1|4| +1.3.6.1.2.1.47.1.1.1.1.11.2|4|CN2829863L0049 +1.3.6.1.2.1.47.1.1.1.1.11.3|4| +1.3.6.1.2.1.47.1.1.1.1.11.4|4| +1.3.6.1.2.1.47.1.1.1.1.11.5|4| +1.3.6.1.2.1.47.1.1.1.1.11.6|4| +1.3.6.1.2.1.47.1.1.1.1.11.7|4| +1.3.6.1.2.1.47.1.1.1.1.11.8|4| +1.3.6.1.2.1.47.1.1.1.1.11.9|4| +1.3.6.1.2.1.47.1.1.1.1.11.10|4| +1.3.6.1.2.1.47.1.1.1.1.11.11|4| +1.3.6.1.2.1.47.1.1.1.1.11.12|4| +1.3.6.1.2.1.47.1.1.1.1.11.13|4| +1.3.6.1.2.1.47.1.1.1.1.11.14|4| +1.3.6.1.2.1.47.1.1.1.1.11.15|4| +1.3.6.1.2.1.47.1.1.1.1.11.16|4| +1.3.6.1.2.1.47.1.1.1.1.11.17|4| +1.3.6.1.2.1.47.1.1.1.1.11.18|4| +1.3.6.1.2.1.47.1.1.1.1.11.19|4| +1.3.6.1.2.1.47.1.1.1.1.11.20|4| +1.3.6.1.2.1.47.1.1.1.1.11.21|4| +1.3.6.1.2.1.47.1.1.1.1.11.22|4| +1.3.6.1.2.1.47.1.1.1.1.11.23|4| +1.3.6.1.2.1.47.1.1.1.1.11.24|4| +1.3.6.1.2.1.47.1.1.1.1.11.25|4| +1.3.6.1.2.1.47.1.1.1.1.11.26|4| +1.3.6.1.2.1.47.1.1.1.1.11.27|4| +1.3.6.1.2.1.47.1.1.1.1.11.28|4| +1.3.6.1.2.1.47.1.1.1.1.11.29|4| +1.3.6.1.2.1.47.1.1.1.1.11.30|4| +1.3.6.1.2.1.47.1.1.1.1.11.31|4| +1.3.6.1.2.1.47.1.1.1.1.11.32|4| +1.3.6.1.2.1.47.1.1.1.1.11.33|4| +1.3.6.1.2.1.47.1.1.1.1.11.34|4| +1.3.6.1.2.1.47.1.1.1.1.11.35|4| +1.3.6.1.2.1.47.1.1.1.1.11.36|4| +1.3.6.1.2.1.47.1.1.1.1.11.37|4| +1.3.6.1.2.1.47.1.1.1.1.11.41|4| +1.3.6.1.2.1.47.1.1.1.1.11.42|4| +1.3.6.1.2.1.47.1.1.1.1.11.46|4| +1.3.6.1.2.1.47.1.1.1.1.11.47|4| +1.3.6.1.2.1.47.1.1.1.1.11.48|4| +1.3.6.1.2.1.47.1.1.1.1.11.52|4| +1.3.6.1.2.1.47.1.1.1.1.11.56|4| +1.3.6.1.2.1.47.1.1.1.1.11.57|4| +1.3.6.1.2.1.47.1.1.1.1.11.58|4| +1.3.6.1.2.1.47.1.1.1.1.11.59|4| +1.3.6.1.2.1.47.1.1.1.1.11.60|4| +1.3.6.1.2.1.47.1.1.1.1.11.61|4| +1.3.6.1.2.1.47.1.1.1.1.12.1|4| +1.3.6.1.2.1.47.1.1.1.1.12.2|4|DELL +1.3.6.1.2.1.47.1.1.1.1.12.3|4| +1.3.6.1.2.1.47.1.1.1.1.12.4|4| +1.3.6.1.2.1.47.1.1.1.1.12.5|4| +1.3.6.1.2.1.47.1.1.1.1.12.6|4| +1.3.6.1.2.1.47.1.1.1.1.12.7|4| +1.3.6.1.2.1.47.1.1.1.1.12.8|4| +1.3.6.1.2.1.47.1.1.1.1.12.9|4| +1.3.6.1.2.1.47.1.1.1.1.12.10|4| +1.3.6.1.2.1.47.1.1.1.1.12.11|4| +1.3.6.1.2.1.47.1.1.1.1.12.12|4| +1.3.6.1.2.1.47.1.1.1.1.12.13|4| +1.3.6.1.2.1.47.1.1.1.1.12.14|4| +1.3.6.1.2.1.47.1.1.1.1.12.15|4| +1.3.6.1.2.1.47.1.1.1.1.12.16|4| +1.3.6.1.2.1.47.1.1.1.1.12.17|4| +1.3.6.1.2.1.47.1.1.1.1.12.18|4| +1.3.6.1.2.1.47.1.1.1.1.12.19|4| +1.3.6.1.2.1.47.1.1.1.1.12.20|4| +1.3.6.1.2.1.47.1.1.1.1.12.21|4| +1.3.6.1.2.1.47.1.1.1.1.12.22|4| +1.3.6.1.2.1.47.1.1.1.1.12.23|4| +1.3.6.1.2.1.47.1.1.1.1.12.24|4| +1.3.6.1.2.1.47.1.1.1.1.12.25|4| +1.3.6.1.2.1.47.1.1.1.1.12.26|4| +1.3.6.1.2.1.47.1.1.1.1.12.27|4| +1.3.6.1.2.1.47.1.1.1.1.12.28|4| +1.3.6.1.2.1.47.1.1.1.1.12.29|4| +1.3.6.1.2.1.47.1.1.1.1.12.30|4| +1.3.6.1.2.1.47.1.1.1.1.12.31|4| +1.3.6.1.2.1.47.1.1.1.1.12.32|4| +1.3.6.1.2.1.47.1.1.1.1.12.33|4| +1.3.6.1.2.1.47.1.1.1.1.12.34|4| +1.3.6.1.2.1.47.1.1.1.1.12.35|4| +1.3.6.1.2.1.47.1.1.1.1.12.36|4| +1.3.6.1.2.1.47.1.1.1.1.12.37|4| +1.3.6.1.2.1.47.1.1.1.1.12.41|4| +1.3.6.1.2.1.47.1.1.1.1.12.42|4| +1.3.6.1.2.1.47.1.1.1.1.12.46|4| +1.3.6.1.2.1.47.1.1.1.1.12.47|4| +1.3.6.1.2.1.47.1.1.1.1.12.48|4| +1.3.6.1.2.1.47.1.1.1.1.12.52|4| +1.3.6.1.2.1.47.1.1.1.1.12.56|4| +1.3.6.1.2.1.47.1.1.1.1.12.57|4| +1.3.6.1.2.1.47.1.1.1.1.12.58|4| +1.3.6.1.2.1.47.1.1.1.1.12.59|4| +1.3.6.1.2.1.47.1.1.1.1.12.60|4| +1.3.6.1.2.1.47.1.1.1.1.12.61|4| +1.3.6.1.2.1.47.1.1.1.1.13.1|4| +1.3.6.1.2.1.47.1.1.1.1.13.2|4|DELL MXL 10/40GbE +1.3.6.1.2.1.47.1.1.1.1.13.3|4| +1.3.6.1.2.1.47.1.1.1.1.13.4|4| +1.3.6.1.2.1.47.1.1.1.1.13.5|4| +1.3.6.1.2.1.47.1.1.1.1.13.6|4| +1.3.6.1.2.1.47.1.1.1.1.13.7|4| +1.3.6.1.2.1.47.1.1.1.1.13.8|4| +1.3.6.1.2.1.47.1.1.1.1.13.9|4| +1.3.6.1.2.1.47.1.1.1.1.13.10|4| +1.3.6.1.2.1.47.1.1.1.1.13.11|4| +1.3.6.1.2.1.47.1.1.1.1.13.12|4| +1.3.6.1.2.1.47.1.1.1.1.13.13|4| +1.3.6.1.2.1.47.1.1.1.1.13.14|4| +1.3.6.1.2.1.47.1.1.1.1.13.15|4| +1.3.6.1.2.1.47.1.1.1.1.13.16|4| +1.3.6.1.2.1.47.1.1.1.1.13.17|4| +1.3.6.1.2.1.47.1.1.1.1.13.18|4| +1.3.6.1.2.1.47.1.1.1.1.13.19|4| +1.3.6.1.2.1.47.1.1.1.1.13.20|4| +1.3.6.1.2.1.47.1.1.1.1.13.21|4| +1.3.6.1.2.1.47.1.1.1.1.13.22|4| +1.3.6.1.2.1.47.1.1.1.1.13.23|4| +1.3.6.1.2.1.47.1.1.1.1.13.24|4| +1.3.6.1.2.1.47.1.1.1.1.13.25|4| +1.3.6.1.2.1.47.1.1.1.1.13.26|4| +1.3.6.1.2.1.47.1.1.1.1.13.27|4| +1.3.6.1.2.1.47.1.1.1.1.13.28|4| +1.3.6.1.2.1.47.1.1.1.1.13.29|4| +1.3.6.1.2.1.47.1.1.1.1.13.30|4| +1.3.6.1.2.1.47.1.1.1.1.13.31|4| +1.3.6.1.2.1.47.1.1.1.1.13.32|4| +1.3.6.1.2.1.47.1.1.1.1.13.33|4| +1.3.6.1.2.1.47.1.1.1.1.13.34|4| +1.3.6.1.2.1.47.1.1.1.1.13.35|4| +1.3.6.1.2.1.47.1.1.1.1.13.36|4| +1.3.6.1.2.1.47.1.1.1.1.13.37|4| +1.3.6.1.2.1.47.1.1.1.1.13.41|4| +1.3.6.1.2.1.47.1.1.1.1.13.42|4| +1.3.6.1.2.1.47.1.1.1.1.13.46|4| +1.3.6.1.2.1.47.1.1.1.1.13.47|4| +1.3.6.1.2.1.47.1.1.1.1.13.48|4| +1.3.6.1.2.1.47.1.1.1.1.13.52|4| +1.3.6.1.2.1.47.1.1.1.1.13.56|4| +1.3.6.1.2.1.47.1.1.1.1.13.57|4| +1.3.6.1.2.1.47.1.1.1.1.13.58|4| +1.3.6.1.2.1.47.1.1.1.1.13.59|4| +1.3.6.1.2.1.47.1.1.1.1.13.60|4| +1.3.6.1.2.1.47.1.1.1.1.13.61|4| +1.3.6.1.2.1.47.1.1.1.1.14.1|4| +1.3.6.1.2.1.47.1.1.1.1.14.2|4| +1.3.6.1.2.1.47.1.1.1.1.14.3|4| +1.3.6.1.2.1.47.1.1.1.1.14.4|4| +1.3.6.1.2.1.47.1.1.1.1.14.5|4| +1.3.6.1.2.1.47.1.1.1.1.14.6|4| +1.3.6.1.2.1.47.1.1.1.1.14.7|4| +1.3.6.1.2.1.47.1.1.1.1.14.8|4| +1.3.6.1.2.1.47.1.1.1.1.14.9|4| +1.3.6.1.2.1.47.1.1.1.1.14.10|4| +1.3.6.1.2.1.47.1.1.1.1.14.11|4| +1.3.6.1.2.1.47.1.1.1.1.14.12|4| +1.3.6.1.2.1.47.1.1.1.1.14.13|4| +1.3.6.1.2.1.47.1.1.1.1.14.14|4| +1.3.6.1.2.1.47.1.1.1.1.14.15|4| +1.3.6.1.2.1.47.1.1.1.1.14.16|4| +1.3.6.1.2.1.47.1.1.1.1.14.17|4| +1.3.6.1.2.1.47.1.1.1.1.14.18|4| +1.3.6.1.2.1.47.1.1.1.1.14.19|4| +1.3.6.1.2.1.47.1.1.1.1.14.20|4| +1.3.6.1.2.1.47.1.1.1.1.14.21|4| +1.3.6.1.2.1.47.1.1.1.1.14.22|4| +1.3.6.1.2.1.47.1.1.1.1.14.23|4| +1.3.6.1.2.1.47.1.1.1.1.14.24|4| +1.3.6.1.2.1.47.1.1.1.1.14.25|4| +1.3.6.1.2.1.47.1.1.1.1.14.26|4| +1.3.6.1.2.1.47.1.1.1.1.14.27|4| +1.3.6.1.2.1.47.1.1.1.1.14.28|4| +1.3.6.1.2.1.47.1.1.1.1.14.29|4| +1.3.6.1.2.1.47.1.1.1.1.14.30|4| +1.3.6.1.2.1.47.1.1.1.1.14.31|4| +1.3.6.1.2.1.47.1.1.1.1.14.32|4| +1.3.6.1.2.1.47.1.1.1.1.14.33|4| +1.3.6.1.2.1.47.1.1.1.1.14.34|4| +1.3.6.1.2.1.47.1.1.1.1.14.35|4| +1.3.6.1.2.1.47.1.1.1.1.14.36|4| +1.3.6.1.2.1.47.1.1.1.1.14.37|4| +1.3.6.1.2.1.47.1.1.1.1.14.41|4| +1.3.6.1.2.1.47.1.1.1.1.14.42|4| +1.3.6.1.2.1.47.1.1.1.1.14.46|4| +1.3.6.1.2.1.47.1.1.1.1.14.47|4| +1.3.6.1.2.1.47.1.1.1.1.14.48|4| +1.3.6.1.2.1.47.1.1.1.1.14.52|4| +1.3.6.1.2.1.47.1.1.1.1.14.56|4| +1.3.6.1.2.1.47.1.1.1.1.14.57|4| +1.3.6.1.2.1.47.1.1.1.1.14.58|4| +1.3.6.1.2.1.47.1.1.1.1.14.59|4| +1.3.6.1.2.1.47.1.1.1.1.14.60|4| +1.3.6.1.2.1.47.1.1.1.1.14.61|4| +1.3.6.1.2.1.47.1.1.1.1.15.1|4| +1.3.6.1.2.1.47.1.1.1.1.15.2|4| +1.3.6.1.2.1.47.1.1.1.1.15.3|4| +1.3.6.1.2.1.47.1.1.1.1.15.4|4| +1.3.6.1.2.1.47.1.1.1.1.15.5|4| +1.3.6.1.2.1.47.1.1.1.1.15.6|4| +1.3.6.1.2.1.47.1.1.1.1.15.7|4| +1.3.6.1.2.1.47.1.1.1.1.15.8|4| +1.3.6.1.2.1.47.1.1.1.1.15.9|4| +1.3.6.1.2.1.47.1.1.1.1.15.10|4| +1.3.6.1.2.1.47.1.1.1.1.15.11|4| +1.3.6.1.2.1.47.1.1.1.1.15.12|4| +1.3.6.1.2.1.47.1.1.1.1.15.13|4| +1.3.6.1.2.1.47.1.1.1.1.15.14|4| +1.3.6.1.2.1.47.1.1.1.1.15.15|4| +1.3.6.1.2.1.47.1.1.1.1.15.16|4| +1.3.6.1.2.1.47.1.1.1.1.15.17|4| +1.3.6.1.2.1.47.1.1.1.1.15.18|4| +1.3.6.1.2.1.47.1.1.1.1.15.19|4| +1.3.6.1.2.1.47.1.1.1.1.15.20|4| +1.3.6.1.2.1.47.1.1.1.1.15.21|4| +1.3.6.1.2.1.47.1.1.1.1.15.22|4| +1.3.6.1.2.1.47.1.1.1.1.15.23|4| +1.3.6.1.2.1.47.1.1.1.1.15.24|4| +1.3.6.1.2.1.47.1.1.1.1.15.25|4| +1.3.6.1.2.1.47.1.1.1.1.15.26|4| +1.3.6.1.2.1.47.1.1.1.1.15.27|4| +1.3.6.1.2.1.47.1.1.1.1.15.28|4| +1.3.6.1.2.1.47.1.1.1.1.15.29|4| +1.3.6.1.2.1.47.1.1.1.1.15.30|4| +1.3.6.1.2.1.47.1.1.1.1.15.31|4| +1.3.6.1.2.1.47.1.1.1.1.15.32|4| +1.3.6.1.2.1.47.1.1.1.1.15.33|4| +1.3.6.1.2.1.47.1.1.1.1.15.34|4| +1.3.6.1.2.1.47.1.1.1.1.15.35|4| +1.3.6.1.2.1.47.1.1.1.1.15.36|4| +1.3.6.1.2.1.47.1.1.1.1.15.37|4| +1.3.6.1.2.1.47.1.1.1.1.15.41|4| +1.3.6.1.2.1.47.1.1.1.1.15.42|4| +1.3.6.1.2.1.47.1.1.1.1.15.46|4| +1.3.6.1.2.1.47.1.1.1.1.15.47|4| +1.3.6.1.2.1.47.1.1.1.1.15.48|4| +1.3.6.1.2.1.47.1.1.1.1.15.52|4| +1.3.6.1.2.1.47.1.1.1.1.15.56|4| +1.3.6.1.2.1.47.1.1.1.1.15.57|4| +1.3.6.1.2.1.47.1.1.1.1.15.58|4| +1.3.6.1.2.1.47.1.1.1.1.15.59|4| +1.3.6.1.2.1.47.1.1.1.1.15.60|4| +1.3.6.1.2.1.47.1.1.1.1.15.61|4| +1.3.6.1.2.1.47.1.1.1.1.16.1|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.3|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.4|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.5|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.6|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.7|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.11|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.12|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.13|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.14|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.15|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.17|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.18|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.19|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.20|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.21|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.22|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.23|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.24|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.25|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.26|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.27|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.28|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.29|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.30|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.31|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.32|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.33|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.34|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.35|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.36|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.37|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.41|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.42|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.46|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.47|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.48|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.52|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.56|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.57|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.58|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.59|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.60|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.61|2|2 +1.3.6.1.2.1.47.1.1.1.1.17.1|4| +1.3.6.1.2.1.47.1.1.1.1.17.2|4|2016-03-21 +1.3.6.1.2.1.47.1.1.1.1.17.3|4| +1.3.6.1.2.1.47.1.1.1.1.17.4|4| +1.3.6.1.2.1.47.1.1.1.1.17.5|4| +1.3.6.1.2.1.47.1.1.1.1.17.6|4| +1.3.6.1.2.1.47.1.1.1.1.17.7|4| +1.3.6.1.2.1.47.1.1.1.1.17.8|4| +1.3.6.1.2.1.47.1.1.1.1.17.9|4| +1.3.6.1.2.1.47.1.1.1.1.17.10|4| +1.3.6.1.2.1.47.1.1.1.1.17.11|4| +1.3.6.1.2.1.47.1.1.1.1.17.12|4| +1.3.6.1.2.1.47.1.1.1.1.17.13|4| +1.3.6.1.2.1.47.1.1.1.1.17.14|4| +1.3.6.1.2.1.47.1.1.1.1.17.15|4| +1.3.6.1.2.1.47.1.1.1.1.17.16|4| +1.3.6.1.2.1.47.1.1.1.1.17.17|4| +1.3.6.1.2.1.47.1.1.1.1.17.18|4| +1.3.6.1.2.1.47.1.1.1.1.17.19|4| +1.3.6.1.2.1.47.1.1.1.1.17.20|4| +1.3.6.1.2.1.47.1.1.1.1.17.21|4| +1.3.6.1.2.1.47.1.1.1.1.17.22|4| +1.3.6.1.2.1.47.1.1.1.1.17.23|4| +1.3.6.1.2.1.47.1.1.1.1.17.24|4| +1.3.6.1.2.1.47.1.1.1.1.17.25|4| +1.3.6.1.2.1.47.1.1.1.1.17.26|4| +1.3.6.1.2.1.47.1.1.1.1.17.27|4| +1.3.6.1.2.1.47.1.1.1.1.17.28|4| +1.3.6.1.2.1.47.1.1.1.1.17.29|4| +1.3.6.1.2.1.47.1.1.1.1.17.30|4| +1.3.6.1.2.1.47.1.1.1.1.17.31|4| +1.3.6.1.2.1.47.1.1.1.1.17.32|4| +1.3.6.1.2.1.47.1.1.1.1.17.33|4| +1.3.6.1.2.1.47.1.1.1.1.17.34|4| +1.3.6.1.2.1.47.1.1.1.1.17.35|4| +1.3.6.1.2.1.47.1.1.1.1.17.36|4| +1.3.6.1.2.1.47.1.1.1.1.17.37|4| +1.3.6.1.2.1.47.1.1.1.1.17.41|4| +1.3.6.1.2.1.47.1.1.1.1.17.42|4| +1.3.6.1.2.1.47.1.1.1.1.17.46|4| +1.3.6.1.2.1.47.1.1.1.1.17.47|4| +1.3.6.1.2.1.47.1.1.1.1.17.48|4| +1.3.6.1.2.1.47.1.1.1.1.17.52|4| +1.3.6.1.2.1.47.1.1.1.1.17.56|4| +1.3.6.1.2.1.47.1.1.1.1.17.57|4| +1.3.6.1.2.1.47.1.1.1.1.17.58|4| +1.3.6.1.2.1.47.1.1.1.1.17.59|4| +1.3.6.1.2.1.47.1.1.1.1.17.60|4| +1.3.6.1.2.1.47.1.1.1.1.17.61|4| +1.3.6.1.2.1.47.1.1.1.1.18.1|4| +1.3.6.1.2.1.47.1.1.1.1.18.2|4| +1.3.6.1.2.1.47.1.1.1.1.18.3|4| +1.3.6.1.2.1.47.1.1.1.1.18.4|4| +1.3.6.1.2.1.47.1.1.1.1.18.5|4| +1.3.6.1.2.1.47.1.1.1.1.18.6|4| +1.3.6.1.2.1.47.1.1.1.1.18.7|4| +1.3.6.1.2.1.47.1.1.1.1.18.8|4| +1.3.6.1.2.1.47.1.1.1.1.18.9|4| +1.3.6.1.2.1.47.1.1.1.1.18.10|4| +1.3.6.1.2.1.47.1.1.1.1.18.11|4| +1.3.6.1.2.1.47.1.1.1.1.18.12|4| +1.3.6.1.2.1.47.1.1.1.1.18.13|4| +1.3.6.1.2.1.47.1.1.1.1.18.14|4| +1.3.6.1.2.1.47.1.1.1.1.18.15|4| +1.3.6.1.2.1.47.1.1.1.1.18.16|4| +1.3.6.1.2.1.47.1.1.1.1.18.17|4| +1.3.6.1.2.1.47.1.1.1.1.18.18|4| +1.3.6.1.2.1.47.1.1.1.1.18.19|4| +1.3.6.1.2.1.47.1.1.1.1.18.20|4| +1.3.6.1.2.1.47.1.1.1.1.18.21|4| +1.3.6.1.2.1.47.1.1.1.1.18.22|4| +1.3.6.1.2.1.47.1.1.1.1.18.23|4| +1.3.6.1.2.1.47.1.1.1.1.18.24|4| +1.3.6.1.2.1.47.1.1.1.1.18.25|4| +1.3.6.1.2.1.47.1.1.1.1.18.26|4| +1.3.6.1.2.1.47.1.1.1.1.18.27|4| +1.3.6.1.2.1.47.1.1.1.1.18.28|4| +1.3.6.1.2.1.47.1.1.1.1.18.29|4| +1.3.6.1.2.1.47.1.1.1.1.18.30|4| +1.3.6.1.2.1.47.1.1.1.1.18.31|4| +1.3.6.1.2.1.47.1.1.1.1.18.32|4| +1.3.6.1.2.1.47.1.1.1.1.18.33|4| +1.3.6.1.2.1.47.1.1.1.1.18.34|4| +1.3.6.1.2.1.47.1.1.1.1.18.35|4| +1.3.6.1.2.1.47.1.1.1.1.18.36|4| +1.3.6.1.2.1.47.1.1.1.1.18.37|4| +1.3.6.1.2.1.47.1.1.1.1.18.41|4| +1.3.6.1.2.1.47.1.1.1.1.18.42|4| +1.3.6.1.2.1.47.1.1.1.1.18.46|4| +1.3.6.1.2.1.47.1.1.1.1.18.47|4| +1.3.6.1.2.1.47.1.1.1.1.18.48|4| +1.3.6.1.2.1.47.1.1.1.1.18.52|4| +1.3.6.1.2.1.47.1.1.1.1.18.56|4| +1.3.6.1.2.1.47.1.1.1.1.18.57|4| +1.3.6.1.2.1.47.1.1.1.1.18.58|4| +1.3.6.1.2.1.47.1.1.1.1.18.59|4| +1.3.6.1.2.1.47.1.1.1.1.18.60|4| +1.3.6.1.2.1.47.1.1.1.1.18.61|4| +1.3.6.1.2.1.47.1.3.2.1.2.4.0|6|1.3.6.1.2.1.2.2.1.1.1048580 +1.3.6.1.2.1.47.1.3.2.1.2.5.0|6|1.3.6.1.2.1.2.2.1.1.1048708 +1.3.6.1.2.1.47.1.3.2.1.2.6.0|6|1.3.6.1.2.1.2.2.1.1.1048836 +1.3.6.1.2.1.47.1.3.2.1.2.7.0|6|1.3.6.1.2.1.2.2.1.1.1048964 +1.3.6.1.2.1.47.1.3.2.1.2.8.0|6|1.3.6.1.2.1.2.2.1.1.1049092 +1.3.6.1.2.1.47.1.3.2.1.2.9.0|6|1.3.6.1.2.1.2.2.1.1.1049220 +1.3.6.1.2.1.47.1.3.2.1.2.10.0|6|1.3.6.1.2.1.2.2.1.1.1049348 +1.3.6.1.2.1.47.1.3.2.1.2.11.0|6|1.3.6.1.2.1.2.2.1.1.1049476 +1.3.6.1.2.1.47.1.3.2.1.2.12.0|6|1.3.6.1.2.1.2.2.1.1.1049604 +1.3.6.1.2.1.47.1.3.2.1.2.13.0|6|1.3.6.1.2.1.2.2.1.1.1049732 +1.3.6.1.2.1.47.1.3.2.1.2.14.0|6|1.3.6.1.2.1.2.2.1.1.1049860 +1.3.6.1.2.1.47.1.3.2.1.2.15.0|6|1.3.6.1.2.1.2.2.1.1.1049988 +1.3.6.1.2.1.47.1.3.2.1.2.16.0|6|1.3.6.1.2.1.2.2.1.1.1050116 +1.3.6.1.2.1.47.1.3.2.1.2.17.0|6|1.3.6.1.2.1.2.2.1.1.1050244 +1.3.6.1.2.1.47.1.3.2.1.2.18.0|6|1.3.6.1.2.1.2.2.1.1.1050372 +1.3.6.1.2.1.47.1.3.2.1.2.19.0|6|1.3.6.1.2.1.2.2.1.1.1050500 +1.3.6.1.2.1.47.1.3.2.1.2.20.0|6|1.3.6.1.2.1.2.2.1.1.1050628 +1.3.6.1.2.1.47.1.3.2.1.2.21.0|6|1.3.6.1.2.1.2.2.1.1.1050756 +1.3.6.1.2.1.47.1.3.2.1.2.22.0|6|1.3.6.1.2.1.2.2.1.1.1050884 +1.3.6.1.2.1.47.1.3.2.1.2.23.0|6|1.3.6.1.2.1.2.2.1.1.1051012 +1.3.6.1.2.1.47.1.3.2.1.2.24.0|6|1.3.6.1.2.1.2.2.1.1.1051140 +1.3.6.1.2.1.47.1.3.2.1.2.25.0|6|1.3.6.1.2.1.2.2.1.1.1051268 +1.3.6.1.2.1.47.1.3.2.1.2.26.0|6|1.3.6.1.2.1.2.2.1.1.1051396 +1.3.6.1.2.1.47.1.3.2.1.2.27.0|6|1.3.6.1.2.1.2.2.1.1.1051524 +1.3.6.1.2.1.47.1.3.2.1.2.28.0|6|1.3.6.1.2.1.2.2.1.1.1051652 +1.3.6.1.2.1.47.1.3.2.1.2.29.0|6|1.3.6.1.2.1.2.2.1.1.1051780 +1.3.6.1.2.1.47.1.3.2.1.2.30.0|6|1.3.6.1.2.1.2.2.1.1.1051908 +1.3.6.1.2.1.47.1.3.2.1.2.31.0|6|1.3.6.1.2.1.2.2.1.1.1052036 +1.3.6.1.2.1.47.1.3.2.1.2.32.0|6|1.3.6.1.2.1.2.2.1.1.1052164 +1.3.6.1.2.1.47.1.3.2.1.2.33.0|6|1.3.6.1.2.1.2.2.1.1.1052292 +1.3.6.1.2.1.47.1.3.2.1.2.34.0|6|1.3.6.1.2.1.2.2.1.1.1052420 +1.3.6.1.2.1.47.1.3.2.1.2.35.0|6|1.3.6.1.2.1.2.2.1.1.1052548 +1.3.6.1.2.1.47.1.3.2.1.2.37.0|6|1.3.6.1.2.1.2.2.1.1.1052677 +1.3.6.1.2.1.47.1.3.2.1.2.42.0|6|1.3.6.1.2.1.2.2.1.1.1053189 +1.3.6.1.2.1.47.1.3.2.1.2.48.0|6|1.3.6.1.2.1.2.2.1.1.1053701 +1.3.6.1.2.1.47.1.3.2.1.2.52.0|6|1.3.6.1.2.1.2.2.1.1.1054213 +1.3.6.1.2.1.47.1.3.2.1.2.58.0|6|1.3.6.1.2.1.2.2.1.1.1054724 +1.3.6.1.2.1.47.1.3.2.1.2.59.0|6|1.3.6.1.2.1.2.2.1.1.1054852 +1.3.6.1.2.1.47.1.3.2.1.2.60.0|6|1.3.6.1.2.1.2.2.1.1.1054980 +1.3.6.1.2.1.47.1.3.2.1.2.61.0|6|1.3.6.1.2.1.2.2.1.1.1055108 +1.3.6.1.4.1.674.10895.3000.1.2.100.1.0|4|Dell Networking MXL 10/40GbE switch/router 1.3.6.1.4.1.6027.3.10.1.2.9.1.2.1|66|42 +1.3.6.1.4.1.6027.3.26.1.3.4.1.13.1|66|62 +1.3.6.1.4.1.6027.3.26.1.4.3.1.6.2.1.1|2|2048 +1.3.6.1.4.1.6027.3.26.1.4.4.1.6.2.1.1|66|30 +1.3.6.1.6.3.10.2.1.3.0|2|37402200