diff --git a/html/images/logos/ruijie.png b/html/images/logos/ruijie.png
new file mode 100644
index 0000000000..0165759563
Binary files /dev/null and b/html/images/logos/ruijie.png differ
diff --git a/html/images/os/ruijie.png b/html/images/os/ruijie.png
new file mode 100644
index 0000000000..0165759563
Binary files /dev/null and b/html/images/os/ruijie.png differ
diff --git a/includes/definitions/ruijie.yaml b/includes/definitions/ruijie.yaml
new file mode 100644
index 0000000000..af138ee956
--- /dev/null
+++ b/includes/definitions/ruijie.yaml
@@ -0,0 +1,9 @@
+os: ruijie
+text: 'Ruijie Networks'
+type: network
+icon: ruijie
+mib_dir:
+ - ruijie
+discovery:
+ - sysObjectID:
+ - .1.3.6.1.4.1.4881.1
diff --git a/mibs/ruijie/MY-ENTITY-MIB b/mibs/ruijie/MY-ENTITY-MIB
new file mode 100644
index 0000000000..4fd187b1b3
--- /dev/null
+++ b/mibs/ruijie/MY-ENTITY-MIB
@@ -0,0 +1,617 @@
+-- *****************************************************************
+-- MY-ENTITY-MIB.mib: My Entity MIB file
+--
+-- $Copyright$
+--
+-- *****************************************************************
+--
+
+MY-ENTITY-MIB DEFINITIONS ::= BEGIN
+
+IMPORTS
+ MODULE-IDENTITY,
+ OBJECT-TYPE,
+ NOTIFICATION-TYPE,
+ Integer32,
+ Counter32
+ FROM SNMPv2-SMI
+ TruthValue,
+ DisplayString,
+ RowStatus,
+ MacAddress
+ FROM SNMPv2-TC
+ MODULE-COMPLIANCE,
+ OBJECT-GROUP,
+ NOTIFICATION-GROUP
+ FROM SNMPv2-CONF
+ myMgmt
+ FROM MY-SMI;
+
+myEntityMIB MODULE-IDENTITY
+ LAST-UPDATED "200203200000Z"
+ ORGANIZATION "$Company$"
+ CONTACT-INFO
+ "
+ Tel: $Telephone$
+
+ E-mail: $E-mail$"
+ DESCRIPTION
+ "This module defines my entity mibs."
+ REVISION "200203200000Z"
+ DESCRIPTION
+ "Initial version of this MIB module."
+ ::= { myMgmt 21}
+
+myDeviceMIBObjects OBJECT IDENTIFIER ::= { myEntityMIB 1 }
+
+
+--
+-- device information
+--
+myDeviceMaxNumber OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Max number of devices of the system permitting."
+ ::= { myDeviceMIBObjects 1 }
+
+myDeviceInfoTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MyDeviceInfoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "List of devices."
+ ::= { myDeviceMIBObjects 2 }
+
+myDeviceInfoEntry OBJECT-TYPE
+ SYNTAX MyDeviceInfoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Entry of a device information."
+ INDEX { myDeviceInfoIndex }
+ ::= { myDeviceInfoTable 1 }
+
+MyDeviceInfoEntry ::=
+ SEQUENCE {
+ myDeviceInfoIndex Integer32,
+ myDeviceInfoDescr DisplayString,
+ myDeviceInfoSlotNumber Integer32,
+ myDevicePowerStatus INTEGER,
+ myDeviceMacAddress MacAddress,
+ myDevicePriority Integer32,
+ myDeviceAlias DisplayString,
+ myDeviceSWVersion DisplayString,
+ myDeviceHWVersion DisplayString
+ }
+
+myDeviceInfoIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "An unique value of each devices in system. Its value ranges between
+ 1 and the value of the object myDeviceNumber."
+ ::= { myDeviceInfoEntry 1 }
+
+myDeviceInfoDescr OBJECT-TYPE
+ SYNTAX DisplayString (SIZE(0..32))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description of the device."
+ ::= { myDeviceInfoEntry 2 }
+
+myDeviceInfoSlotNumber OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "The number of slots exists on the device."
+ ::= { myDeviceInfoEntry 3 }
+
+
+myDevicePowerStatus OBJECT-TYPE
+ SYNTAX INTEGER {
+ rpsNoLink (1), -- no rps link or rps not electrifying,
+ rpsLinkAndNoPower (2), -- rps linked but not electrifying,
+ rpsLinkAndReadyForPower (3), -- rps is ready for power,
+ rpsLinkAndPower (4) -- rps is serving as a power
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "The power status of device"
+ ::= { myDeviceInfoEntry 4 }
+
+myDeviceMacAddress OBJECT-TYPE
+ SYNTAX MacAddress
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "The physical address of device"
+ ::= { myDeviceInfoEntry 5 }
+
+myDevicePriority OBJECT-TYPE
+ SYNTAX Integer32(1..10)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "The device priority value"
+ ::= { myDeviceInfoEntry 6 }
+
+myDeviceAlias OBJECT-TYPE
+ SYNTAX DisplayString (SIZE(0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Alias of the device."
+ ::= { myDeviceInfoEntry 7 }
+
+
+myDeviceSWVersion OBJECT-TYPE
+ SYNTAX DisplayString (SIZE(1..32))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description of the device."
+ ::= { myDeviceInfoEntry 8 }
+
+myDeviceHWVersion OBJECT-TYPE
+ SYNTAX DisplayString (SIZE(1..32))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description of the device."
+ ::= { myDeviceInfoEntry 9 }
+
+--
+-- module information
+--
+--myModuleNumber OBJECT-TYPE
+-- SYNTAX Integer32
+-- MAX-ACCESS read-only
+-- STATUS current
+-- DESCRIPTION
+-- "Current number of modules in the system."
+-- ::= { myDeviceMIBObjects 2 }
+
+mySlotInfoTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MySlotInfoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "a list of module Entries."
+ ::= { myDeviceMIBObjects 3 }
+
+mySlotInfoEntry OBJECT-TYPE
+ SYNTAX MySlotInfoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Entry containing status information about one slot."
+ INDEX { mySlotInfoDeviceIndex, mySlotInfoIndex }
+ ::= { mySlotInfoTable 1 }
+
+MySlotInfoEntry ::=
+ SEQUENCE {
+ mySlotInfoDeviceIndex Integer32,
+ mySlotInfoIndex Integer32,
+ mySlotModuleInfoDescr DisplayString,
+ mySlotInfoPortNumber Integer32,
+ mySlotInfoPortMaxNumber Integer32,
+ mySlotInfoDesc DisplayString
+ }
+
+mySlotInfoDeviceIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "The index of the device, that the slot exists on."
+ ::= { mySlotInfoEntry 1 }
+
+mySlotInfoIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "A unique value for each slot exist on the device specified by
+ the field mySlotInfoDeviceIndex, Its value ranges
+ between 1 and the value of the solt num of this device."
+ ::= { mySlotInfoEntry 2 }
+
+mySlotModuleInfoDescr OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Descriptions for the module in the Slot. just like 's1902m' etc. It is a
+ unique value for identifing a kind of module.This value will be null string
+ if slot is empty is NULL"
+ ::= { mySlotInfoEntry 3 }
+
+mySlotInfoPortNumber OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Number of ports on this slot.This value will be 0 if slot is empty"
+ ::= { mySlotInfoEntry 4 }
+
+mySlotInfoPortMaxNumber OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Max number of ports on this slot has possibly."
+ ::= { mySlotInfoEntry 5 }
+
+mySlotInfoDesc OBJECT-TYPE
+ SYNTAX DisplayString(SIZE(0..32))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Description of the slot,the same as the pannel show."
+ ::= { mySlotInfoEntry 6 }
+--
+--ModuleTempState
+--
+myModuleTempStateTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MyModuleTempStateEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myDeviceMIBObjects 4 }
+
+myModuleTempStateEntry OBJECT-TYPE
+ SYNTAX MyModuleTempStateEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ INDEX { myModuleTempStateDeviceIndex, myModuleTempStateIndex }
+ ::= { myModuleTempStateTable 1 }
+
+MyModuleTempStateEntry ::=
+ SEQUENCE {
+ myModuleTempStateDeviceIndex Integer32,
+ myModuleTempStateIndex Integer32,
+ myModuleTempState INTEGER
+ }
+
+myModuleTempStateDeviceIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myModuleTempStateEntry 1 }
+
+myModuleTempStateIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myModuleTempStateEntry 2 }
+
+myModuleTempState OBJECT-TYPE
+ SYNTAX INTEGER{
+ tempNormal(1),
+ tempWarning(2)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myModuleTempStateEntry 3 }
+
+myPowerStateTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MyPowerStateEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myDeviceMIBObjects 5 }
+
+myPowerStateEntry OBJECT-TYPE
+ SYNTAX MyPowerStateEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ INDEX { myPowerStateDeviceIndex, myPowerStateIndex }
+ ::= { myPowerStateTable 1 }
+
+MyPowerStateEntry ::=
+ SEQUENCE {
+ myPowerStateDeviceIndex Integer32,
+ myPowerStateIndex Integer32,
+ myPowerState INTEGER
+ }
+
+myPowerStateDeviceIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myPowerStateEntry 1 }
+
+myPowerStateIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myPowerStateEntry 2 }
+
+myPowerState OBJECT-TYPE
+ SYNTAX INTEGER{
+ noLink(1), --no exist
+ linkAndNoPower(2), --exist but no power
+ linkAndReadyForPower(3), --exist and ready for power
+ linkAndPower(4), --normal power
+ linkAndPowerAbnormal(5) --power,but abnormal at fan
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myPowerStateEntry 3 }
+
+
+myFanStateTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MyFanStateEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myDeviceMIBObjects 6 }
+
+myFanStateEntry OBJECT-TYPE
+ SYNTAX MyFanStateEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ INDEX { myFanStateDeviceIndex, myFanStateIndex }
+ ::= { myFanStateTable 1 }
+
+MyFanStateEntry ::=
+ SEQUENCE {
+ myFanStateDeviceIndex Integer32,
+ myFanStateIndex Integer32,
+ myFanState INTEGER
+ }
+
+myFanStateDeviceIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myFanStateEntry 1 }
+
+myFanStateIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myFanStateEntry 2 }
+
+myFanState OBJECT-TYPE
+ SYNTAX INTEGER{
+ work(1), --fan working
+ stop(2) --fan stopping or no exist
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myFanStateEntry 3 }
+
+
+myEntityMIBTraps OBJECT IDENTIFIER ::= { myEntityMIB 2 }
+
+myEntityStateChgDesc OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ "The description of entity change."
+ ::= { myEntityMIBTraps 1 }
+
+myEntityStatusChange NOTIFICATION-TYPE
+ OBJECTS {myEntityStateChgDesc}
+ STATUS current
+ DESCRIPTION
+ "while status of the entity changed, then this trap will be sent."
+ ::= { myEntityMIBTraps 2 }
+
+myTemperatureWarningDesc OBJECT-TYPE
+ SYNTAX DisplayString (SIZE(0..256))
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myEntityMIBTraps 3 }
+
+myTemperatureWarning NOTIFICATION-TYPE
+ OBJECTS { myTemperatureWarningDesc }
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myEntityMIBTraps 4 }
+
+
+-- conformance information
+
+myDeviceMIBConformance OBJECT IDENTIFIER ::= { myEntityMIB 3 }
+myDeviceMIBCompliances OBJECT IDENTIFIER ::= { myDeviceMIBConformance 1 }
+myDeviceMIBGroups OBJECT IDENTIFIER ::= { myDeviceMIBConformance 2 }
+
+
+-- compliance statements
+
+myDeviceMIBCompliance MODULE-COMPLIANCE
+ STATUS current
+ DESCRIPTION
+ "The compliance statement for entities which implement
+ the My Device MIB"
+ MODULE -- this module
+ MANDATORY-GROUPS { myDeviceInfoMIBGroup,
+ myModuleInfoMIBGroup
+ }
+ GROUP myOptionalDevInfoMIBGroup
+ DESCRIPTION
+ "This group is optional for those system which support device priority,alias and macaddress
+ information"
+
+ GROUP myEntityChgDescGroup
+ DESCRIPTION
+ "This group is mandatory only for those system which support entity
+ change notification."
+
+ GROUP myDeviceMIBNotificationGroup
+ DESCRIPTION
+ "This group is mandatory only for those system which support entity
+ change notification."
+
+ GROUP myModuleTempStateGroup
+ DESCRIPTION
+ ""
+
+ GROUP myPowerStateGroup
+ DESCRIPTION
+ ""
+
+ GROUP myFanStateGroup
+ DESCRIPTION
+ ""
+
+ GROUP myTemperatureWarningDescGroup
+ DESCRIPTION
+ ""
+
+ GROUP myTemperatureWarningGroup
+ DESCRIPTION
+ ""
+
+ ::= { myDeviceMIBCompliances 1 }
+
+-- units of conformance
+
+myDeviceInfoMIBGroup OBJECT-GROUP
+ OBJECTS {
+ myDeviceMaxNumber,
+ myDeviceInfoIndex,
+ myDeviceInfoDescr,
+ myDeviceInfoSlotNumber,
+ myDevicePowerStatus
+ }
+ STATUS current
+ DESCRIPTION
+ "A collection of objects providing device information to a
+ My agent."
+ ::= { myDeviceMIBGroups 1 }
+
+myOptionalDevInfoMIBGroup OBJECT-GROUP
+ OBJECTS {
+ myDeviceMacAddress,
+ myDevicePriority,
+ myDeviceAlias,
+ myDeviceSWVersion,
+ myDeviceHWVersion
+ }
+ STATUS current
+ DESCRIPTION
+ "A collection of objects providing optional device information to a
+ My agent."
+ ::= { myDeviceMIBGroups 2 }
+
+myModuleInfoMIBGroup OBJECT-GROUP
+ OBJECTS {
+ mySlotInfoDeviceIndex,
+ mySlotInfoIndex,
+ mySlotModuleInfoDescr,
+ mySlotInfoPortNumber,
+ mySlotInfoPortMaxNumber,
+ mySlotInfoDesc
+ }
+ STATUS current
+ DESCRIPTION
+ "A collection of objects providing module information to a
+ My agent."
+ ::= { myDeviceMIBGroups 3 }
+
+myEntityChgDescGroup OBJECT-GROUP
+ OBJECTS {myEntityStateChgDesc}
+ STATUS current
+ DESCRIPTION
+ "Objects that providing a literal description of entity's change."
+ ::= { myDeviceMIBGroups 4 }
+
+myDeviceMIBNotificationGroup NOTIFICATION-GROUP
+ NOTIFICATIONS {myEntityStatusChange}
+ STATUS current
+ DESCRIPTION
+ "The collection of notifications which used to inform entity general status information"
+ ::= { myDeviceMIBGroups 5}
+
+myModuleTempStateGroup OBJECT-GROUP
+ OBJECTS {
+ myModuleTempStateDeviceIndex,
+ myModuleTempStateIndex,
+ myModuleTempState
+ }
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myDeviceMIBGroups 6 }
+
+myPowerStateGroup OBJECT-GROUP
+ OBJECTS {
+ myPowerStateDeviceIndex,
+ myPowerStateIndex,
+ myPowerState
+ }
+ STATUS current
+ DESCRIPTION
+ "."
+ ::= { myDeviceMIBGroups 7 }
+
+myFanStateGroup OBJECT-GROUP
+ OBJECTS {
+ myFanStateDeviceIndex,
+ myFanStateIndex,
+ myFanState
+ }
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myDeviceMIBGroups 8 }
+
+myTemperatureWarningDescGroup OBJECT-GROUP
+ OBJECTS { myTemperatureWarningDesc }
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myDeviceMIBGroups 9 }
+
+myTemperatureWarningGroup NOTIFICATION-GROUP
+ NOTIFICATIONS { myTemperatureWarning }
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myDeviceMIBGroups 10}
+
+
+-- definitions in RFC 1213 made
+
+
+END
diff --git a/mibs/ruijie/MY-FILE-MIB b/mibs/ruijie/MY-FILE-MIB
new file mode 100644
index 0000000000..ca9af2c08d
--- /dev/null
+++ b/mibs/ruijie/MY-FILE-MIB
@@ -0,0 +1,256 @@
+-- *****************************************************************
+-- MY-FILE-MIB.mib: My File MIB file
+--
+-- $Copyright$
+--
+-- *****************************************************************
+--
+
+MY-FILE-MIB DEFINITIONS ::= BEGIN
+
+IMPORTS
+ MODULE-IDENTITY,
+ OBJECT-TYPE,
+ NOTIFICATION-TYPE,
+ Integer32,
+ Counter32
+ FROM SNMPv2-SMI
+ TruthValue,
+ DisplayString,
+ RowStatus
+ FROM SNMPv2-TC
+ MODULE-COMPLIANCE,
+ OBJECT-GROUP
+ FROM SNMPv2-CONF
+ myMgmt
+ FROM MY-SMI;
+
+myFileMIB MODULE-IDENTITY
+ LAST-UPDATED "200203200000Z"
+ ORGANIZATION "$Company$"
+ CONTACT-INFO
+ "
+ Tel: $Telephone$
+
+ E-mail: $E-mail$"
+ DESCRIPTION
+ "This module defines my file mibs."
+ REVISION "200203200000Z"
+ DESCRIPTION
+ "Initial version of this MIB module."
+ ::= { myMgmt 11}
+
+myFileMIBObjects OBJECT IDENTIFIER ::= { myFileMIB 1 }
+
+myFileTransTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MyFileTransEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "list of file transfer parameters."
+ ::= { myFileMIBObjects 1 }
+
+myFileTransEntry OBJECT-TYPE
+ SYNTAX MyFileTransEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Entry of file transfer parameters."
+ INDEX { myFileTransIndex }
+ ::= { myFileTransTable 1 }
+
+MyFileTransEntry ::=
+ SEQUENCE {
+ myFileTransIndex Integer32,
+ myFileTransMeans INTEGER,
+ myFileTransOperType INTEGER,
+ myFileTransSrcFileName DisplayString,
+ myFileTransDescFileName DisplayString,
+ myFileTransServerAddr IpAddress,
+ myFileTransResult INTEGER,
+ myFileTransComplete TruthValue,
+ myFileTransDataLength Gauge32,
+ myFileTransEntryStatus RowStatus
+ }
+
+myFileTransIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "A value unique idenify the entry in the file transfer table.
+ the index is assigned by agent random."
+ ::= { myFileTransEntry 1 }
+
+myFileTransMeans OBJECT-TYPE
+ SYNTAX INTEGER{
+ tftp(1),
+ xmodem(2),
+ other(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "The way to be used for any copy. Transport file by xmodem work in
+ only in outband.other(3) mean transfer file by a way other than tftp(1)
+ and xmodem(2)"
+ DEFVAL { tftp }
+ ::= { myFileTransEntry 2 }
+
+myFileTransOperType OBJECT-TYPE
+ SYNTAX INTEGER {
+ upload(1), -- upload a file to the board
+ download(2), -- download file frome the board
+ synchronize(3) -- synchronize file
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "This object can be used for specifying the file transfer
+ operation type, upload or download. using tftp service
+ file transfer can implemente between the station and agent.
+ in current agent,if synchronizing file,this object has no weight."
+ ::= { myFileTransEntry 3 }
+
+myFileTransSrcFileName OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "This object tell the tftp client to know the file name
+ required to be received in tftp transfer mode;and send the file name list
+ which separate with '\t' to synchronizing server."
+ ::= { myFileTransEntry 4 }
+
+myFileTransDescFileName OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "File name the file will save as. The object has no weight to file synchronizing."
+ ::= { myFileTransEntry 5 }
+
+myFileTransServerAddr OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "This object tell the address of transfer destination
+ when required for file transmittion. "
+ ::= { myFileTransEntry 6 }
+
+myFileTransResult OBJECT-TYPE
+ SYNTAX INTEGER {
+ success(1),
+ failure(2),
+ parametersIllegel(3),
+ timeout(4)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "While the status of this entry is completed, this field of this
+ entry is valid, and carry the operation result of file transfer."
+ ::= { myFileTransEntry 7 }
+
+myFileTransComplete OBJECT-TYPE
+ SYNTAX TruthValue
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "while the file transfer of use parameters stored by this entry is
+ completed the value of this field will be true(1), and if not completed
+ false(2)."
+ ::= { myFileTransEntry 8 }
+
+myFileTransDataLength OBJECT-TYPE
+ SYNTAX Gauge32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "the file length transferred, after the transfer is complete, this
+ value is come to valid -- the valude of field myFileTransComplete
+ is true(1)."
+ ::= { myFileTransEntry 9 }
+
+myFileTransEntryStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION
+ "entry status of this entry. and the means in this enviraments can
+ reffer to the text-convention definition of the RowStatus."
+ ::= { myFileTransEntry 10 }
+
+myFileSystemMaxRoom OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "the max room of file system in units of byte."
+ ::= { myFileMIBObjects 2 }
+
+myFileSystemAvailableRoom OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "the available room of file system in units of byte."
+ ::= { myFileMIBObjects 3 }
+
+-- conformance information
+
+myFileMIBConformance OBJECT IDENTIFIER ::= { myFileMIB 2 }
+myFileMIBCompliances OBJECT IDENTIFIER ::= { myFileMIBConformance 1 }
+myFileMIBGroups OBJECT IDENTIFIER ::= { myFileMIBConformance 2 }
+
+
+-- compliance statements
+
+myFileMIBCompliance MODULE-COMPLIANCE
+ STATUS current
+ DESCRIPTION
+ "The compliance statement for entities which implement
+ the My File MIB"
+ MODULE -- this module
+ MANDATORY-GROUPS { myFileMIBGroup }
+ GROUP myFileTransMeansMIBGroup
+ DESCRIPTION
+ "This group is mandatory only for those system which support
+ other transport protocal but tftp."
+ ::= { myFileMIBCompliances 1 }
+
+
+-- units of conformance
+
+myFileMIBGroup OBJECT-GROUP
+ OBJECTS {
+ myFileTransIndex,
+ myFileTransOperType,
+ myFileTransSrcFileName,
+ myFileTransDescFileName,
+ myFileTransServerAddr,
+ myFileTransResult,
+ myFileTransComplete,
+ myFileTransDataLength,
+ myFileTransEntryStatus,
+ myFileSystemMaxRoom,
+ myFileSystemAvailableRoom
+ }
+ STATUS current
+ DESCRIPTION
+ "A collection of objects providing file ability to a
+ My agent."
+ ::= { myFileMIBGroups 1 }
+
+myFileTransMeansMIBGroup OBJECT-GROUP
+ OBJECTS {
+ myFileTransMeans
+ }
+ STATUS current
+ DESCRIPTION
+ "A collection of objects providing myFileTransMeans to a
+ My agent."
+ ::= { myFileMIBGroups 2 }
+
+END
diff --git a/mibs/ruijie/MY-INTERFACE-MIB b/mibs/ruijie/MY-INTERFACE-MIB
new file mode 100644
index 0000000000..e9fc9eed21
--- /dev/null
+++ b/mibs/ruijie/MY-INTERFACE-MIB
@@ -0,0 +1,649 @@
+-- *****************************************************************
+-- MY-INTERFACE-MIB.mib: My interface MIB file
+--
+-- $Copyright$
+--
+-- *****************************************************************
+--
+
+MY-INTERFACE-MIB DEFINITIONS ::= BEGIN
+
+IMPORTS
+ MODULE-IDENTITY,
+ OBJECT-TYPE,
+ NOTIFICATION-TYPE,
+ Integer32,
+ Counter32,
+ IpAddress
+ FROM SNMPv2-SMI
+ VlanId
+ FROM Q-BRIDGE-MIB
+ TruthValue,
+ DisplayString,
+ RowStatus,
+ MacAddress
+ FROM SNMPv2-TC
+ MODULE-COMPLIANCE,
+ OBJECT-GROUP,
+ NOTIFICATION-GROUP
+ FROM SNMPv2-CONF
+ ConfigStatus,
+ MemberMap,
+ IfIndex
+ FROM MY-TC
+ EnabledStatus
+ FROM P-BRIDGE-MIB
+ myMgmt
+ FROM MY-SMI;
+
+myInterfaceMIB MODULE-IDENTITY
+ LAST-UPDATED "200203200000Z"
+ ORGANIZATION "$Company$"
+ CONTACT-INFO
+ "
+ Tel: $Telephone$
+
+ E-mail: $E-mail$"
+ DESCRIPTION
+ "This module defines my interface mibs."
+ REVISION "200203200000Z"
+ DESCRIPTION
+ "Initial version of this MIB module."
+ ::= { myMgmt 10}
+
+myIfConfigMIBObjects OBJECT IDENTIFIER ::= { myInterfaceMIB 1 }
+
+
+myIfTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MyIfEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "list of interface basic configuration objects."
+ ::= { myIfConfigMIBObjects 1 }
+
+myIfEntry OBJECT-TYPE
+ SYNTAX MyIfEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Entry contains interface basic configurations."
+ INDEX { myIfIndex }
+ ::= { myIfTable 1 }
+
+MyIfEntry ::=
+ SEQUENCE {
+ myIfIndex IfIndex,
+ myIfPortType INTEGER,
+ myIfFlowControlAdminStatus INTEGER,
+ myIfFlowControlOperStatus EnabledStatus,
+ myIfAdminSpeed INTEGER,
+ myIfAdminDuplex INTEGER,
+ myIfOperSpeed INTEGER,
+ myIfOperDuplex INTEGER,
+ myIfManageStatus EnabledStatus,
+ myIfIpBroadcast IpAddress,
+ myIfLayer INTEGER,
+ myIfMode INTEGER,
+ myIfCounterClear Integer32,
+ myIfEntryStatus ConfigStatus
+ }
+
+myIfIndex OBJECT-TYPE
+ SYNTAX IfIndex
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ " "
+ ::= { myIfEntry 1 }
+
+myIfPortType OBJECT-TYPE
+ SYNTAX INTEGER {
+ unknown(1),
+ port10M100MBASETX(2),
+ port100MBASEFXL(3),
+ port100MBASEFXS(4),
+ port1000MBASESX(5),
+ port1000MBASELX(6),
+ port1000MBASETX(7),
+ portGBIC(8),
+ port100MBASEFX(9),
+ port1000MBASEFX(10),
+ portSFP(11),
+ port10GBASESR(12),
+ port10GBASELR(13),
+ port10GBASEER(14),
+ port10GBASELX4(15),
+ port10GBASESW(16),
+ port10GBASELW(17),
+ port10GBASEEW(18)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Port type of this port, list as above.
+ port100MBASEFX indicates that port is port100MBASEFXL or port100MBASEFXS,
+ and system doesn't distinguish.
+ port1000MBASEFX indicates that port is port1000MBASEFLX or port1000MBASEFSX,
+ and system doesn't distinguish.
+
+ This attribute apply physical port"
+ ::= { myIfEntry 2 }
+
+myIfFlowControlAdminStatus OBJECT-TYPE
+ SYNTAX INTEGER {
+ enabled(1),
+ disabled(2),
+ autonego(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Flow control of a port management status.
+
+ This attribute apply physical port and aggreate port"
+ ::= { myIfEntry 3 }
+
+myIfFlowControlOperStatus OBJECT-TYPE
+ SYNTAX EnabledStatus
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Oper status: after the negotiation between two ports connetted
+ the flow contrl status.
+
+ This attribute apply physical port and aggreate port"
+ ::= { myIfEntry 4 }
+
+myIfAdminSpeed OBJECT-TYPE
+ SYNTAX INTEGER {
+ speed10Mb(1),
+ speed100Mb(2),
+ speed1000Mb(3),
+ autonego(4),
+ speed10Gb(5)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "port speed settings.
+
+ This attribute apply physical port and aggreate port"
+ ::= { myIfEntry 5 }
+
+myIfAdminDuplex OBJECT-TYPE
+ SYNTAX INTEGER {
+ full(1),
+ half(2),
+ autonego(3)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "port duplex settings.
+
+ This attribute apply physical port and aggreate port"
+ ::= { myIfEntry 6 }
+
+myIfOperSpeed OBJECT-TYPE
+ SYNTAX INTEGER {
+ speed10Mb(1),
+ speed100Mb(2),
+ speed1000Mb(3),
+ unknown(4),
+ speed10Gb(5)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "After two port have negotiated the speed status,and this object
+ is the working speed status. while the port link status is down ,
+ then the speed status is unknown(4).
+
+ This attribute apply physical port and aggreate port"
+ ::= { myIfEntry 7 }
+
+myIfOperDuplex OBJECT-TYPE
+ SYNTAX INTEGER {
+ full(1),
+ half(2),
+ unknown(3)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "After two port have negotiated the duplex status, and this object
+ is the working duplex status. while the port link status is down ,
+ then the speed status is unknown(3).
+
+ This attribute apply physical port and aggreate port"
+ ::= { myIfEntry 8 }
+
+myIfManageStatus OBJECT-TYPE
+ SYNTAX EnabledStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Management status of the interface."
+ DEFVAL { enabled }
+ ::={myIfEntry 9}
+
+myIfIpBroadcast OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Broadcast address of the interface ."
+ ::= { myIfEntry 10 }
+
+
+myIfLayer OBJECT-TYPE
+ SYNTAX INTEGER {
+ layer-2(1), -- the interface is a interface of L2
+ layer-3(2) -- the interface is a interface of L3
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myIfEntry 11 }
+
+myIfMode OBJECT-TYPE
+ SYNTAX INTEGER {
+ access(1), -- the mode of interface is access port
+ trunk(2), -- the mode of interface is trunk port
+ dot1q-tunnel(3), -- the mode of interface is 802.1q tunnel port
+ hybrid(4), -- the mode of interface is hybrid port
+ other(5)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "This value is meaning for only physical port and aggreate port"
+ ::= { myIfEntry 12 }
+
+myIfCounterClear OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Setting its to any value but 0, will clear counters of this interface.
+ Setting its value to 0 will cause no action of the agent. and when
+ query will always return 0. "
+ ::= { myIfEntry 13 }
+
+myIfEntryStatus OBJECT-TYPE
+ SYNTAX ConfigStatus
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION
+ "Status of this entry, set this object to valid will create a interface,
+ and set its value to invalid will delete the interface of this entry."
+ ::= { myIfEntry 14 }
+
+
+myIfIpTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MyIfIpEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "A list of interface ip configuration entries."
+ ::= { myIfConfigMIBObjects 2}
+
+myIfIpEntry OBJECT-TYPE
+ SYNTAX MyIfIpEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "An entry containing configuration information applicable
+ to a Layer3 interface."
+ INDEX { myIfIpIfIndex, myIfIpId, myIfIp}
+ ::= { myIfIpTable 1 }
+
+MyIfIpEntry ::=
+ SEQUENCE {
+ myIfIpIfIndex IfIndex,
+ myIfIpId INTEGER,
+ myIfIp IpAddress,
+ myIfIpMask IpAddress,
+ myIfIpEntryStatus RowStatus
+ }
+myIfIpIfIndex OBJECT-TYPE
+ SYNTAX IfIndex
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "A unique value, for each Layer3 interface."
+ ::= { myIfIpEntry 1 }
+
+myIfIpId OBJECT-TYPE
+ SYNTAX INTEGER{
+ primary(1), -- primary ip address of Layer3 interface
+ secondary(2) -- secondary ip address of Layer3 interface
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Type of interface ip address."
+ ::= { myIfIpEntry 2 }
+
+myIfIp OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Ip address of the interface myIfIndex refer to."
+ ::= { myIfIpEntry 3 }
+
+myIfIpMask OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Ip mask of the interface ip address."
+ ::= { myIfIpEntry 4 }
+
+myIfIpEntryStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION
+ "entry status of this entry. and the means in this enviraments can
+ reffer to the text-convention definition of the RowStatus."
+ ::= { myIfIpEntry 5 }
+
+
+myIfStatusTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MyIfStatusEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "list of interface status. Status information include some error state and
+ result of examining to the interface,etc."
+ ::= { myIfConfigMIBObjects 3 }
+
+myIfStatusEntry OBJECT-TYPE
+ SYNTAX MyIfStatusEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Entry contains interface status information."
+ INDEX { myIfStatusIndex }
+ ::= { myIfStatusTable 1 }
+
+MyIfStatusEntry ::=
+ SEQUENCE {
+ myIfStatusIndex IfIndex,
+ myIfStatusLoopBackExamine Integer32,
+ myIfErrorStatus INTEGER,
+ myIfLineDetect Integer32
+ }
+
+myIfStatusIndex OBJECT-TYPE
+ SYNTAX IfIndex
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ " "
+ ::= { myIfStatusEntry 1 }
+
+myIfStatusLoopBackExamine OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Setting its to any value but 0, will Checking whether this port or aggreate can
+ receive and send packets normally, It indicates that port or aggreate is normal
+ if opertion is success.
+ Setting its value to 0 will cause no action of the agent. and when
+ query will always return 0.
+
+ This attribute apply physical port and aggreate port"
+ ::= { myIfStatusEntry 2 }
+
+myIfErrorStatus OBJECT-TYPE
+ SYNTAX INTEGER {
+ no-error(1), -- port is enabled normal
+ err-disable-bpduguard(2), -- port is disabled by port receive BPDU packet when port
+ -- enable BPDU guard
+ err-disable-ptsecurity(3) -- port is disabled by port security is violatd
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Port's error status information"
+ ::= { myIfStatusEntry 3 }
+
+
+myIfLineDetect OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myIfStatusEntry 4 }
+
+myGlobalIfDisableRecovery OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Setting its to any value but 0, the interfaces which is shutted down by
+ some error happened will recovery from disabled status .
+ Setting its value to 0 will cause no action of the agent. and when
+ query will always return 0.
+
+ This attribute apply physical port and aggreate port"
+ ::= { myIfConfigMIBObjects 4 }
+
+--
+-- portType Choose
+--
+myPortTypeChooseTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MyPortTypeChooseEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myIfConfigMIBObjects 5 }
+
+myPortTypeChooseEntry OBJECT-TYPE
+ SYNTAX MyPortTypeChooseEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ INDEX { myPortTypeChooseIndex }
+ ::= { myPortTypeChooseTable 1 }
+
+MyPortTypeChooseEntry ::=
+ SEQUENCE {
+ myPortTypeChooseIndex IfIndex,
+ myPortTypeChooseType INTEGER
+ }
+
+myPortTypeChooseIndex OBJECT-TYPE
+ SYNTAX IfIndex
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myPortTypeChooseEntry 1 }
+
+myPortTypeChooseType OBJECT-TYPE
+ SYNTAX INTEGER {
+ fiber(1), --
+ copper(2) --
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myPortTypeChooseEntry 2 }
+
+--
+-- mtu
+--
+myIfMTUTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MyIfMTUEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myIfConfigMIBObjects 6 }
+
+myIfMTUEntry OBJECT-TYPE
+ SYNTAX MyIfMTUEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ INDEX { myIfMTUIndex }
+ ::= { myIfMTUTable 1 }
+
+MyIfMTUEntry ::=
+ SEQUENCE {
+ myIfMTUIndex IfIndex,
+ myIfMTU Integer32
+ }
+
+myIfMTUIndex OBJECT-TYPE
+ SYNTAX IfIndex
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myIfMTUEntry 1 }
+
+myIfMTU OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myIfMTUEntry 2 }
+
+-- Notification
+myInterfaceTraps OBJECT IDENTIFIER ::= { myInterfaceMIB 2 }
+
+lineDetectStatus OBJECT-TYPE
+ SYNTAX INTEGER{
+ ok(1), --
+ open(2), --
+ short(3) --
+ }
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ "The type of storm of interface"
+ ::= { myInterfaceTraps 1 }
+
+lineDetectPosition OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myInterfaceTraps 2 }
+
+lineQualityDetect NOTIFICATION-TYPE
+ OBJECTS {ifIndex, lineDetectStatus,lineDetectPosition}
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myInterfaceTraps 3 }
+
+myInterfaceMIBConformance OBJECT IDENTIFIER ::= { myInterfaceMIB 3 }
+myInterfaceMIBCompliances OBJECT IDENTIFIER ::= { myInterfaceMIBConformance 1 }
+myInterfaceMIBGroups OBJECT IDENTIFIER ::= { myInterfaceMIBConformance 2 }
+
+
+-- compliance statements
+
+myInterfaceMIBCompliance MODULE-COMPLIANCE
+ STATUS current
+ DESCRIPTION
+ "The compliance statement for entities which implement
+ the My Interface MIB"
+ MODULE -- this module
+ MANDATORY-GROUPS { myInterfaceMIBGroup
+ }
+
+ GROUP myPortTypeChooseMibGroup
+ DESCRIPTION
+ ""
+
+ GROUP myIfMTUMibGroup
+ DESCRIPTION
+ ""
+
+ GROUP myIfLineDetectGroup
+ DESCRIPTION
+ ""
+ ::= { myInterfaceMIBCompliances 1 }
+
+-- units of conformance
+
+myInterfaceMIBGroup OBJECT-GROUP
+ OBJECTS {
+ myIfIndex,
+ myIfPortType,
+ myIfFlowControlAdminStatus,
+ myIfFlowControlOperStatus,
+ myIfAdminSpeed,
+ myIfAdminDuplex,
+ myIfOperSpeed,
+ myIfOperDuplex,
+ myIfManageStatus,
+ myIfIpBroadcast,
+ myIfLayer,
+ myIfMode,
+ myIfCounterClear,
+ myIfEntryStatus,
+ myIfIpIfIndex,
+ myIfIpId,
+ myIfIp,
+ myIfIpMask,
+ myIfIpEntryStatus,
+ myIfStatusIndex,
+ myIfStatusLoopBackExamine,
+ myIfErrorStatus,
+ myGlobalIfDisableRecovery
+ }
+ STATUS current
+ DESCRIPTION
+ "A collection of objects providing interface basic configure ."
+ ::= { myInterfaceMIBGroups 1 }
+
+myPortTypeChooseMibGroup OBJECT-GROUP
+ OBJECTS {
+ myPortTypeChooseIndex,
+ myPortTypeChooseType
+ }
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myInterfaceMIBGroups 2 }
+
+
+myIfMTUMibGroup OBJECT-GROUP
+ OBJECTS {
+ myIfMTUIndex,
+ myIfMTU
+ }
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myInterfaceMIBGroups 3 }
+
+myIfLineDetectGroup OBJECT-GROUP
+ OBJECTS {
+ myIfLineDetect,
+ lineQualityDetect
+ }
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { myInterfaceMIBGroups 4 }
+
+END
diff --git a/mibs/ruijie/MY-PRODUCTS-MIB b/mibs/ruijie/MY-PRODUCTS-MIB
new file mode 100644
index 0000000000..bf80218a6a
--- /dev/null
+++ b/mibs/ruijie/MY-PRODUCTS-MIB
@@ -0,0 +1,324 @@
+-- *****************************************************************
+-- MY-PRODUCTS-MIB.mib: My Product Object Identifier Assignments
+--
+-- $Copyright$
+--
+-- *****************************************************************
+--
+
+MY-PRODUCTS-MIB DEFINITIONS ::= BEGIN
+
+IMPORTS
+ MODULE-IDENTITY,
+ OBJECT-TYPE
+ FROM SNMPv2-SMI
+ MODULE-COMPLIANCE,
+ OBJECT-GROUP,
+ NOTIFICATION-GROUP
+ FROM SNMPv2-CONF
+ myModules,
+ mySwitchProducts,
+ myRouterProducts,
+ myWirelessProducts
+ FROM MY-SMI;
+
+myProductsMIB MODULE-IDENTITY
+ LAST-UPDATED "200203200000Z"
+ ORGANIZATION "$Company$"
+ CONTACT-INFO
+ "
+ Tel: $Telephone$
+
+ E-mail: $E-mail$"
+ DESCRIPTION
+ "This module defines the object identifiers that are
+ assigned to various hardware platforms, and hence are
+ returned as values for sysObjectID"
+ REVISION "200203200000Z"
+ DESCRIPTION
+ "Initial version of this MIB module."
+ ::= { myModules 1}
+
+-- devices return a sysObjectID value that corresponds to the
+-- device model number
+
+-- ****************************** switch ***********************************
+
+s2126G OBJECT IDENTIFIER ::= { mySwitchProducts 1 }
+
+s2126GL3 OBJECT IDENTIFIER ::= { mySwitchProducts 2 }
+
+s2150G OBJECT IDENTIFIER ::= { mySwitchProducts 3 }
+
+s2150GL3 OBJECT IDENTIFIER ::= { mySwitchProducts 4 }
+
+s4909 OBJECT IDENTIFIER ::= { mySwitchProducts 5 }
+
+s3550-12G OBJECT IDENTIFIER ::= { mySwitchProducts 6 }
+
+s3550-24G OBJECT IDENTIFIER ::= { mySwitchProducts 8 }
+
+s21-STACKING OBJECT IDENTIFIER ::= { mySwitchProducts 11 }
+
+s3550-24 OBJECT IDENTIFIER ::= { mySwitchProducts 12 }
+
+s3550-48 OBJECT IDENTIFIER ::= { mySwitchProducts 13 }
+
+s3550-12SFP-GT OBJECT IDENTIFIER ::= { mySwitchProducts 15 }
+
+s6806 OBJECT IDENTIFIER ::= { mySwitchProducts 16 }
+
+s6810 OBJECT IDENTIFIER ::= { mySwitchProducts 17 }
+
+s2126S OBJECT IDENTIFIER ::= { mySwitchProducts 18 }
+
+s2126S-STACKING OBJECT IDENTIFIER ::= { mySwitchProducts 19 }
+
+s1908PLUS OBJECT IDENTIFIER ::= { mySwitchProducts 20 }
+
+s1916PLUS OBJECT IDENTIFIER ::= { mySwitchProducts 21 }
+
+s6506 OBJECT IDENTIFIER ::= { mySwitchProducts 22 }
+
+s2126S-08 OBJECT IDENTIFIER ::= { mySwitchProducts 23 }
+
+s2126S-16 OBJECT IDENTIFIER ::= { mySwitchProducts 24 }
+
+s6806E OBJECT IDENTIFIER ::= { mySwitchProducts 25 }
+
+s6810E OBJECT IDENTIFIER ::= { mySwitchProducts 26 }
+
+s2026G OBJECT IDENTIFIER ::= { mySwitchProducts 27 }
+
+s3750-24 OBJECT IDENTIFIER ::= { mySwitchProducts 28 }
+
+s3750-48 OBJECT IDENTIFIER ::= { mySwitchProducts 29 }
+
+s2126 OBJECT IDENTIFIER ::= { mySwitchProducts 30 }
+
+s2126-STACKING OBJECT IDENTIFIER ::= { mySwitchProducts 31 }
+
+s2026F OBJECT IDENTIFIER ::= { mySwitchProducts 32 }
+
+s3760-48 OBJECT IDENTIFIER ::= { mySwitchProducts 33 }
+
+s3760-12SFP-GT OBJECT IDENTIFIER ::= { mySwitchProducts 34 }
+
+s4009 OBJECT IDENTIFIER ::= { mySwitchProducts 35 }
+
+s3526 OBJECT IDENTIFIER ::= { mySwitchProducts 36 }
+
+s3512G OBJECT IDENTIFIER ::= { mySwitchProducts 37 }
+
+hcl-12GCS-L3 OBJECT IDENTIFIER ::= { mySwitchProducts 38 }
+
+hcl-24GS-L3 OBJECT IDENTIFIER ::= { mySwitchProducts 39 }
+
+hcl-48TMS-2S-S OBJECT IDENTIFIER ::= { mySwitchProducts 40 }
+
+s5750-24GT-12SFP OBJECT IDENTIFIER ::= { mySwitchProducts 41 }
+
+s5750P-24GT-12SFP OBJECT IDENTIFIER ::= { mySwitchProducts 42 }
+
+s8606 OBJECT IDENTIFIER ::= { mySwitchProducts 43 }
+
+s8610 OBJECT IDENTIFIER ::= { mySwitchProducts 44 }
+
+s9610 OBJECT IDENTIFIER ::= { mySwitchProducts 45 }
+
+s9620 OBJECT IDENTIFIER ::= { mySwitchProducts 46 }
+
+s2924 OBJECT IDENTIFIER ::= { mySwitchProducts 47 }
+
+s3760-24 OBJECT IDENTIFIER ::= { mySwitchProducts 48 }
+
+s3760-48V2 OBJECT IDENTIFIER ::= { mySwitchProducts 49 }
+
+s3750E-24 OBJECT IDENTIFIER ::= { mySwitchProducts 50 }
+
+s3750E-48 OBJECT IDENTIFIER ::= { mySwitchProducts 51 }
+
+s3750E-12SFP-GT OBJECT IDENTIFIER ::= { mySwitchProducts 52 }
+
+s5750S-24GT-12SFP OBJECT IDENTIFIER ::= { mySwitchProducts 53 }
+
+s2128G OBJECT IDENTIFIER ::= { mySwitchProducts 54 }
+
+s2927XG OBJECT IDENTIFIER ::= { mySwitchProducts 55 }
+
+s3512GPLUS OBJECT IDENTIFIER ::= { mySwitchProducts 56 }
+
+s6604 OBJECT IDENTIFIER ::= { mySwitchProducts 57 }
+
+s6606 OBJECT IDENTIFIER ::= { mySwitchProducts 58 }
+
+s6610 OBJECT IDENTIFIER ::= { mySwitchProducts 59 }
+
+s5750-24SFP-12GT OBJECT IDENTIFIER ::= { mySwitchProducts 60 }
+
+s5750-48GT-4SFP OBJECT IDENTIFIER ::= { mySwitchProducts 61 }
+
+s5750S-48GT-4SFP OBJECT IDENTIFIER ::= { mySwitchProducts 62 }
+
+s2328G OBJECT IDENTIFIER ::= { mySwitchProducts 63 }
+
+s3250-48 OBJECT IDENTIFIER ::= { mySwitchProducts 64 }
+
+s2951XG OBJECT IDENTIFIER ::= { mySwitchProducts 66 }
+
+s3750-24-UB OBJECT IDENTIFIER ::= { mySwitchProducts 67 }
+
+s3750-48-UB OBJECT IDENTIFIER ::= { mySwitchProducts 68 }
+
+scg5510 OBJECT IDENTIFIER ::= { mySwitchProducts 69 }
+
+s2052G OBJECT IDENTIFIER ::= { mySwitchProducts 70 }
+
+s2352G OBJECT IDENTIFIER ::= { mySwitchProducts 71 }
+
+s8614 OBJECT IDENTIFIER ::= { mySwitchProducts 72 }
+
+s5650-24GT-4SFP OBJECT IDENTIFIER ::= { mySwitchProducts 73 }
+
+s5650-27XG OBJECT IDENTIFIER ::= { mySwitchProducts 74 }
+
+s5650-51XG OBJECT IDENTIFIER ::= { mySwitchProducts 75 }
+
+s5450-28GT OBJECT IDENTIFIER ::= { mySwitchProducts 76 }
+
+s3760E-24 OBJECT IDENTIFIER ::= { mySwitchProducts 77 }
+
+s3250P-24 OBJECT IDENTIFIER ::= { mySwitchProducts 78 }
+
+s2928G OBJECT IDENTIFIER ::= { mySwitchProducts 79 }
+
+s2952G OBJECT IDENTIFIER ::= { mySwitchProducts 80 }
+
+s2028G OBJECT IDENTIFIER ::= { mySwitchProducts 81 }
+
+s2528G OBJECT IDENTIFIER ::= { mySwitchProducts 82 }
+
+s2552G OBJECT IDENTIFIER ::= { mySwitchProducts 83 }
+
+s5750R-48GT-4SFP OBJECT IDENTIFIER ::= { mySwitchProducts 84 }
+
+s5750P-48GT-4SFP OBJECT IDENTIFIER ::= { mySwitchProducts 85 }
+
+s5750R-24GT-4SFP OBJECT IDENTIFIER ::= { mySwitchProducts 86 }
+
+s5750P-24GT-4SFP OBJECT IDENTIFIER ::= { mySwitchProducts 87 }
+
+s5750-24GT-4SFP OBJECT IDENTIFIER ::= { mySwitchProducts 88 }
+
+s5750S-24GT-4SFP OBJECT IDENTIFIER ::= { mySwitchProducts 89 }
+
+s5750-48GT-4SFP-A OBJECT IDENTIFIER ::= { mySwitchProducts 92 }
+
+s5750-48GT-4SFP-AP OBJECT IDENTIFIER ::= { mySwitchProducts 93 }
+
+-- s2352G OBJECT IDENTIFIER ::= { mySwitchProducts 94 }
+
+nm2x-24esw OBJECT IDENTIFIER ::= { mySwitchProducts 95 }
+
+nm2x-16esw OBJECT IDENTIFIER ::= { mySwitchProducts 96 }
+
+-- ****************************** router ***********************************
+
+r2620 OBJECT IDENTIFIER ::= { myRouterProducts 1 }
+
+r2624 OBJECT IDENTIFIER ::= { myRouterProducts 2 }
+
+r2690 OBJECT IDENTIFIER ::= { myRouterProducts 3 }
+
+r2692 OBJECT IDENTIFIER ::= { myRouterProducts 4 }
+
+r3642 OBJECT IDENTIFIER ::= { myRouterProducts 5 }
+
+r3662 OBJECT IDENTIFIER ::= { myRouterProducts 6 }
+
+nbr1000 OBJECT IDENTIFIER ::= { myRouterProducts 7 }
+
+nbr200 OBJECT IDENTIFIER ::= { myRouterProducts 8 }
+
+secvpn100 OBJECT IDENTIFIER ::= { myRouterProducts 9 }
+
+r2632 OBJECT IDENTIFIER ::= { myRouterProducts 10 }
+
+r1762 OBJECT IDENTIFIER ::= { myRouterProducts 11 }
+
+rcms OBJECT IDENTIFIER ::= { myRouterProducts 12 }
+
+hcl-r1762 OBJECT IDENTIFIER ::= { myRouterProducts 13 }
+
+hcl-r2632 OBJECT IDENTIFIER ::= { myRouterProducts 14 }
+
+hcl-r2692 OBJECT IDENTIFIER ::= { myRouterProducts 15 }
+
+hcl-r3642 OBJECT IDENTIFIER ::= { myRouterProducts 16 }
+
+hcl-r3662 OBJECT IDENTIFIER ::= { myRouterProducts 17 }
+
+r3740 OBJECT IDENTIFIER ::= { myRouterProducts 18 }
+
+nbr2000 OBJECT IDENTIFIER ::= { myRouterProducts 19 }
+
+nbr300 OBJECT IDENTIFIER ::= { myRouterProducts 20 }
+
+nbr1200 OBJECT IDENTIFIER ::= { myRouterProducts 21 }
+
+nbr1500 OBJECT IDENTIFIER ::= { myRouterProducts 22 }
+
+r2716 OBJECT IDENTIFIER ::= { myRouterProducts 23 }
+
+r2724 OBJECT IDENTIFIER ::= { myRouterProducts 24 }
+
+r3802 OBJECT IDENTIFIER ::= { myRouterProducts 25 }
+
+r3804 OBJECT IDENTIFIER ::= { myRouterProducts 26 }
+
+rsr50-20 OBJECT IDENTIFIER ::= { myRouterProducts 27 }
+
+rsr50-40 OBJECT IDENTIFIER ::= { myRouterProducts 28 }
+
+rsr50-80 OBJECT IDENTIFIER ::= { myRouterProducts 29 }
+
+npe50-20 OBJECT IDENTIFIER ::= { myRouterProducts 30 }
+
+rsr10-02 OBJECT IDENTIFIER ::= { myRouterProducts 31 }
+
+rsr20-04 OBJECT IDENTIFIER ::= { myRouterProducts 32 }
+
+vpn120 OBJECT IDENTIFIER ::= { myRouterProducts 33 }
+
+npe80 OBJECT IDENTIFIER ::= { myRouterProducts 34 }
+
+rsr20-24 OBJECT IDENTIFIER ::= { myRouterProducts 35 }
+
+nm2-16esw OBJECT IDENTIFIER ::= { myRouterProducts 36 }
+
+nm2-24esw OBJECT IDENTIFIER ::= { myRouterProducts 37 }
+
+nmx-24esw OBJECT IDENTIFIER ::= { myRouterProducts 38 }
+
+nmx-24esw-l2 OBJECT IDENTIFIER ::= { myRouterProducts 39 }
+
+nmx-24esw-3gel3 OBJECT IDENTIFIER ::= { myRouterProducts 40 }
+
+rsr20-14 OBJECT IDENTIFIER ::= { myRouterProducts 41 }
+
+rsr30-44 OBJECT IDENTIFIER ::= { myRouterProducts 42 }
+
+r2700v2v3 OBJECT IDENTIFIER ::= { myRouterProducts 43 }
+
+r2700v5 OBJECT IDENTIFIER ::= { myRouterProducts 44 }
+
+npe50-40 OBJECT IDENTIFIER ::= { myRouterProducts 45 }
+
+rsr20-18 OBJECT IDENTIFIER ::= { myRouterProducts 46 }
+
+-- ****************************** wireless ***********************************
+
+wgp500 OBJECT IDENTIFIER ::= { myWirelessProducts 1 }
+
+
+END
diff --git a/mibs/ruijie/MY-SMI b/mibs/ruijie/MY-SMI
new file mode 100644
index 0000000000..abd70ae391
--- /dev/null
+++ b/mibs/ruijie/MY-SMI
@@ -0,0 +1,151 @@
+-- *****************************************************************
+-- MY-SMI.mib: MY-SMI
+-- My Enterprise Structure of Management Information
+--
+-- $Copyright$
+--
+--
+-- *****************************************************************
+--
+
+MY-SMI DEFINITIONS ::= BEGIN
+
+IMPORTS
+ MODULE-IDENTITY,
+ OBJECT-IDENTITY,
+ enterprises
+ FROM SNMPv2-SMI;
+
+-- My Snmpagent Enterprise Specific Objects
+ my OBJECT IDENTIFIER ::= { enterprises 4881 }
+
+ products OBJECT IDENTIFIER ::= { my 1 }
+
+ switch OBJECT IDENTIFIER ::= { products 1 }
+
+ router OBJECT IDENTIFIER ::= { products 2 }
+
+ wireless OBJECT IDENTIFIER ::= { products 3 }
+
+switchMib MODULE-IDENTITY
+ LAST-UPDATED "200203190000Z"
+ ORGANIZATION "$Company$"
+ CONTACT-INFO
+ "
+ Tel: $Telephone$
+
+ E-mail: $E-mail$"
+ DESCRIPTION
+ "The Structure of Management Information for the
+ My enterprise."
+ REVISION "200203190000Z"
+ DESCRIPTION
+ "Initial version of this MIB module."
+ ::= { switch 10 }
+
+mySwitchProducts OBJECT-IDENTITY
+ STATUS current
+ DESCRIPTION
+ "mySwitchProducts is the root OBJECT IDENTIFIER from
+ which sysObjectID values are assigned for switch. Actual
+ values are defined in MY-PRODUCTS-MIB."
+ ::= { switchMib 1 }
+
+myMgmt OBJECT-IDENTITY
+ STATUS current
+ DESCRIPTION
+ "myMgmt is the main subtree for those functional mib."
+ ::= { switchMib 2 }
+
+myAgentCapability OBJECT-IDENTITY
+ STATUS current
+ DESCRIPTION
+ "myAgentCapability provides a root object identifier
+ from which AGENT-CAPABILITIES values may be assigned."
+ ::= { switchMib 3 }
+
+myModules OBJECT-IDENTITY
+ STATUS current
+ DESCRIPTION
+ "myModules provides a root object identifier
+ from which MODULE-IDENTITY values may be assigned."
+ ::= { switchMib 4 }
+
+myExperiment OBJECT-IDENTITY
+ STATUS current
+ DESCRIPTION
+ "myExperiment 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 my work-in-process which has not been
+ assigned a permanent object identifier by the
+ my assigned number authority, typicially because
+ the mib is not ready for deployment.
+
+ NOTE WELL: support for mibs in the myExperiment
+ subtree will be deleted when a permanent object
+ identifier assignment is made."
+ ::= { switchMib 5 }
+
+
+-- ****************************** router ***********************************
+routerMib MODULE-IDENTITY
+ LAST-UPDATED "200501060000Z"
+ ORGANIZATION "$Company$"
+ CONTACT-INFO
+ "
+ Tel: $Telephone$
+
+ E-mail: $E-mail$"
+ DESCRIPTION
+ "The Structure of Management Information for the
+ My enterprise."
+ REVISION "200501060000Z"
+ DESCRIPTION
+ "Initial version of this MIB module."
+ ::= { router 1 }
+
+myRouterProducts OBJECT-IDENTITY
+ STATUS current
+ DESCRIPTION
+ "myRouterProducts is the root OBJECT IDENTIFIER from
+ which sysObjectID values are assigned for router. Actual
+ values are defined in MY-PRODUCTS-MIB."
+ ::= { routerMib 1 }
+
+-- ****************************** wireless ***********************************
+wirelessMib MODULE-IDENTITY
+ LAST-UPDATED "200707040000Z"
+ ORGANIZATION "$Company$"
+ CONTACT-INFO
+ "
+ Tel: $Telephone$
+
+ E-mail: $E-mail$"
+ DESCRIPTION
+ "The Structure of Management Information for the
+ My enterprise."
+ REVISION "200707040000Z"
+ DESCRIPTION
+ "Initial version of this MIB module."
+ ::= { wireless 1 }
+
+myWirelessProducts OBJECT-IDENTITY
+ STATUS current
+ DESCRIPTION
+ "myWirelessProducts is the root OBJECT IDENTIFIER from
+ which sysObjectID values are assigned for wireless product.
+ Actual values are defined in MY-PRODUCTS-MIB."
+ ::= { wirelessMib 1 }
+
+myWirelessMgmt OBJECT-IDENTITY
+ STATUS current
+ DESCRIPTION
+ "myWirelessMgmt is the main subtree for those functional mib."
+ ::= { wirelessMib 2 }
+
+END
diff --git a/mibs/ruijie/MY-SMP-MIB b/mibs/ruijie/MY-SMP-MIB
new file mode 100644
index 0000000000..3e6eb2e6a5
--- /dev/null
+++ b/mibs/ruijie/MY-SMP-MIB
@@ -0,0 +1,570 @@
+-- *****************************************************************
+-- MY-SMP-MIB.mib: My SMP MIB file
+--
+-- $Copyright$
+--
+-- *****************************************************************
+--
+
+MY-SMP-MIB DEFINITIONS ::= BEGIN
+
+IMPORTS
+ MODULE-IDENTITY,
+ OBJECT-TYPE,
+ NOTIFICATION-TYPE,
+ IpAddress
+ FROM SNMPv2-SMI
+ RowStatus,
+ DisplayString,
+ MacAddress,
+ TruthValue
+ FROM SNMPv2-TC
+ MODULE-COMPLIANCE,
+ OBJECT-GROUP,
+ NOTIFICATION-GROUP
+ FROM SNMPv2-CONF
+ IfIndex,
+ ConfigStatus
+ FROM MY-TC
+ ifIndex
+ FROM IF-MIB
+ myMgmt
+ FROM MY-SMI
+ Community
+ FROM MY-SNMP-AGENT-MIB
+ VlanId
+ FROM Q-BRIDGE-MIB;
+
+mySMPMIB MODULE-IDENTITY
+ LAST-UPDATED "200409090000Z"
+ ORGANIZATION "$Company$"
+ CONTACT-INFO
+ "
+ Tel: $Telephone$
+
+ E-mail: $E-mail$"
+ DESCRIPTION
+ ""
+ REVISION "200409090000Z"
+ DESCRIPTION
+ "Initial version of this MIB module."
+ ::= { myMgmt 39}
+
+mySMPMIBObjects OBJECT IDENTIFIER ::= { mySMPMIB 1 }
+
+--
+-- user management
+--
+
+mySMPServer OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPMIBObjects 1 }
+
+mySMPServerKey OBJECT-TYPE
+ SYNTAX Community
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPMIBObjects 2 }
+
+mySMPEventSendSlice OBJECT-TYPE
+ SYNTAX Unsigned32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPMIBObjects 3 }
+
+mySMPPolicyDelete OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPMIBObjects 4 }
+
+mySMPPolicyChecksum OBJECT-TYPE
+ SYNTAX OCTET STRING(SIZE(16))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPMIBObjects 5 }
+
+mySMPPolicyTimeout OBJECT-TYPE
+ SYNTAX Unsigned32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPMIBObjects 6 }
+
+mySMPPolicyGroupTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MySMPPolicyGroupEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPMIBObjects 9}
+
+mySMPPolicyGroupEntry OBJECT-TYPE
+ SYNTAX MySMPPolicyGroupEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ INDEX {mySMPPolicyGroupIndex}
+ ::= { mySMPPolicyGroupTable 1 }
+
+ MySMPPolicyGroupEntry ::=
+ SEQUENCE {
+ mySMPPolicyGroupIndex
+ Unsigned32,
+ mySMPPolicyGroupCount
+ Unsigned32,
+ mySMPPolicyGroupChecksum
+ OCTET STRING(SIZE(16)),
+ mySMPPolicyGroupStatus
+ RowStatus
+ }
+
+mySMPPolicyGroupIndex OBJECT-TYPE
+ SYNTAX Unsigned32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPPolicyGroupEntry 1 }
+
+mySMPPolicyGroupCount OBJECT-TYPE
+ SYNTAX Unsigned32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPPolicyGroupEntry 2 }
+
+mySMPPolicyGroupChecksum OBJECT-TYPE
+ SYNTAX OCTET STRING(SIZE(16))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPPolicyGroupEntry 3 }
+
+mySMPPolicyGroupStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION
+ "The status of this conceptual row."
+ ::= { mySMPPolicyGroupEntry 4 }
+
+mySMPPolicyTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MySMPPolicyEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPMIBObjects 8}
+
+mySMPPolicyEntry OBJECT-TYPE
+ SYNTAX MySMPPolicyEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ INDEX {mySMPGroupIndex,mySMPPolicyIndex}
+ ::= { mySMPPolicyTable 1 }
+
+ MySMPPolicyEntry ::=
+ SEQUENCE {
+ mySMPGroupIndex
+ Unsigned32,
+ mySMPPolicyIndex
+ Unsigned32,
+ mySMPPolicyStatus
+ ConfigStatus,
+ mySMPPolicyNumber
+ Unsigned32,
+ mySMPPolicyInstallPort
+ IfIndex,
+ mySMPPolicyType
+ INTEGER,
+ mySMPPolicyContent
+ OCTET STRING,
+ mySMPPolicyMask
+ OCTET STRING,
+ mySMPPolicyName
+ DisplayString
+ }
+
+mySMPGroupIndex OBJECT-TYPE
+ SYNTAX Unsigned32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPPolicyEntry 1 }
+
+mySMPPolicyIndex OBJECT-TYPE
+ SYNTAX Unsigned32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPPolicyEntry 2 }
+
+mySMPPolicyStatus OBJECT-TYPE
+ SYNTAX ConfigStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPPolicyEntry 3 }
+
+mySMPPolicyNumber OBJECT-TYPE
+ SYNTAX Unsigned32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPPolicyEntry 4 }
+
+mySMPPolicyInstallPort OBJECT-TYPE
+ SYNTAX IfIndex
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPPolicyEntry 5 }
+
+mySMPPolicyType OBJECT-TYPE
+ SYNTAX INTEGER{
+ hi-isolate(1),
+ isolate(2),
+ bolcked(3),
+ addrBind(4)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPPolicyEntry 6 }
+
+mySMPPolicyContent OBJECT-TYPE
+ SYNTAX OCTET STRING(SIZE(80))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPPolicyEntry 7 }
+
+mySMPPolicyMask OBJECT-TYPE
+ SYNTAX OCTET STRING(SIZE(80))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPPolicyEntry 8 }
+
+mySMPPolicyName OBJECT-TYPE
+ SYNTAX DisplayString(SIZE (0..32))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPPolicyEntry 9 }
+
+mySMPFrameRelayTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MySMPFrameRelayEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPMIBObjects 7}
+
+mySMPFrameRelayEntry OBJECT-TYPE
+ SYNTAX MySMPFrameRelayEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ INDEX {mySMPFrameRelayIndex}
+ ::= { mySMPFrameRelayTable 1 }
+
+ MySMPFrameRelayEntry ::=
+ SEQUENCE {
+ mySMPFrameRelayIndex
+ Unsigned32,
+ mySMPFrameRelayContent
+ OCTET STRING,
+ mySMPFrameRelayLength
+ Unsigned32,
+ mySMPFrameRelayDestPort
+ IfIndex,
+ mySMPFrameRelayDestVlan
+ VlanId
+ }
+
+mySMPFrameRelayIndex OBJECT-TYPE
+ SYNTAX Unsigned32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPFrameRelayEntry 1 }
+
+mySMPFrameRelayContent OBJECT-TYPE
+ SYNTAX OCTET STRING(SIZE(0..1024))
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPFrameRelayEntry 2 }
+
+mySMPFrameRelayLength OBJECT-TYPE
+ SYNTAX Unsigned32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPFrameRelayEntry 3 }
+
+mySMPFrameRelayDestPort OBJECT-TYPE
+ SYNTAX IfIndex
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPFrameRelayEntry 4 }
+
+mySMPFrameRelayDestVlan OBJECT-TYPE
+ SYNTAX VlanId
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "VLAN ID"
+ ::= { mySMPFrameRelayEntry 5 }
+
+
+--
+ mySMPTraps OBJECT IDENTIFIER ::= { mySMPMIB 65535}
+
+ mySMPSwitchIP OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPTraps 1 }
+
+ mySMPSwitchInterfaceID OBJECT-TYPE
+ SYNTAX IfIndex
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPTraps 2 }
+
+ mySMPSwitchInterfaceVLANID OBJECT-TYPE
+ SYNTAX VlanId
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ "VLAN ID"
+ ::= { mySMPTraps 3 }
+
+ mySMPFrameContentLength OBJECT-TYPE
+ SYNTAX Unsigned32
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPTraps 4 }
+
+ mySMPFrameContent OBJECT-TYPE
+ SYNTAX OCTET STRING(SIZE(0..1024))
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPTraps 5 }
+
+ mySMPFrameRelayTrap NOTIFICATION-TYPE
+ OBJECTS {mySMPSwitchIP,mySMPSwitchInterfaceID,mySMPSwitchInterfaceVLANID,
+ mySMPFrameContentLength,mySMPFrameContent}
+ STATUS current
+ DESCRIPTION
+ "Trap"
+ ::= { mySMPTraps 6 }
+
+
+ mySMPArpAttackSubnetIP OBJECT-TYPE
+ SYNTAX OCTET STRING(SIZE(0..40))
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPTraps 7 }
+
+ mySMPArpAttackSubnetIPNum OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPTraps 8 }
+
+ mySMPArpAttackInterfaceSlot OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPTraps 9 }
+
+ mySMPArpAttackInterfacePort OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPTraps 10}
+
+ mySMPArpAttackInterfaceVlanID OBJECT-TYPE
+ SYNTAX VlanId
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ "VLAN ID"
+ ::= { mySMPTraps 11 }
+
+ mySMPArpAttackFrameContent OBJECT-TYPE
+ SYNTAX OCTET STRING(SIZE(0..64))
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPTraps 12 }
+
+ mySMPArpAttackStatus OBJECT-TYPE
+ SYNTAX TruthValue
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPTraps 13 }
+
+ mySMPArpAttackCriticalStatus OBJECT-TYPE
+ SYNTAX INTEGER{
+ critical(1),
+ emergencies(2)
+ }
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ "
+ critical(1),
+ emergencies(2)"
+ ::= { mySMPTraps 14 }
+
+ mySMPArpAttackMac OBJECT-TYPE
+ SYNTAX MacAddress
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPTraps 15 }
+
+ mySMPArpAttackInterfaceIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPTraps 16 }
+
+ mySMPArpAttackTrap NOTIFICATION-TYPE
+ OBJECTS {mySMPArpAttackSubnetIP, mySMPArpAttackSubnetIPNum, mySMPArpAttackInterfaceSlot,
+ mySMPArpAttackInterfacePort, mySMPArpAttackInterfaceVlanID, mySMPArpAttackFrameContent,
+ mySMPArpAttackStatus, mySMPArpAttackCriticalStatus, mySMPArpAttackMac,
+ mySMPArpAttackInterfaceIndex}
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPTraps 17 }
+
+mySMPMIBConformance OBJECT IDENTIFIER ::= { mySMPMIB 3 }
+mySMPMIBCompliances OBJECT IDENTIFIER ::= { mySMPMIBConformance 1 }
+mySMPMIBGroups OBJECT IDENTIFIER ::= { mySMPMIBConformance 2 }
+
+-- compliance statements
+myDeviceMIBCompliance MODULE-COMPLIANCE
+ STATUS current
+ DESCRIPTION
+ "The compliance statement for entities which implement
+ the My SMP MIB"
+ MODULE -- this module
+ MANDATORY-GROUPS { mySMPServerMibGroup,
+ mySMPClientMibGroup,
+ mySMPPolicyMibGroup,
+ mySMPFrameRelayMibGroup}
+ ::= { mySMPMIBCompliances 1 }
+
+mySMPServerMibGroup OBJECT-GROUP
+ OBJECTS {
+ mySMPServer,
+ mySMPServerKey
+ }
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPMIBGroups 1 }
+
+mySMPClientMibGroup OBJECT-GROUP
+ OBJECTS {
+ mySMPEventSendSlice
+ }
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPMIBGroups 2 }
+
+mySMPPolicyMibGroup OBJECT-GROUP
+ OBJECTS {
+ mySMPPolicyDelete,
+ mySMPPolicyChecksum,
+ mySMPPolicyIndex,
+ mySMPPolicyStatus,
+ mySMPPolicyInstallPort,
+ mySMPPolicyType,
+ mySMPPolicyContent,
+ mySMPPolicyMask,
+ mySMPPolicyName
+ }
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPMIBGroups 3 }
+
+mySMPFrameRelayMibGroup OBJECT-GROUP
+ OBJECTS {
+ mySMPFrameRelayIndex,
+ mySMPFrameRelayContent,
+ mySMPFrameRelayLength,
+ mySMPFrameRelayDestPort,
+ mySMPFrameRelayDestVlan
+ }
+ STATUS current
+ DESCRIPTION
+ ""
+ ::= { mySMPMIBGroups 4 }
+
+
+END
diff --git a/mibs/ruijie/MY-SNMP-AGENT-MIB b/mibs/ruijie/MY-SNMP-AGENT-MIB
new file mode 100644
index 0000000000..08e191fe3d
--- /dev/null
+++ b/mibs/ruijie/MY-SNMP-AGENT-MIB
@@ -0,0 +1,324 @@
+-- *****************************************************************
+-- MY-SNMP-AGENT-MIB.mib: My Snmp Agent MIB file
+--
+-- $Copyright$
+--
+-- *****************************************************************
+--
+
+MY-SNMP-AGENT-MIB DEFINITIONS ::= BEGIN
+
+IMPORTS
+ MODULE-IDENTITY,
+ OBJECT-TYPE,
+ NOTIFICATION-TYPE,
+ Integer32,
+ Counter32
+ FROM SNMPv2-SMI
+ TruthValue,
+ DisplayString,
+ RowStatus
+ FROM SNMPv2-TC
+ MODULE-COMPLIANCE,
+ OBJECT-GROUP,
+ NOTIFICATION-GROUP
+ FROM SNMPv2-CONF
+ ConfigStatus,
+ MyTrapType
+ FROM MY-TC
+ EnabledStatus
+ FROM P-BRIDGE-MIB
+ myMgmt
+ FROM MY-SMI;
+
+mySnmpAgentMIB MODULE-IDENTITY
+ LAST-UPDATED "200203200000Z"
+ ORGANIZATION "$Company$"
+ CONTACT-INFO
+ "
+ Tel: $Telephone$
+
+ E-mail: $E-mail$"
+ DESCRIPTION
+ "This module defines my SNMP agent mibs."
+ REVISION "200203200000Z"
+ DESCRIPTION
+ "Initial version of this MIB module."
+ ::= { myMgmt 5}
+
+mySnmpAgentMIBObjects OBJECT IDENTIFIER ::= { mySnmpAgentMIB 1 }
+
+mySnmpCommunityObjects OBJECT IDENTIFIER ::= { mySnmpAgentMIBObjects 1 }
+
+mySnmpTrapObjects OBJECT IDENTIFIER ::= { mySnmpAgentMIBObjects 2 }
+
+Community ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "community string for the implementation, maximum length of
+ community strings limited to 32 octets."
+ SYNTAX DisplayString (SIZE (1..32))
+
+--
+-- snmp community
+--
+myCommunityMaxNum OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Number of Max of communities which the SNMP Agent support."
+ ::= { mySnmpCommunityObjects 1 }
+
+myCommunityTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MyCommunityEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "A list of SNMP Community configurations."
+ ::= { mySnmpCommunityObjects 2 }
+
+myCommunityEntry OBJECT-TYPE
+ SYNTAX MyCommunityEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Obtain information of SNMP Community configuration."
+ INDEX { myCommunityName }
+ ::= { myCommunityTable 1 }
+
+MyCommunityEntry ::=
+ SEQUENCE {
+ myCommunityName Community,
+ myCommunityWritable INTEGER,
+ myCommunityUserIpAddr IpAddress,
+ myCommunityEnableIpAddrAuthen EnabledStatus,
+ myCommunityStatus RowStatus
+ }
+
+myCommunityName OBJECT-TYPE
+ SYNTAX Community
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Community used by this entry.This value is unique for every entry.
+ When this string be used as an index,Value of a sub-identifier equal
+ ASCII value of corresponding character(first sub-identifier corresponds
+ first character of string). The number of sub-identifiers of this string
+ must be 32,If length of string is less than 32 the sub-identifier(0x0)
+ will be filled in tail."
+ ::= { myCommunityEntry 1 }
+
+myCommunityWritable OBJECT-TYPE
+ SYNTAX INTEGER{
+ readonly(1),
+ writable(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Authority of this community"
+ DEFVAL{ readonly }
+ ::= { myCommunityEntry 2 }
+
+myCommunityUserIpAddr OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "IP address use for the authentication of a user, if the associated object
+ myCommunityEnableIpAddrAuthen status is enable(1), the all messages
+ send to the agent will be authened by community and this IP address. messages
+ that can't pass the authentication will be discarded."
+ ::= { myCommunityEntry 3 }
+
+myCommunityEnableIpAddrAuthen OBJECT-TYPE
+ SYNTAX EnabledStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "this object offer the means to enable of disable the IP authentications of
+ SNMP message."
+ ::= { myCommunityEntry 4 }
+
+myCommunityStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION
+ "entry status of this entry. and the means in this enviraments can
+ reffer to the text-convention definition of the RowStatus."
+ ::= { myCommunityEntry 5 }
+
+--
+--trap destination table
+--
+
+myTrapDstMaxNumber OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Number of destination address table entries."
+ ::= { mySnmpTrapObjects 1 }
+
+myTrapDstTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MyTrapDstEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "table of destination hosts that the trap will be sent to."
+ ::= { mySnmpTrapObjects 2 }
+
+myTrapDstEntry OBJECT-TYPE
+ SYNTAX MyTrapDstEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "list of hosts."
+ INDEX { myTrapDstAddr }
+ ::= { myTrapDstTable 1 }
+
+MyTrapDstEntry ::=
+ SEQUENCE {
+ myTrapDstAddr IpAddress,
+ myTrapDstCommunity Community,
+ myTrapDstSendTrapClass INTEGER,
+ myTrapDstEntryStatus RowStatus
+ }
+
+myTrapDstAddr OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "the destination address of a host the trap will be sent to."
+ ::= { myTrapDstEntry 1 }
+
+myTrapDstCommunity OBJECT-TYPE
+ SYNTAX Community
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "the destination host's SNMP Client wish to receive the community in
+ the trap send by agent."
+ DEFVAL { "public" }
+ ::= { myTrapDstEntry 2 }
+
+myTrapDstSendTrapClass OBJECT-TYPE
+ SYNTAX INTEGER { snmpv1-Trap(1), snmpv2c-Trap(2) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Indicates that the SNMP entity will send which kind of trap
+ SNMPv1-Trap and SNMPv2-Trap"
+ DEFVAL { snmpv1-Trap }
+ ::= { myTrapDstEntry 3 }
+
+myTrapDstEntryStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION
+ "entry status of this entry. and the means in this enviraments can
+ reffer to the text-convention definition of the RowStatus."
+ ::= { myTrapDstEntry 4 }
+
+
+myTrapActionTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF MyTrapActionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "This table of the trap's action."
+ ::= { mySnmpTrapObjects 3 }
+
+myTrapActionEntry OBJECT-TYPE
+ SYNTAX MyTrapActionEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "List of of the trap's action."
+ INDEX { myTrapType }
+ ::= { myTrapActionTable 1 }
+
+MyTrapActionEntry ::=
+ SEQUENCE {
+ myTrapType MyTrapType,
+ myTrapAction INTEGER
+ }
+
+myTrapType OBJECT-TYPE
+ SYNTAX MyTrapType
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Trap type identifier, every kind of trap which the system support
+ will has one entry in this table."
+ ::= { myTrapActionEntry 1 }
+
+myTrapAction OBJECT-TYPE
+ SYNTAX INTEGER {
+ none(1), -- do nothing
+ sendtrap(2) -- send trap
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "This value decide how to deal with when this type trap has happened."
+ ::= { myTrapActionEntry 2 }
+
+
+
+mySnmpAgentMIBConformance OBJECT IDENTIFIER ::= { mySnmpAgentMIB 2 }
+mySnmpAgentMIBCompliances OBJECT IDENTIFIER ::= { mySnmpAgentMIBConformance 1 }
+mySnmpAgentMIBGroups OBJECT IDENTIFIER ::= { mySnmpAgentMIBConformance 2 }
+
+
+-- compliance statements
+
+mySnmpAgentMIBCompliance MODULE-COMPLIANCE
+ STATUS current
+ DESCRIPTION
+ "The compliance statement for entities which implement
+ the My SnmpAgent MIB"
+ MODULE -- this module
+ MANDATORY-GROUPS { myCommunityMIBGroup,
+ mySnmpTrapMIBGroup
+ }
+ ::= { mySnmpAgentMIBCompliances 1 }
+
+-- units of conformance
+
+myCommunityMIBGroup OBJECT-GROUP
+ OBJECTS {
+ myCommunityMaxNum,
+ myCommunityName,
+ myCommunityWritable,
+ myCommunityUserIpAddr,
+ myCommunityEnableIpAddrAuthen,
+ myCommunityStatus
+ }
+ STATUS current
+ DESCRIPTION
+ "A collection of objects providing community management to a
+ My agent."
+ ::= { mySnmpAgentMIBGroups 1 }
+
+mySnmpTrapMIBGroup OBJECT-GROUP
+ OBJECTS {
+ myTrapDstSendTrapClass,
+ myTrapDstMaxNumber,
+ myTrapDstAddr,
+ myTrapDstCommunity,
+ myTrapDstEntryStatus,
+ myTrapType,
+ myTrapAction
+ }
+ STATUS current
+ DESCRIPTION
+ "A collection of objects providing trap information to a
+ My agent."
+ ::= { mySnmpAgentMIBGroups 2 }
+
+END
diff --git a/mibs/ruijie/MY-SYSTEM-MIB b/mibs/ruijie/MY-SYSTEM-MIB
new file mode 100644
index 0000000000..b322c7a1bf
--- /dev/null
+++ b/mibs/ruijie/MY-SYSTEM-MIB
@@ -0,0 +1,246 @@
+-- *****************************************************************
+-- MY-SYSTEM-MIB.mib: My System MIB file
+--
+-- $Copyright$
+--
+-- *****************************************************************
+--
+
+MY-SYSTEM-MIB DEFINITIONS ::= BEGIN
+
+IMPORTS
+ MODULE-IDENTITY,
+ OBJECT-TYPE,
+ NOTIFICATION-TYPE,
+ Integer32,
+ Counter32
+ FROM SNMPv2-SMI
+ TruthValue,
+ DisplayString,
+ RowStatus
+ FROM SNMPv2-TC
+ MODULE-COMPLIANCE,
+ OBJECT-GROUP,
+ NOTIFICATION-GROUP
+ FROM SNMPv2-CONF
+ myMgmt
+ FROM MY-SMI;
+
+mySystemMIB MODULE-IDENTITY
+ LAST-UPDATED "200203200000Z"
+ ORGANIZATION "$Company$"
+ CONTACT-INFO
+ "
+ Tel: $Telephone$
+
+ E-mail: $E-mail$"
+ DESCRIPTION
+ "This module defines my system mibs."
+ REVISION "200203200000Z"
+ DESCRIPTION
+ "Initial version of this MIB module."
+ ::= { myMgmt 1}
+
+mySystemMIBObjects OBJECT IDENTIFIER ::= { mySystemMIB 1 }
+
+mySystemHwVersion OBJECT-TYPE
+ SYNTAX DisplayString(SIZE (1..32))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Return the string of the Revision number of hardware resides
+ on the FastSwitch."
+ ::= { mySystemMIBObjects 1 }
+
+mySystemSwVersion OBJECT-TYPE
+ SYNTAX DisplayString(SIZE (1..32))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Return the string of the Revision number of software resides
+ on the FastSwitch."
+ ::= { mySystemMIBObjects 2 }
+
+mySystemBootVersion OBJECT-TYPE
+ SYNTAX DisplayString(SIZE (1..32))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Return the string of the Revision number of BOOT software resides
+ on the FastSwitch."
+ ::= { mySystemMIBObjects 3 }
+
+mySystemSysCtrlVersion OBJECT-TYPE
+ SYNTAX DisplayString(SIZE (1..32))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Return the string of the Revision number of CTRL software resides
+ on the FastSwitch."
+ ::= { mySystemMIBObjects 4 }
+
+mySystemParametersSave OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Save all parameters changed in configuration by setting
+ this object to any value but 0, set its value to 0 will
+ cause no action of agent, otherwise all changes of
+ prarameters will be saved for retrive when system is
+ reset, if parameter is changed but not saved all changes
+ will come to their original value when system down and up
+ again, when query always return value 0."
+ ::= { mySystemMIBObjects 5 }
+
+mySystemOutBandRate OBJECT-TYPE
+ SYNTAX INTEGER {
+ baud9600 (1),
+ baud19200 (2),
+ baud38400 (3),
+ baud57600 (4)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Determine the console(OutBand) baud rate :
+ 9600 - 1,19200 - 2, 38300 - 3, 57600 - 4 "
+ ::= { mySystemMIBObjects 6 }
+
+mySystemReset OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "This Object allow perform soft reset of system by setting its
+ value to none zero. if a soft resetis performed, after this
+ having completed a warm start trap will send to declare the state
+ and when queried will always return 0."
+ ::= { mySystemMIBObjects 7 }
+
+mySwitchLayer OBJECT-TYPE
+ SYNTAX INTEGER {
+ layer2 (1), -- Layer 2 Switch
+ layer3 (2) -- Layer 3 Switch
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Which layer's device the switch in system "
+ ::= { mySystemMIBObjects 8 }
+
+mySystemHwPower OBJECT-TYPE
+ SYNTAX INTEGER{
+ rpsNoLink(1),
+ rpsLinkAndNoPower(2),
+ rpsLinkAndReadyForPower(3),
+ rpsLinkAndPower(4)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "The state of power."
+ ::= { mySystemMIBObjects 9 }
+
+mySystemHwFan OBJECT-TYPE
+ SYNTAX INTEGER{
+ work(1),
+ stop(2)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "The state of fan."
+ ::= { mySystemMIBObjects 10 }
+
+--The mySystemOutBandTimeout is obsoleted after 2007.9
+mySystemOutBandTimeout OBJECT-TYPE
+ SYNTAX Integer32(0..3600)
+ UNITS "seconds"
+ MAX-ACCESS read-write
+ STATUS obsolete
+ DESCRIPTION
+ "The timeout of console.0 indicate that timeout function is disabled."
+ ::= { mySystemMIBObjects 11 }
+
+--The mySystemTelnetTimeout is obsoleted after 2007.9
+mySystemTelnetTimeout OBJECT-TYPE
+ SYNTAX Integer32(0..3600)
+ UNITS "seconds"
+ MAX-ACCESS read-write
+ STATUS obsolete
+ DESCRIPTION
+ "The timeout of telnet.0 indicate that timeout function is disabled."
+ ::= { mySystemMIBObjects 12 }
+
+
+mySystemMIBTraps OBJECT IDENTIFIER ::= { mySystemMIB 2 }
+
+mySystemHardChangeDesc OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS accessible-for-notify
+ STATUS current
+ DESCRIPTION
+ "The description of hard change"
+ ::= { mySystemMIBTraps 1 }
+
+mySystemHardChangeDetected NOTIFICATION-TYPE
+ OBJECTS {mySystemHardChangeDesc}
+ STATUS current
+ DESCRIPTION
+ "System hardware has changed include number of devices or number of modules
+ or the place or type of the module is change."
+ ::= { mySystemMIBTraps 2 }
+
+mySystemPowerStateChange NOTIFICATION-TYPE
+ OBJECTS {mySystemHwPower}
+ STATUS current
+ DESCRIPTION
+ "while the state of power changed, then this trap will be sent."
+ ::= { mySystemMIBTraps 3 }
+
+mySystemFanStateChange NOTIFICATION-TYPE
+ OBJECTS {mySystemHwFan}
+ STATUS current
+ DESCRIPTION
+ "while the state of fan changed, then this trap will be sent."
+ ::= { mySystemMIBTraps 4 }
+
+
+mySystemMIBConformance OBJECT IDENTIFIER ::= { mySystemMIB 3 }
+mySystemMIBCompliances OBJECT IDENTIFIER ::= { mySystemMIBConformance 1 }
+mySystemMIBGroups OBJECT IDENTIFIER ::= { mySystemMIBConformance 2 }
+
+
+-- compliance statements
+
+mySystemMIBCompliance MODULE-COMPLIANCE
+ STATUS current
+ DESCRIPTION
+ "The compliance statement for entities which implement
+ the My System MIB"
+ MODULE -- this module
+ MANDATORY-GROUPS { mySystemMIBGroup
+ }
+ ::= { mySystemMIBCompliances 1 }
+
+-- units of conformance
+
+mySystemMIBGroup OBJECT-GROUP
+ OBJECTS {
+ mySystemHwVersion,
+ mySystemSwVersion,
+ mySystemBootVersion,
+ mySystemSysCtrlVersion,
+ mySystemParametersSave,
+ mySystemReset,
+ mySystemOutBandRate,
+ mySwitchLayer
+ }
+ STATUS current
+ DESCRIPTION
+ "A collection of objects providing system information and
+ opertion to a My agent."
+ ::= { mySystemMIBGroups 1 }
+
+END
diff --git a/mibs/ruijie/MY-TC b/mibs/ruijie/MY-TC
new file mode 100644
index 0000000000..927eb4d568
--- /dev/null
+++ b/mibs/ruijie/MY-TC
@@ -0,0 +1,106 @@
+-- *****************************************************************
+-- MY-TC.mib: My Switch MIB Textual Conventions
+--
+-- $Copyright$
+--
+-- *****************************************************************
+--
+
+MY-TC DEFINITIONS ::= BEGIN
+
+IMPORTS
+ MODULE-IDENTITY,
+ Gauge32,
+ Integer32
+ FROM SNMPv2-SMI
+ TEXTUAL-CONVENTION
+ FROM SNMPv2-TC
+ myModules
+ FROM MY-SMI;
+
+myTextualConventions MODULE-IDENTITY
+ LAST-UPDATED "200203200000Z"
+ ORGANIZATION "$Company$"
+ CONTACT-INFO
+ "
+ Tel: $Telephone$
+
+ E-mail: $E-mail$"
+ DESCRIPTION
+ "This module defines textual conventions used throughout
+ my enterprise mibs."
+ REVISION "200203200000Z"
+ DESCRIPTION
+ "Initial version of this MIB module."
+ ::= { myModules 1}
+
+IfIndex ::= TEXTUAL-CONVENTION
+ DISPLAY-HINT "d"
+ STATUS current
+ DESCRIPTION
+ "This textual convention is an extension of the interface
+ index convention. Interface include physical port and
+ aggreate port and switch virtual interface and
+ loopBack interface,etc."
+ SYNTAX Integer32 (1..2147483647)
+
+
+MyTrapType ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "Private trap(event) type of my switch. "
+ SYNTAX INTEGER {
+ coldMy(1),
+ warmMy(2),
+ linkDown(3),
+ linkUp(4),
+ authenFailure(5),
+ newRoot(6),
+ topoChange(7),
+ hardChangeDetected(8),
+ portSecurityViolate(9),
+ stormAlarm(10),
+ macNotification(11),
+ vrrpNewMaster(12),
+ vrrpAuthFailure(13),
+ powerStateChange(14),
+ fanStateChange(15),
+ ospf(16),
+ pim(17),
+ igmp(18),
+ dvmrp(19),
+ entity(20),
+ cluster(21),
+ temperatureWarning(22),
+ sysGuard(23),
+ bgp(24),
+ lineDetect(25),
+ bgpReachMaxPrefix(26),
+ hardwareNotSupport(27)
+
+ }
+
+ConfigStatus ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "Represents the operational status of an table entry.
+ valid(1) -
+ Indicates this entry's status is valid and active.
+ invalid(2) -
+ Indicates this entry's status is invalid. It is decided by
+ implementatio whether entry is delete"
+ SYNTAX INTEGER {
+ valid(1),
+ invalid(2)
+ }
+
+MemberMap ::= TEXTUAL-CONVENTION
+ STATUS current
+ DESCRIPTION
+ "Each octet indicate a Logic port, and each octect can have
+ their content means. The lenth of octet string will change along
+ with change of product."
+ SYNTAX OCTET STRING
+
+
+END
diff --git a/tests/data/ruijie.json b/tests/data/ruijie.json
new file mode 100644
index 0000000000..dce7ba2680
--- /dev/null
+++ b/tests/data/ruijie.json
@@ -0,0 +1,12130 @@
+{
+ "os": {
+ "discovery": {
+ "devices": [
+ {
+ "sysName": "",
+ "sysObjectID": ".1.3.6.1.4.1.4881.1.1.10.1.150",
+ "sysDescr": "Ruijie 10G Routing Switch(S6220-48XS4QXS) By Ruijie Networks",
+ "sysContact": null,
+ "version": null,
+ "hardware": null,
+ "features": null,
+ "os": "ruijie",
+ "type": "network",
+ "serial": null,
+ "icon": "ruijie.png",
+ "location": null
+ }
+ ]
+ },
+ "poller": {
+ "devices": [
+ {
+ "sysName": "",
+ "sysObjectID": ".1.3.6.1.4.1.4881.1.1.10.1.150",
+ "sysDescr": "Ruijie 10G Routing Switch(S6220-48XS4QXS) By Ruijie Networks",
+ "sysContact": "",
+ "version": null,
+ "hardware": null,
+ "features": null,
+ "os": "ruijie",
+ "type": "network",
+ "serial": null,
+ "icon": "ruijie.png",
+ "location": ""
+ }
+ ]
+ }
+ },
+ "ports": {
+ "discovery": {
+ "ports": [
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "TenGigabitEthernet 0/1",
+ "ifName": "Te0/1",
+ "portName": null,
+ "ifIndex": 1,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/1",
+ "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": "Te0/2",
+ "portName": null,
+ "ifIndex": 2,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/2",
+ "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": "Te0/3",
+ "portName": null,
+ "ifIndex": 3,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/3",
+ "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": "Te0/4",
+ "portName": null,
+ "ifIndex": 4,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/4",
+ "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": "Te0/5",
+ "portName": null,
+ "ifIndex": 5,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/5",
+ "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": "Te0/6",
+ "portName": null,
+ "ifIndex": 6,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/6",
+ "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": "Te0/7",
+ "portName": null,
+ "ifIndex": 7,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/7",
+ "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": "Te0/8",
+ "portName": null,
+ "ifIndex": 8,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/8",
+ "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": "Te0/9",
+ "portName": null,
+ "ifIndex": 9,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/9",
+ "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": "Te0/10",
+ "portName": null,
+ "ifIndex": 10,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/10",
+ "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": "Te0/11",
+ "portName": null,
+ "ifIndex": 11,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/11",
+ "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": "Te0/12",
+ "portName": null,
+ "ifIndex": 12,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/12",
+ "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": "Te0/13",
+ "portName": null,
+ "ifIndex": 13,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/13",
+ "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": "Te0/14",
+ "portName": null,
+ "ifIndex": 14,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/14",
+ "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": "Te0/15",
+ "portName": null,
+ "ifIndex": 15,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/15",
+ "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": "Te0/16",
+ "portName": null,
+ "ifIndex": 16,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/16",
+ "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": "Te0/17",
+ "portName": null,
+ "ifIndex": 17,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/17",
+ "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": "Te0/18",
+ "portName": null,
+ "ifIndex": 18,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/18",
+ "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": "Te0/19",
+ "portName": null,
+ "ifIndex": 19,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/19",
+ "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": "Te0/20",
+ "portName": null,
+ "ifIndex": 20,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/20",
+ "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": "Te0/21",
+ "portName": null,
+ "ifIndex": 21,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/21",
+ "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": "Te0/22",
+ "portName": null,
+ "ifIndex": 22,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/22",
+ "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": "Te0/23",
+ "portName": null,
+ "ifIndex": 23,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/23",
+ "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": "Te0/24",
+ "portName": null,
+ "ifIndex": 24,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/24",
+ "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": "Te0/25",
+ "portName": null,
+ "ifIndex": 25,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/25",
+ "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": "Te0/26",
+ "portName": null,
+ "ifIndex": 26,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/26",
+ "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": "Te0/27",
+ "portName": null,
+ "ifIndex": 27,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/27",
+ "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": "Te0/28",
+ "portName": null,
+ "ifIndex": 28,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/28",
+ "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": "Te0/29",
+ "portName": null,
+ "ifIndex": 29,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/29",
+ "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": "Te0/30",
+ "portName": null,
+ "ifIndex": 30,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/30",
+ "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": "Te0/31",
+ "portName": null,
+ "ifIndex": 31,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/31",
+ "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": "Te0/32",
+ "portName": null,
+ "ifIndex": 32,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/32",
+ "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/33",
+ "ifName": "Te0/33",
+ "portName": null,
+ "ifIndex": 33,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/33",
+ "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/34",
+ "ifName": "Te0/34",
+ "portName": null,
+ "ifIndex": 34,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/34",
+ "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/35",
+ "ifName": "Te0/35",
+ "portName": null,
+ "ifIndex": 35,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/35",
+ "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/36",
+ "ifName": "Te0/36",
+ "portName": null,
+ "ifIndex": 36,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/36",
+ "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/37",
+ "ifName": "Te0/37",
+ "portName": null,
+ "ifIndex": 37,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/37",
+ "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/38",
+ "ifName": "Te0/38",
+ "portName": null,
+ "ifIndex": 38,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/38",
+ "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/39",
+ "ifName": "Te0/39",
+ "portName": null,
+ "ifIndex": 39,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/39",
+ "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/40",
+ "ifName": "Te0/40",
+ "portName": null,
+ "ifIndex": 40,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/40",
+ "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/41",
+ "ifName": "Te0/41",
+ "portName": null,
+ "ifIndex": 41,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/41",
+ "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/42",
+ "ifName": "Te0/42",
+ "portName": null,
+ "ifIndex": 42,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/42",
+ "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/43",
+ "ifName": "Te0/43",
+ "portName": null,
+ "ifIndex": 43,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/43",
+ "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/44",
+ "ifName": "Te0/44",
+ "portName": null,
+ "ifIndex": 44,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/44",
+ "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/45",
+ "ifName": "Te0/45",
+ "portName": null,
+ "ifIndex": 45,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/45",
+ "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/46",
+ "ifName": "Te0/46",
+ "portName": null,
+ "ifIndex": 46,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/46",
+ "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/47",
+ "ifName": "Te0/47",
+ "portName": null,
+ "ifIndex": 47,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/47",
+ "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/48",
+ "ifName": "Te0/48",
+ "portName": null,
+ "ifIndex": 48,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/48",
+ "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": "FortyGigabitEthernet 0/65",
+ "ifName": "Fo0/65",
+ "portName": null,
+ "ifIndex": 65,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "FortyGigabitEthernet 0/65",
+ "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": "FortyGigabitEthernet 0/66",
+ "ifName": "Fo0/66",
+ "portName": null,
+ "ifIndex": 66,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "FortyGigabitEthernet 0/66",
+ "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": "FortyGigabitEthernet 0/67",
+ "ifName": "Fo0/67",
+ "portName": null,
+ "ifIndex": 67,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "FortyGigabitEthernet 0/67",
+ "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": "FortyGigabitEthernet 0/68",
+ "ifName": "Fo0/68",
+ "portName": null,
+ "ifIndex": 68,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "FortyGigabitEthernet 0/68",
+ "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": "AggregatePort 1",
+ "ifName": "Ag1",
+ "portName": null,
+ "ifIndex": 69,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "propVirtual",
+ "ifAlias": "AggregatePort 1",
+ "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": "Mgmt 0",
+ "ifName": "Mg 0",
+ "portName": null,
+ "ifIndex": 4095,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "IP management Console",
+ "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": "Nu0",
+ "portName": null,
+ "ifIndex": 4096,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "other",
+ "ifAlias": "Null 0",
+ "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 1543",
+ "ifName": "Vl1543",
+ "portName": null,
+ "ifIndex": 5639,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "l3ipvlan",
+ "ifAlias": "VLAN 1543",
+ "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": "Loopback 0",
+ "ifName": "Lo0",
+ "portName": null,
+ "ifIndex": 16385,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "softwareLoopback",
+ "ifAlias": "Loopback 0",
+ "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": "Te0/1",
+ "portName": null,
+ "ifIndex": 1,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/1",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3538,
+ "ifVlan": "1",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 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/2",
+ "ifName": "Te0/2",
+ "portName": null,
+ "ifIndex": 2,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/2",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3538,
+ "ifVlan": "1",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 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/3",
+ "ifName": "Te0/3",
+ "portName": null,
+ "ifIndex": 3,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/3",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 37522450924,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 20604810854,
+ "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": 40014605180948,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 18924817949768,
+ "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": 3600,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 26586,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 21531172,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 29169753,
+ "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": "Te0/4",
+ "portName": null,
+ "ifIndex": 4,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/4",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3539,
+ "ifVlan": "1",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 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/5",
+ "ifName": "Te0/5",
+ "portName": null,
+ "ifIndex": 5,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 9000,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/5",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 352274093,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 15322604734781,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 3955403027196,
+ "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": 3690483818092734,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 539436001274910,
+ "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": 38735,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 7294,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 28062625,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 30218515,
+ "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": "Te0/6",
+ "portName": null,
+ "ifIndex": 6,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/6",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 2910287853,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 2603933915,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 3763816003,
+ "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": 1488262400009,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 4107077460539,
+ "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": 20,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 3383,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 24832769,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 31514690,
+ "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": "Te0/7",
+ "portName": null,
+ "ifIndex": 7,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/7",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "1",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 65085325040,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 92310885452,
+ "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": 18626084080934,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 113896238650512,
+ "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": 1906167,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 741,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 4108202,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 4798352,
+ "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": "Te0/8",
+ "portName": null,
+ "ifIndex": 8,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/8",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 317682152,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 48519189187,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 189580516800,
+ "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": 12464134017670,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 185515858055627,
+ "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": 1233,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 6973,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 13039827,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 18523430,
+ "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": "Te0/9",
+ "portName": null,
+ "ifIndex": 9,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/9",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 2907239572,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 138140230018,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 508612268812,
+ "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": 21372669642249,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 341040243728730,
+ "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": 20,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 7922,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 24212717,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 32049578,
+ "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": "Te0/10",
+ "portName": null,
+ "ifIndex": 10,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/10",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 2358788346,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 4217251295,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 977952563,
+ "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": 4808417791752,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 605435555770,
+ "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": 16,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 3644,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 24478098,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 32452154,
+ "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": "Te0/11",
+ "portName": null,
+ "ifIndex": 11,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/11",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 2358763561,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 247451851680,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 545691210357,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 1,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 126883361886953,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 220904575300903,
+ "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": 20,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 8572,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 25567472,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 33252359,
+ "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": "Te0/12",
+ "portName": null,
+ "ifIndex": 12,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/12",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 2349819448,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 160496400488,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 183140536333,
+ "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": 90196564006636,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 130057386216323,
+ "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": 8083,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 22507346,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 26670380,
+ "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": "Te0/13",
+ "portName": null,
+ "ifIndex": 13,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/13",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3544,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 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/14",
+ "ifName": "Te0/14",
+ "portName": null,
+ "ifIndex": 14,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/14",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3544,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 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/15",
+ "ifName": "Te0/15",
+ "portName": null,
+ "ifIndex": 15,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/15",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 2359059255,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 934677,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 1205172,
+ "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": 2221332648,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 3541904794,
+ "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": 2,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 3869,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 23343705,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 26670567,
+ "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": "Te0/16",
+ "portName": null,
+ "ifIndex": 16,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/16",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 1164644970,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 620862053117,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 1431148541865,
+ "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": 201601551172252,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 371240900107291,
+ "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": 11,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 8153,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 25047209,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 30818164,
+ "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": "Te0/17",
+ "portName": null,
+ "ifIndex": 17,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/17",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 2358843519,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 896881676817,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 1354177042017,
+ "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": 219318748248019,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 213640159289514,
+ "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": 5,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 7839,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 24899442,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 28846856,
+ "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": "Te0/18",
+ "portName": null,
+ "ifIndex": 18,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/18",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 1957806737,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 531189729087,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 1903713590352,
+ "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": 128465028879362,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 485959439324868,
+ "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": 11,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 2001,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 23097493,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 31651366,
+ "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": "Te0/19",
+ "portName": null,
+ "ifIndex": 19,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/19",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3634376272,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 165030746105,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 289263336023,
+ "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": 87408901853577,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 154989596372038,
+ "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": 10885840,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 7687,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 57010854,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 28190620,
+ "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": "Te0/20",
+ "portName": null,
+ "ifIndex": 20,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/20",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 678418277067,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 1395617441426,
+ "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": 195006979683161,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 383442664289827,
+ "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": 145487406,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 8013,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 413575168,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 26512983,
+ "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": "Te0/21",
+ "portName": null,
+ "ifIndex": 21,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/21",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 1762405987,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 567636534207,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 1050569148215,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 28,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 296761574248305,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 330215571113706,
+ "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": 36,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 8106,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 30027850,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 26737631,
+ "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": "Te0/22",
+ "portName": null,
+ "ifIndex": 22,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/22",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 2350194154,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 26491822852,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 101946342723,
+ "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": 4352321460202,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 134596268874549,
+ "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": 36,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 8192,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 24570006,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 30866137,
+ "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": "Te0/23",
+ "portName": null,
+ "ifIndex": 23,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/23",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3529341544,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 217410811808,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 372828461335,
+ "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": 95051478118703,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 256931507838955,
+ "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": 92,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 7659,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 22893343,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 30224798,
+ "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": "Te0/24",
+ "portName": null,
+ "ifIndex": 24,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/24",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 2358771465,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 2982434887,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 1269102408238,
+ "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": 655777303462,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 367110105179540,
+ "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": 35,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 7780,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 24746412,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 28889689,
+ "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": "Te0/25",
+ "portName": null,
+ "ifIndex": 25,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/25",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3529394538,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 670255013169,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 1472276402787,
+ "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": 251435727413273,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 821801120633155,
+ "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": 388,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 8194,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 23871858,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 30662376,
+ "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": "Te0/26",
+ "portName": null,
+ "ifIndex": 26,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/26",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3495150960,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 243867959263,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 1133518236947,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 13,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 161362371489044,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 755820997366280,
+ "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": 49,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 12933,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 22754951,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 29951936,
+ "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": "Te0/27",
+ "portName": null,
+ "ifIndex": 27,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/27",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3503180747,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 682007190918,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 2515757463891,
+ "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": 286343370874143,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 1606974244492164,
+ "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": 8688,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 21412757,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 25898281,
+ "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": "Te0/28",
+ "portName": null,
+ "ifIndex": 28,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/28",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3513349490,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 645408911098,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 1439024369639,
+ "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": 314463747756695,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 904218027649779,
+ "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": 40,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 8007,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 22846160,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 30796684,
+ "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": "Te0/29",
+ "portName": null,
+ "ifIndex": 29,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/29",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3513590567,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 363537143667,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 1895537148350,
+ "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": 172508588919072,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 1264175155545975,
+ "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": 61,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 7219,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 22544305,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 28288579,
+ "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": "Te0/30",
+ "portName": null,
+ "ifIndex": 30,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/30",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 1957950112,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 6059001099685,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 4341204397162,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 125373,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 6531501439209252,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 2354991508179294,
+ "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": 643,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 7131,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 25847688,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 32847195,
+ "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": "Te0/31",
+ "portName": null,
+ "ifIndex": 31,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/31",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 2610492176,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 326824262306,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 980668454757,
+ "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": 44196512903139,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 576943441852993,
+ "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": 40,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 7295,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 26340070,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 36223409,
+ "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": "Te0/32",
+ "portName": null,
+ "ifIndex": 32,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/32",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 1388549907,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 42197659951,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 148458365351,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 3,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 17755834628060,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 71144901968353,
+ "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": 71,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 3281,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 26950044,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 30670113,
+ "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/33",
+ "ifName": "Te0/33",
+ "portName": null,
+ "ifIndex": 33,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/33",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 1957950122,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 243782776118,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 375535697347,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 2,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 81551699789310,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 411525435393720,
+ "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": 469742,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 7530,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 25714327,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 33932618,
+ "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/34",
+ "ifName": "Te0/34",
+ "portName": null,
+ "ifIndex": 34,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/34",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3527446286,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 120269682379,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 195889730430,
+ "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": 60087680641952,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 72778954678517,
+ "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": 334,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 7780,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 25744211,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 24343858,
+ "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/35",
+ "ifName": "Te0/35",
+ "portName": null,
+ "ifIndex": 35,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/35",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 2668493483,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 882800095,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 923351255,
+ "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": 160583869141,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 168336902502,
+ "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": 144,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 7703,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 25344586,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 22151107,
+ "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/36",
+ "ifName": "Te0/36",
+ "portName": null,
+ "ifIndex": 36,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/36",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3158171566,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 47936478074,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 36135329125,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 779894,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 47314035781747,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 10382691295068,
+ "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": 37206,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 3434,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 26932429,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 27562852,
+ "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/37",
+ "ifName": "Te0/37",
+ "portName": null,
+ "ifIndex": 37,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/37",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3550,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 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/38",
+ "ifName": "Te0/38",
+ "portName": null,
+ "ifIndex": 38,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/38",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 2353848590,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 207511955290,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 406396772513,
+ "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": 44828545525110,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 303120978224159,
+ "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": 7369,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 25712952,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 32211071,
+ "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/39",
+ "ifName": "Te0/39",
+ "portName": null,
+ "ifIndex": 39,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/39",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 2359047988,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 3152285696,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 7537818086,
+ "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": 882487676824,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 4837126087612,
+ "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": 1,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 1102,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 16083830,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 19980791,
+ "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/40",
+ "ifName": "Te0/40",
+ "portName": null,
+ "ifIndex": 40,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/40",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3634376138,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 75620354050,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 131017226611,
+ "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": 46673917372806,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 55490246166758,
+ "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": 1294,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 2065,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 19688438,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 27065468,
+ "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/41",
+ "ifName": "Te0/41",
+ "portName": null,
+ "ifIndex": 41,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/41",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 2500631154,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 107858159677,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 162244007802,
+ "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": 86051336153542,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 134499708307258,
+ "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": 94,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 505,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 14570537,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 17287849,
+ "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/42",
+ "ifName": "Te0/42",
+ "portName": null,
+ "ifIndex": 42,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/42",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3464413823,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 63180786772,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 119564555364,
+ "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": 19872680469275,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 114382997156559,
+ "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": 42,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 3864261,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 3864155,
+ "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/43",
+ "ifName": "Te0/43",
+ "portName": null,
+ "ifIndex": 43,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/43",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3038552783,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 5079385554,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 10288683186,
+ "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": 1849494666231,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 8335337123714,
+ "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": 32,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 14,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 2905266,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 2904852,
+ "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/44",
+ "ifName": "Te0/44",
+ "portName": null,
+ "ifIndex": 44,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/44",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3634376196,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 25420927579,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 48649002980,
+ "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": 12481767382903,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 24198457370294,
+ "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": 1,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 246,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 2753644,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 2751119,
+ "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/45",
+ "ifName": "Te0/45",
+ "portName": null,
+ "ifIndex": 45,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/45",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 2361255825,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 38605318488,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 75443986009,
+ "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": 14829399825281,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 74138185315409,
+ "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": 9,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 5492439,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 3183335,
+ "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/46",
+ "ifName": "Te0/46",
+ "portName": null,
+ "ifIndex": 46,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/46",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 352396708,
+ "ifVlan": "0",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 15401022637,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 20620357572,
+ "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": 9771426270382,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 20573224621161,
+ "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": 7,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 301,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 1978636,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 2259584,
+ "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/47",
+ "ifName": "Te0/47",
+ "portName": null,
+ "ifIndex": 47,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/47",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3552,
+ "ifVlan": "1",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 768477990799,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 454681014018,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 439,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 543546999672916,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 198273912835237,
+ "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": 393,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 2343,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 35713928,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 32851084,
+ "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/48",
+ "ifName": "Te0/48",
+ "portName": null,
+ "ifIndex": 48,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "TenGigabitEthernet 0/48",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3552,
+ "ifVlan": "1",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 166238977452,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 16088830655,
+ "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": 74337244433132,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 15433017266317,
+ "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": 2,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 1,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 2223516,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 2223215,
+ "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": "FortyGigabitEthernet 0/65",
+ "ifName": "Fo0/65",
+ "portName": null,
+ "ifIndex": 65,
+ "ifSpeed": 40000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 40000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "FortyGigabitEthernet 0/65",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3553,
+ "ifVlan": "1",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 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": "FortyGigabitEthernet 0/66",
+ "ifName": "Fo0/66",
+ "portName": null,
+ "ifIndex": 66,
+ "ifSpeed": 40000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 40000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "FortyGigabitEthernet 0/66",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3553,
+ "ifVlan": "1",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 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": "FortyGigabitEthernet 0/67",
+ "ifName": "Fo0/67",
+ "portName": null,
+ "ifIndex": 67,
+ "ifSpeed": 40000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 40000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "FortyGigabitEthernet 0/67",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3553,
+ "ifVlan": "1",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 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": "FortyGigabitEthernet 0/68",
+ "ifName": "Fo0/68",
+ "portName": null,
+ "ifIndex": 68,
+ "ifSpeed": 40000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 40000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "FortyGigabitEthernet 0/68",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 3553,
+ "ifVlan": "1",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 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": "AggregatePort 1",
+ "ifName": "Ag1",
+ "portName": null,
+ "ifIndex": 69,
+ "ifSpeed": 20000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 20000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "propVirtual",
+ "ifAlias": "AggregatePort 1",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 368953188,
+ "ifVlan": "1",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 934716925444,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 470769839140,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 112,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 617884224495168,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 213706928200521,
+ "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": 395,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 2344,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 37937424,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 35074285,
+ "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": "Mgmt 0",
+ "ifName": "Mg 0",
+ "portName": null,
+ "ifIndex": 4095,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "IP management Console",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 25439386322,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 2882967792,
+ "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": 3,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 666445,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 636355,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 3817797,
+ "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": "Nu0",
+ "portName": null,
+ "ifIndex": 4096,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "false",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "other",
+ "ifAlias": "Null 0",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "VLAN 1543",
+ "ifName": "Vl1543",
+ "portName": null,
+ "ifIndex": 5639,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "l3ipvlan",
+ "ifAlias": "VLAN 1543",
+ "ifPhysAddress": "35383a36393a",
+ "ifHardType": null,
+ "ifLastChange": 5260,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 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": "Loopback 0",
+ "ifName": "Lo0",
+ "portName": null,
+ "ifIndex": 16385,
+ "ifSpeed": 8000000000,
+ "ifConnectorPresent": "false",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 8000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "softwareLoopback",
+ "ifAlias": "Loopback 0",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ }
+ ]
+ }
+ },
+ "vlans": {
+ "discovery": {
+ "vlans": [
+ {
+ "vlan_vlan": 1,
+ "vlan_domain": 1,
+ "vlan_name": "VLAN0001",
+ "vlan_type": null,
+ "vlan_mtu": null
+ },
+ {
+ "vlan_vlan": 1543,
+ "vlan_domain": 1,
+ "vlan_name": "1543",
+ "vlan_type": null,
+ "vlan_mtu": null
+ }
+ ],
+ "ports_vlans": [
+ {
+ "vlan": 1,
+ "baseport": 1,
+ "priority": 0,
+ "state": "unknown",
+ "cost": 0,
+ "untagged": 1
+ },
+ {
+ "vlan": 1,
+ "baseport": 2,
+ "priority": 0,
+ "state": "unknown",
+ "cost": 0,
+ "untagged": 1
+ },
+ {
+ "vlan": 1,
+ "baseport": 4,
+ "priority": 0,
+ "state": "unknown",
+ "cost": 0,
+ "untagged": 1
+ },
+ {
+ "vlan": 1,
+ "baseport": 7,
+ "priority": 0,
+ "state": "unknown",
+ "cost": 0,
+ "untagged": 1
+ },
+ {
+ "vlan": 1,
+ "baseport": 47,
+ "priority": 0,
+ "state": "unknown",
+ "cost": 0,
+ "untagged": 1
+ },
+ {
+ "vlan": 1,
+ "baseport": 48,
+ "priority": 0,
+ "state": "unknown",
+ "cost": 0,
+ "untagged": 1
+ },
+ {
+ "vlan": 1,
+ "baseport": 65,
+ "priority": 0,
+ "state": "unknown",
+ "cost": 0,
+ "untagged": 1
+ },
+ {
+ "vlan": 1,
+ "baseport": 66,
+ "priority": 0,
+ "state": "unknown",
+ "cost": 0,
+ "untagged": 1
+ },
+ {
+ "vlan": 1,
+ "baseport": 67,
+ "priority": 0,
+ "state": "unknown",
+ "cost": 0,
+ "untagged": 1
+ },
+ {
+ "vlan": 1,
+ "baseport": 68,
+ "priority": 0,
+ "state": "unknown",
+ "cost": 0,
+ "untagged": 1
+ },
+ {
+ "vlan": 1543,
+ "baseport": 69,
+ "priority": 0,
+ "state": "unknown",
+ "cost": 0,
+ "untagged": 0
+ }
+ ]
+ }
+ }
+}
diff --git a/tests/snmpsim/ruijie.snmprec b/tests/snmpsim/ruijie.snmprec
new file mode 100644
index 0000000000..5dc64905be
--- /dev/null
+++ b/tests/snmpsim/ruijie.snmprec
@@ -0,0 +1,3573 @@
+1.0.8802.1.1.2.1.3.7.1.3.1|4|Te0/1
+1.0.8802.1.1.2.1.3.7.1.3.2|4|Te0/2
+1.0.8802.1.1.2.1.3.7.1.3.3|4|Te0/3
+1.0.8802.1.1.2.1.3.7.1.3.4|4|Te0/4
+1.0.8802.1.1.2.1.3.7.1.3.5|4|Te0/5
+1.0.8802.1.1.2.1.3.7.1.3.6|4|Te0/6
+1.0.8802.1.1.2.1.3.7.1.3.7|4|Te0/7
+1.0.8802.1.1.2.1.3.7.1.3.8|4|Te0/8
+1.0.8802.1.1.2.1.3.7.1.3.9|4|Te0/9
+1.0.8802.1.1.2.1.3.7.1.3.10|4|Te0/10
+1.0.8802.1.1.2.1.3.7.1.3.11|4|Te0/11
+1.0.8802.1.1.2.1.3.7.1.3.12|4|Te0/12
+1.0.8802.1.1.2.1.3.7.1.3.13|4|Te0/13
+1.0.8802.1.1.2.1.3.7.1.3.14|4|Te0/14
+1.0.8802.1.1.2.1.3.7.1.3.15|4|Te0/15
+1.0.8802.1.1.2.1.3.7.1.3.16|4|Te0/16
+1.0.8802.1.1.2.1.3.7.1.3.17|4|Te0/17
+1.0.8802.1.1.2.1.3.7.1.3.18|4|Te0/18
+1.0.8802.1.1.2.1.3.7.1.3.19|4|Te0/19
+1.0.8802.1.1.2.1.3.7.1.3.20|4|Te0/20
+1.0.8802.1.1.2.1.3.7.1.3.21|4|Te0/21
+1.0.8802.1.1.2.1.3.7.1.3.22|4|Te0/22
+1.0.8802.1.1.2.1.3.7.1.3.23|4|Te0/23
+1.0.8802.1.1.2.1.3.7.1.3.24|4|Te0/24
+1.0.8802.1.1.2.1.3.7.1.3.25|4|Te0/25
+1.0.8802.1.1.2.1.3.7.1.3.26|4|Te0/26
+1.0.8802.1.1.2.1.3.7.1.3.27|4|Te0/27
+1.0.8802.1.1.2.1.3.7.1.3.28|4|Te0/28
+1.0.8802.1.1.2.1.3.7.1.3.29|4|Te0/29
+1.0.8802.1.1.2.1.3.7.1.3.30|4|Te0/30
+1.0.8802.1.1.2.1.3.7.1.3.31|4|Te0/31
+1.0.8802.1.1.2.1.3.7.1.3.32|4|Te0/32
+1.0.8802.1.1.2.1.3.7.1.3.33|4|Te0/33
+1.0.8802.1.1.2.1.3.7.1.3.34|4|Te0/34
+1.0.8802.1.1.2.1.3.7.1.3.35|4|Te0/35
+1.0.8802.1.1.2.1.3.7.1.3.36|4|Te0/36
+1.0.8802.1.1.2.1.3.7.1.3.37|4|Te0/37
+1.0.8802.1.1.2.1.3.7.1.3.38|4|Te0/38
+1.0.8802.1.1.2.1.3.7.1.3.39|4|Te0/39
+1.0.8802.1.1.2.1.3.7.1.3.40|4|Te0/40
+1.0.8802.1.1.2.1.3.7.1.3.41|4|Te0/41
+1.0.8802.1.1.2.1.3.7.1.3.42|4|Te0/42
+1.0.8802.1.1.2.1.3.7.1.3.43|4|Te0/43
+1.0.8802.1.1.2.1.3.7.1.3.44|4|Te0/44
+1.0.8802.1.1.2.1.3.7.1.3.45|4|Te0/45
+1.0.8802.1.1.2.1.3.7.1.3.46|4|Te0/46
+1.0.8802.1.1.2.1.3.7.1.3.47|4|Te0/47
+1.0.8802.1.1.2.1.3.7.1.3.48|4|Te0/48
+1.0.8802.1.1.2.1.3.7.1.3.65|4|Fo0/65
+1.0.8802.1.1.2.1.3.7.1.3.66|4|Fo0/66
+1.0.8802.1.1.2.1.3.7.1.3.67|4|Fo0/67
+1.0.8802.1.1.2.1.3.7.1.3.68|4|Fo0/68
+1.0.8802.1.1.2.1.4.1.1.4.352274011.5.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.1762405819.21.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.1957949978.30.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.2103766526.18.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.2349822142.12.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.2350196798.22.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.2358766126.11.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.2358790914.10.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.2358846109.17.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.2359061835.15.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.2469051334.20.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.2610494790.31.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.2907240222.9.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.2910290418.6.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.3342098070.3.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.3452164181.24.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.3521160008.16.1|2|4
+1.0.8802.1.1.2.1.4.1.1.4.3634378843.19.1|2|4
+1.3.6.1.2.1.1.1.0|4|Ruijie 10G Routing Switch(S6220-48XS4QXS) By Ruijie Networks
+1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.1.3.0|67|3705225462
+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.1|4|TenGigabitEthernet 0/1
+1.3.6.1.2.1.2.2.1.2.2|4|TenGigabitEthernet 0/2
+1.3.6.1.2.1.2.2.1.2.3|4|TenGigabitEthernet 0/3
+1.3.6.1.2.1.2.2.1.2.4|4|TenGigabitEthernet 0/4
+1.3.6.1.2.1.2.2.1.2.5|4|TenGigabitEthernet 0/5
+1.3.6.1.2.1.2.2.1.2.6|4|TenGigabitEthernet 0/6
+1.3.6.1.2.1.2.2.1.2.7|4|TenGigabitEthernet 0/7
+1.3.6.1.2.1.2.2.1.2.8|4|TenGigabitEthernet 0/8
+1.3.6.1.2.1.2.2.1.2.9|4|TenGigabitEthernet 0/9
+1.3.6.1.2.1.2.2.1.2.10|4|TenGigabitEthernet 0/10
+1.3.6.1.2.1.2.2.1.2.11|4|TenGigabitEthernet 0/11
+1.3.6.1.2.1.2.2.1.2.12|4|TenGigabitEthernet 0/12
+1.3.6.1.2.1.2.2.1.2.13|4|TenGigabitEthernet 0/13
+1.3.6.1.2.1.2.2.1.2.14|4|TenGigabitEthernet 0/14
+1.3.6.1.2.1.2.2.1.2.15|4|TenGigabitEthernet 0/15
+1.3.6.1.2.1.2.2.1.2.16|4|TenGigabitEthernet 0/16
+1.3.6.1.2.1.2.2.1.2.17|4|TenGigabitEthernet 0/17
+1.3.6.1.2.1.2.2.1.2.18|4|TenGigabitEthernet 0/18
+1.3.6.1.2.1.2.2.1.2.19|4|TenGigabitEthernet 0/19
+1.3.6.1.2.1.2.2.1.2.20|4|TenGigabitEthernet 0/20
+1.3.6.1.2.1.2.2.1.2.21|4|TenGigabitEthernet 0/21
+1.3.6.1.2.1.2.2.1.2.22|4|TenGigabitEthernet 0/22
+1.3.6.1.2.1.2.2.1.2.23|4|TenGigabitEthernet 0/23
+1.3.6.1.2.1.2.2.1.2.24|4|TenGigabitEthernet 0/24
+1.3.6.1.2.1.2.2.1.2.25|4|TenGigabitEthernet 0/25
+1.3.6.1.2.1.2.2.1.2.26|4|TenGigabitEthernet 0/26
+1.3.6.1.2.1.2.2.1.2.27|4|TenGigabitEthernet 0/27
+1.3.6.1.2.1.2.2.1.2.28|4|TenGigabitEthernet 0/28
+1.3.6.1.2.1.2.2.1.2.29|4|TenGigabitEthernet 0/29
+1.3.6.1.2.1.2.2.1.2.30|4|TenGigabitEthernet 0/30
+1.3.6.1.2.1.2.2.1.2.31|4|TenGigabitEthernet 0/31
+1.3.6.1.2.1.2.2.1.2.32|4|TenGigabitEthernet 0/32
+1.3.6.1.2.1.2.2.1.2.33|4|TenGigabitEthernet 0/33
+1.3.6.1.2.1.2.2.1.2.34|4|TenGigabitEthernet 0/34
+1.3.6.1.2.1.2.2.1.2.35|4|TenGigabitEthernet 0/35
+1.3.6.1.2.1.2.2.1.2.36|4|TenGigabitEthernet 0/36
+1.3.6.1.2.1.2.2.1.2.37|4|TenGigabitEthernet 0/37
+1.3.6.1.2.1.2.2.1.2.38|4|TenGigabitEthernet 0/38
+1.3.6.1.2.1.2.2.1.2.39|4|TenGigabitEthernet 0/39
+1.3.6.1.2.1.2.2.1.2.40|4|TenGigabitEthernet 0/40
+1.3.6.1.2.1.2.2.1.2.41|4|TenGigabitEthernet 0/41
+1.3.6.1.2.1.2.2.1.2.42|4|TenGigabitEthernet 0/42
+1.3.6.1.2.1.2.2.1.2.43|4|TenGigabitEthernet 0/43
+1.3.6.1.2.1.2.2.1.2.44|4|TenGigabitEthernet 0/44
+1.3.6.1.2.1.2.2.1.2.45|4|TenGigabitEthernet 0/45
+1.3.6.1.2.1.2.2.1.2.46|4|TenGigabitEthernet 0/46
+1.3.6.1.2.1.2.2.1.2.47|4|TenGigabitEthernet 0/47
+1.3.6.1.2.1.2.2.1.2.48|4|TenGigabitEthernet 0/48
+1.3.6.1.2.1.2.2.1.2.65|4|FortyGigabitEthernet 0/65
+1.3.6.1.2.1.2.2.1.2.66|4|FortyGigabitEthernet 0/66
+1.3.6.1.2.1.2.2.1.2.67|4|FortyGigabitEthernet 0/67
+1.3.6.1.2.1.2.2.1.2.68|4|FortyGigabitEthernet 0/68
+1.3.6.1.2.1.2.2.1.2.69|4|AggregatePort 1
+1.3.6.1.2.1.2.2.1.2.4095|4|Mgmt 0
+1.3.6.1.2.1.2.2.1.2.4096|4|Null 0
+1.3.6.1.2.1.2.2.1.2.5639|4|VLAN 1543
+1.3.6.1.2.1.2.2.1.2.16385|4|Loopback 0
+1.3.6.1.2.1.2.2.1.3.1|2|6
+1.3.6.1.2.1.2.2.1.3.2|2|6
+1.3.6.1.2.1.2.2.1.3.3|2|6
+1.3.6.1.2.1.2.2.1.3.4|2|6
+1.3.6.1.2.1.2.2.1.3.5|2|6
+1.3.6.1.2.1.2.2.1.3.6|2|6
+1.3.6.1.2.1.2.2.1.3.7|2|6
+1.3.6.1.2.1.2.2.1.3.8|2|6
+1.3.6.1.2.1.2.2.1.3.9|2|6
+1.3.6.1.2.1.2.2.1.3.10|2|6
+1.3.6.1.2.1.2.2.1.3.11|2|6
+1.3.6.1.2.1.2.2.1.3.12|2|6
+1.3.6.1.2.1.2.2.1.3.13|2|6
+1.3.6.1.2.1.2.2.1.3.14|2|6
+1.3.6.1.2.1.2.2.1.3.15|2|6
+1.3.6.1.2.1.2.2.1.3.16|2|6
+1.3.6.1.2.1.2.2.1.3.17|2|6
+1.3.6.1.2.1.2.2.1.3.18|2|6
+1.3.6.1.2.1.2.2.1.3.19|2|6
+1.3.6.1.2.1.2.2.1.3.20|2|6
+1.3.6.1.2.1.2.2.1.3.21|2|6
+1.3.6.1.2.1.2.2.1.3.22|2|6
+1.3.6.1.2.1.2.2.1.3.23|2|6
+1.3.6.1.2.1.2.2.1.3.24|2|6
+1.3.6.1.2.1.2.2.1.3.25|2|6
+1.3.6.1.2.1.2.2.1.3.26|2|6
+1.3.6.1.2.1.2.2.1.3.27|2|6
+1.3.6.1.2.1.2.2.1.3.28|2|6
+1.3.6.1.2.1.2.2.1.3.29|2|6
+1.3.6.1.2.1.2.2.1.3.30|2|6
+1.3.6.1.2.1.2.2.1.3.31|2|6
+1.3.6.1.2.1.2.2.1.3.32|2|6
+1.3.6.1.2.1.2.2.1.3.33|2|6
+1.3.6.1.2.1.2.2.1.3.34|2|6
+1.3.6.1.2.1.2.2.1.3.35|2|6
+1.3.6.1.2.1.2.2.1.3.36|2|6
+1.3.6.1.2.1.2.2.1.3.37|2|6
+1.3.6.1.2.1.2.2.1.3.38|2|6
+1.3.6.1.2.1.2.2.1.3.39|2|6
+1.3.6.1.2.1.2.2.1.3.40|2|6
+1.3.6.1.2.1.2.2.1.3.41|2|6
+1.3.6.1.2.1.2.2.1.3.42|2|6
+1.3.6.1.2.1.2.2.1.3.43|2|6
+1.3.6.1.2.1.2.2.1.3.44|2|6
+1.3.6.1.2.1.2.2.1.3.45|2|6
+1.3.6.1.2.1.2.2.1.3.46|2|6
+1.3.6.1.2.1.2.2.1.3.47|2|6
+1.3.6.1.2.1.2.2.1.3.48|2|6
+1.3.6.1.2.1.2.2.1.3.65|2|6
+1.3.6.1.2.1.2.2.1.3.66|2|6
+1.3.6.1.2.1.2.2.1.3.67|2|6
+1.3.6.1.2.1.2.2.1.3.68|2|6
+1.3.6.1.2.1.2.2.1.3.69|2|53
+1.3.6.1.2.1.2.2.1.3.4095|2|6
+1.3.6.1.2.1.2.2.1.3.4096|2|1
+1.3.6.1.2.1.2.2.1.3.5639|2|136
+1.3.6.1.2.1.2.2.1.3.16385|2|24
+1.3.6.1.2.1.2.2.1.4.1|2|1500
+1.3.6.1.2.1.2.2.1.4.2|2|1500
+1.3.6.1.2.1.2.2.1.4.3|2|1500
+1.3.6.1.2.1.2.2.1.4.4|2|1500
+1.3.6.1.2.1.2.2.1.4.5|2|9000
+1.3.6.1.2.1.2.2.1.4.6|2|1500
+1.3.6.1.2.1.2.2.1.4.7|2|1500
+1.3.6.1.2.1.2.2.1.4.8|2|1500
+1.3.6.1.2.1.2.2.1.4.9|2|1500
+1.3.6.1.2.1.2.2.1.4.10|2|1500
+1.3.6.1.2.1.2.2.1.4.11|2|1500
+1.3.6.1.2.1.2.2.1.4.12|2|1500
+1.3.6.1.2.1.2.2.1.4.13|2|1500
+1.3.6.1.2.1.2.2.1.4.14|2|1500
+1.3.6.1.2.1.2.2.1.4.15|2|1500
+1.3.6.1.2.1.2.2.1.4.16|2|1500
+1.3.6.1.2.1.2.2.1.4.17|2|1500
+1.3.6.1.2.1.2.2.1.4.18|2|1500
+1.3.6.1.2.1.2.2.1.4.19|2|1500
+1.3.6.1.2.1.2.2.1.4.20|2|1500
+1.3.6.1.2.1.2.2.1.4.21|2|1500
+1.3.6.1.2.1.2.2.1.4.22|2|1500
+1.3.6.1.2.1.2.2.1.4.23|2|1500
+1.3.6.1.2.1.2.2.1.4.24|2|1500
+1.3.6.1.2.1.2.2.1.4.25|2|1500
+1.3.6.1.2.1.2.2.1.4.26|2|1500
+1.3.6.1.2.1.2.2.1.4.27|2|1500
+1.3.6.1.2.1.2.2.1.4.28|2|1500
+1.3.6.1.2.1.2.2.1.4.29|2|1500
+1.3.6.1.2.1.2.2.1.4.30|2|1500
+1.3.6.1.2.1.2.2.1.4.31|2|1500
+1.3.6.1.2.1.2.2.1.4.32|2|1500
+1.3.6.1.2.1.2.2.1.4.33|2|1500
+1.3.6.1.2.1.2.2.1.4.34|2|1500
+1.3.6.1.2.1.2.2.1.4.35|2|1500
+1.3.6.1.2.1.2.2.1.4.36|2|1500
+1.3.6.1.2.1.2.2.1.4.37|2|1500
+1.3.6.1.2.1.2.2.1.4.38|2|1500
+1.3.6.1.2.1.2.2.1.4.39|2|1500
+1.3.6.1.2.1.2.2.1.4.40|2|1500
+1.3.6.1.2.1.2.2.1.4.41|2|1500
+1.3.6.1.2.1.2.2.1.4.42|2|1500
+1.3.6.1.2.1.2.2.1.4.43|2|1500
+1.3.6.1.2.1.2.2.1.4.44|2|1500
+1.3.6.1.2.1.2.2.1.4.45|2|1500
+1.3.6.1.2.1.2.2.1.4.46|2|1500
+1.3.6.1.2.1.2.2.1.4.47|2|1500
+1.3.6.1.2.1.2.2.1.4.48|2|1500
+1.3.6.1.2.1.2.2.1.4.65|2|1500
+1.3.6.1.2.1.2.2.1.4.66|2|1500
+1.3.6.1.2.1.2.2.1.4.67|2|1500
+1.3.6.1.2.1.2.2.1.4.68|2|1500
+1.3.6.1.2.1.2.2.1.4.69|2|1500
+1.3.6.1.2.1.2.2.1.4.4095|2|1500
+1.3.6.1.2.1.2.2.1.4.4096|2|1500
+1.3.6.1.2.1.2.2.1.4.5639|2|1500
+1.3.6.1.2.1.2.2.1.4.16385|2|1500
+1.3.6.1.2.1.2.2.1.6.1|4|58:69:6c:6:82:3b
+1.3.6.1.2.1.2.2.1.6.2|4|58:69:6c:6:82:3b
+1.3.6.1.2.1.2.2.1.6.3|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.4|4|58:69:6c:6:82:3b
+1.3.6.1.2.1.2.2.1.6.5|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.6|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.7|4|58:69:6c:6:82:3b
+1.3.6.1.2.1.2.2.1.6.8|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.9|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.10|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.11|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.12|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.13|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.14|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.15|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.16|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.17|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.18|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.19|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.20|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.21|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.22|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.23|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.24|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.25|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.26|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.27|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.28|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.29|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.30|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.31|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.32|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.33|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.34|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.35|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.36|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.37|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.38|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.39|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.40|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.41|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.42|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.43|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.44|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.45|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.46|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.47|4|58:69:6c:6:82:3b
+1.3.6.1.2.1.2.2.1.6.48|4|58:69:6c:6:82:3b
+1.3.6.1.2.1.2.2.1.6.65|4|58:69:6c:6:82:3b
+1.3.6.1.2.1.2.2.1.6.66|4|58:69:6c:6:82:3b
+1.3.6.1.2.1.2.2.1.6.67|4|58:69:6c:6:82:3b
+1.3.6.1.2.1.2.2.1.6.68|4|58:69:6c:6:82:3b
+1.3.6.1.2.1.2.2.1.6.69|4|58:69:6c:6:82:3b
+1.3.6.1.2.1.2.2.1.6.4095|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.4096|4|
+1.3.6.1.2.1.2.2.1.6.5639|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.2.2.1.6.16385|4|
+1.3.6.1.2.1.2.2.1.7.1|2|1
+1.3.6.1.2.1.2.2.1.7.2|2|1
+1.3.6.1.2.1.2.2.1.7.3|2|1
+1.3.6.1.2.1.2.2.1.7.4|2|1
+1.3.6.1.2.1.2.2.1.7.5|2|1
+1.3.6.1.2.1.2.2.1.7.6|2|1
+1.3.6.1.2.1.2.2.1.7.7|2|1
+1.3.6.1.2.1.2.2.1.7.8|2|1
+1.3.6.1.2.1.2.2.1.7.9|2|1
+1.3.6.1.2.1.2.2.1.7.10|2|1
+1.3.6.1.2.1.2.2.1.7.11|2|1
+1.3.6.1.2.1.2.2.1.7.12|2|1
+1.3.6.1.2.1.2.2.1.7.13|2|1
+1.3.6.1.2.1.2.2.1.7.14|2|1
+1.3.6.1.2.1.2.2.1.7.15|2|1
+1.3.6.1.2.1.2.2.1.7.16|2|1
+1.3.6.1.2.1.2.2.1.7.17|2|1
+1.3.6.1.2.1.2.2.1.7.18|2|1
+1.3.6.1.2.1.2.2.1.7.19|2|1
+1.3.6.1.2.1.2.2.1.7.20|2|1
+1.3.6.1.2.1.2.2.1.7.21|2|1
+1.3.6.1.2.1.2.2.1.7.22|2|1
+1.3.6.1.2.1.2.2.1.7.23|2|1
+1.3.6.1.2.1.2.2.1.7.24|2|1
+1.3.6.1.2.1.2.2.1.7.25|2|1
+1.3.6.1.2.1.2.2.1.7.26|2|1
+1.3.6.1.2.1.2.2.1.7.27|2|1
+1.3.6.1.2.1.2.2.1.7.28|2|1
+1.3.6.1.2.1.2.2.1.7.29|2|1
+1.3.6.1.2.1.2.2.1.7.30|2|1
+1.3.6.1.2.1.2.2.1.7.31|2|1
+1.3.6.1.2.1.2.2.1.7.32|2|1
+1.3.6.1.2.1.2.2.1.7.33|2|1
+1.3.6.1.2.1.2.2.1.7.34|2|1
+1.3.6.1.2.1.2.2.1.7.35|2|1
+1.3.6.1.2.1.2.2.1.7.36|2|1
+1.3.6.1.2.1.2.2.1.7.37|2|1
+1.3.6.1.2.1.2.2.1.7.38|2|1
+1.3.6.1.2.1.2.2.1.7.39|2|1
+1.3.6.1.2.1.2.2.1.7.40|2|1
+1.3.6.1.2.1.2.2.1.7.41|2|1
+1.3.6.1.2.1.2.2.1.7.42|2|1
+1.3.6.1.2.1.2.2.1.7.43|2|1
+1.3.6.1.2.1.2.2.1.7.44|2|1
+1.3.6.1.2.1.2.2.1.7.45|2|1
+1.3.6.1.2.1.2.2.1.7.46|2|1
+1.3.6.1.2.1.2.2.1.7.47|2|1
+1.3.6.1.2.1.2.2.1.7.48|2|1
+1.3.6.1.2.1.2.2.1.7.65|2|1
+1.3.6.1.2.1.2.2.1.7.66|2|1
+1.3.6.1.2.1.2.2.1.7.67|2|1
+1.3.6.1.2.1.2.2.1.7.68|2|1
+1.3.6.1.2.1.2.2.1.7.69|2|1
+1.3.6.1.2.1.2.2.1.7.4095|2|1
+1.3.6.1.2.1.2.2.1.7.4096|2|1
+1.3.6.1.2.1.2.2.1.7.5639|2|1
+1.3.6.1.2.1.2.2.1.7.16385|2|1
+1.3.6.1.2.1.2.2.1.8.1|2|2
+1.3.6.1.2.1.2.2.1.8.2|2|2
+1.3.6.1.2.1.2.2.1.8.3|2|1
+1.3.6.1.2.1.2.2.1.8.4|2|2
+1.3.6.1.2.1.2.2.1.8.5|2|1
+1.3.6.1.2.1.2.2.1.8.6|2|1
+1.3.6.1.2.1.2.2.1.8.7|2|2
+1.3.6.1.2.1.2.2.1.8.8|2|2
+1.3.6.1.2.1.2.2.1.8.9|2|1
+1.3.6.1.2.1.2.2.1.8.10|2|1
+1.3.6.1.2.1.2.2.1.8.11|2|1
+1.3.6.1.2.1.2.2.1.8.12|2|1
+1.3.6.1.2.1.2.2.1.8.13|2|2
+1.3.6.1.2.1.2.2.1.8.14|2|2
+1.3.6.1.2.1.2.2.1.8.15|2|1
+1.3.6.1.2.1.2.2.1.8.16|2|1
+1.3.6.1.2.1.2.2.1.8.17|2|1
+1.3.6.1.2.1.2.2.1.8.18|2|1
+1.3.6.1.2.1.2.2.1.8.19|2|1
+1.3.6.1.2.1.2.2.1.8.20|2|1
+1.3.6.1.2.1.2.2.1.8.21|2|1
+1.3.6.1.2.1.2.2.1.8.22|2|1
+1.3.6.1.2.1.2.2.1.8.23|2|2
+1.3.6.1.2.1.2.2.1.8.24|2|1
+1.3.6.1.2.1.2.2.1.8.25|2|2
+1.3.6.1.2.1.2.2.1.8.26|2|2
+1.3.6.1.2.1.2.2.1.8.27|2|2
+1.3.6.1.2.1.2.2.1.8.28|2|2
+1.3.6.1.2.1.2.2.1.8.29|2|2
+1.3.6.1.2.1.2.2.1.8.30|2|1
+1.3.6.1.2.1.2.2.1.8.31|2|1
+1.3.6.1.2.1.2.2.1.8.32|2|1
+1.3.6.1.2.1.2.2.1.8.33|2|1
+1.3.6.1.2.1.2.2.1.8.34|2|1
+1.3.6.1.2.1.2.2.1.8.35|2|2
+1.3.6.1.2.1.2.2.1.8.36|2|1
+1.3.6.1.2.1.2.2.1.8.37|2|2
+1.3.6.1.2.1.2.2.1.8.38|2|1
+1.3.6.1.2.1.2.2.1.8.39|2|1
+1.3.6.1.2.1.2.2.1.8.40|2|1
+1.3.6.1.2.1.2.2.1.8.41|2|1
+1.3.6.1.2.1.2.2.1.8.42|2|1
+1.3.6.1.2.1.2.2.1.8.43|2|1
+1.3.6.1.2.1.2.2.1.8.44|2|1
+1.3.6.1.2.1.2.2.1.8.45|2|1
+1.3.6.1.2.1.2.2.1.8.46|2|2
+1.3.6.1.2.1.2.2.1.8.47|2|1
+1.3.6.1.2.1.2.2.1.8.48|2|1
+1.3.6.1.2.1.2.2.1.8.65|2|2
+1.3.6.1.2.1.2.2.1.8.66|2|2
+1.3.6.1.2.1.2.2.1.8.67|2|2
+1.3.6.1.2.1.2.2.1.8.68|2|2
+1.3.6.1.2.1.2.2.1.8.69|2|1
+1.3.6.1.2.1.2.2.1.8.4095|2|1
+1.3.6.1.2.1.2.2.1.8.4096|2|1
+1.3.6.1.2.1.2.2.1.8.5639|2|1
+1.3.6.1.2.1.2.2.1.8.16385|2|1
+1.3.6.1.2.1.2.2.1.9.1|67|3538
+1.3.6.1.2.1.2.2.1.9.2|67|3538
+1.3.6.1.2.1.2.2.1.9.3|67|0
+1.3.6.1.2.1.2.2.1.9.4|67|3539
+1.3.6.1.2.1.2.2.1.9.5|67|352274093
+1.3.6.1.2.1.2.2.1.9.6|67|2910287853
+1.3.6.1.2.1.2.2.1.9.7|67|0
+1.3.6.1.2.1.2.2.1.9.8|67|317682152
+1.3.6.1.2.1.2.2.1.9.9|67|2907239572
+1.3.6.1.2.1.2.2.1.9.10|67|2358788346
+1.3.6.1.2.1.2.2.1.9.11|67|2358763561
+1.3.6.1.2.1.2.2.1.9.12|67|2349819448
+1.3.6.1.2.1.2.2.1.9.13|67|3544
+1.3.6.1.2.1.2.2.1.9.14|67|3544
+1.3.6.1.2.1.2.2.1.9.15|67|2359059255
+1.3.6.1.2.1.2.2.1.9.16|67|1164644970
+1.3.6.1.2.1.2.2.1.9.17|67|2358843519
+1.3.6.1.2.1.2.2.1.9.18|67|1957806737
+1.3.6.1.2.1.2.2.1.9.19|67|3634376272
+1.3.6.1.2.1.2.2.1.9.20|67|0
+1.3.6.1.2.1.2.2.1.9.21|67|1762405987
+1.3.6.1.2.1.2.2.1.9.22|67|2350194154
+1.3.6.1.2.1.2.2.1.9.23|67|3529341544
+1.3.6.1.2.1.2.2.1.9.24|67|2358771465
+1.3.6.1.2.1.2.2.1.9.25|67|3529394538
+1.3.6.1.2.1.2.2.1.9.26|67|3495150960
+1.3.6.1.2.1.2.2.1.9.27|67|3503180747
+1.3.6.1.2.1.2.2.1.9.28|67|3513349490
+1.3.6.1.2.1.2.2.1.9.29|67|3513590567
+1.3.6.1.2.1.2.2.1.9.30|67|1957950112
+1.3.6.1.2.1.2.2.1.9.31|67|2610492176
+1.3.6.1.2.1.2.2.1.9.32|67|1388549907
+1.3.6.1.2.1.2.2.1.9.33|67|1957950122
+1.3.6.1.2.1.2.2.1.9.34|67|3527446286
+1.3.6.1.2.1.2.2.1.9.35|67|2668493483
+1.3.6.1.2.1.2.2.1.9.36|67|3158171566
+1.3.6.1.2.1.2.2.1.9.37|67|3550
+1.3.6.1.2.1.2.2.1.9.38|67|2353848590
+1.3.6.1.2.1.2.2.1.9.39|67|2359047988
+1.3.6.1.2.1.2.2.1.9.40|67|3634376138
+1.3.6.1.2.1.2.2.1.9.41|67|2500631154
+1.3.6.1.2.1.2.2.1.9.42|67|3464413823
+1.3.6.1.2.1.2.2.1.9.43|67|3038552783
+1.3.6.1.2.1.2.2.1.9.44|67|3634376196
+1.3.6.1.2.1.2.2.1.9.45|67|2361255825
+1.3.6.1.2.1.2.2.1.9.46|67|352396708
+1.3.6.1.2.1.2.2.1.9.47|67|3552
+1.3.6.1.2.1.2.2.1.9.48|67|3552
+1.3.6.1.2.1.2.2.1.9.65|67|3553
+1.3.6.1.2.1.2.2.1.9.66|67|3553
+1.3.6.1.2.1.2.2.1.9.67|67|3553
+1.3.6.1.2.1.2.2.1.9.68|67|3553
+1.3.6.1.2.1.2.2.1.9.69|67|368953188
+1.3.6.1.2.1.2.2.1.9.4095|67|0
+1.3.6.1.2.1.2.2.1.9.4096|67|0
+1.3.6.1.2.1.2.2.1.9.5639|67|5260
+1.3.6.1.2.1.2.2.1.9.16385|67|0
+1.3.6.1.2.1.2.2.1.13.1|65|0
+1.3.6.1.2.1.2.2.1.13.2|65|0
+1.3.6.1.2.1.2.2.1.13.3|65|0
+1.3.6.1.2.1.2.2.1.13.4|65|0
+1.3.6.1.2.1.2.2.1.13.5|65|0
+1.3.6.1.2.1.2.2.1.13.6|65|0
+1.3.6.1.2.1.2.2.1.13.7|65|0
+1.3.6.1.2.1.2.2.1.13.8|65|0
+1.3.6.1.2.1.2.2.1.13.9|65|0
+1.3.6.1.2.1.2.2.1.13.10|65|0
+1.3.6.1.2.1.2.2.1.13.11|65|0
+1.3.6.1.2.1.2.2.1.13.12|65|0
+1.3.6.1.2.1.2.2.1.13.13|65|0
+1.3.6.1.2.1.2.2.1.13.14|65|0
+1.3.6.1.2.1.2.2.1.13.15|65|0
+1.3.6.1.2.1.2.2.1.13.16|65|0
+1.3.6.1.2.1.2.2.1.13.17|65|0
+1.3.6.1.2.1.2.2.1.13.18|65|0
+1.3.6.1.2.1.2.2.1.13.19|65|0
+1.3.6.1.2.1.2.2.1.13.20|65|0
+1.3.6.1.2.1.2.2.1.13.21|65|0
+1.3.6.1.2.1.2.2.1.13.22|65|0
+1.3.6.1.2.1.2.2.1.13.23|65|0
+1.3.6.1.2.1.2.2.1.13.24|65|0
+1.3.6.1.2.1.2.2.1.13.25|65|0
+1.3.6.1.2.1.2.2.1.13.26|65|0
+1.3.6.1.2.1.2.2.1.13.27|65|0
+1.3.6.1.2.1.2.2.1.13.28|65|0
+1.3.6.1.2.1.2.2.1.13.29|65|0
+1.3.6.1.2.1.2.2.1.13.30|65|0
+1.3.6.1.2.1.2.2.1.13.31|65|0
+1.3.6.1.2.1.2.2.1.13.32|65|0
+1.3.6.1.2.1.2.2.1.13.33|65|0
+1.3.6.1.2.1.2.2.1.13.34|65|0
+1.3.6.1.2.1.2.2.1.13.35|65|0
+1.3.6.1.2.1.2.2.1.13.36|65|0
+1.3.6.1.2.1.2.2.1.13.37|65|0
+1.3.6.1.2.1.2.2.1.13.38|65|0
+1.3.6.1.2.1.2.2.1.13.39|65|0
+1.3.6.1.2.1.2.2.1.13.40|65|0
+1.3.6.1.2.1.2.2.1.13.41|65|0
+1.3.6.1.2.1.2.2.1.13.42|65|0
+1.3.6.1.2.1.2.2.1.13.43|65|0
+1.3.6.1.2.1.2.2.1.13.44|65|0
+1.3.6.1.2.1.2.2.1.13.45|65|0
+1.3.6.1.2.1.2.2.1.13.46|65|0
+1.3.6.1.2.1.2.2.1.13.47|65|0
+1.3.6.1.2.1.2.2.1.13.48|65|0
+1.3.6.1.2.1.2.2.1.13.65|65|0
+1.3.6.1.2.1.2.2.1.13.66|65|0
+1.3.6.1.2.1.2.2.1.13.67|65|0
+1.3.6.1.2.1.2.2.1.13.68|65|0
+1.3.6.1.2.1.2.2.1.13.69|65|0
+1.3.6.1.2.1.2.2.1.13.4095|65|0
+1.3.6.1.2.1.2.2.1.13.4096|65|0
+1.3.6.1.2.1.2.2.1.13.5639|65|0
+1.3.6.1.2.1.2.2.1.13.16385|65|0
+1.3.6.1.2.1.2.2.1.14.1|65|0
+1.3.6.1.2.1.2.2.1.14.2|65|0
+1.3.6.1.2.1.2.2.1.14.3|65|0
+1.3.6.1.2.1.2.2.1.14.4|65|0
+1.3.6.1.2.1.2.2.1.14.5|65|0
+1.3.6.1.2.1.2.2.1.14.6|65|0
+1.3.6.1.2.1.2.2.1.14.7|65|0
+1.3.6.1.2.1.2.2.1.14.8|65|0
+1.3.6.1.2.1.2.2.1.14.9|65|0
+1.3.6.1.2.1.2.2.1.14.10|65|0
+1.3.6.1.2.1.2.2.1.14.11|65|1
+1.3.6.1.2.1.2.2.1.14.12|65|0
+1.3.6.1.2.1.2.2.1.14.13|65|0
+1.3.6.1.2.1.2.2.1.14.14|65|0
+1.3.6.1.2.1.2.2.1.14.15|65|0
+1.3.6.1.2.1.2.2.1.14.16|65|0
+1.3.6.1.2.1.2.2.1.14.17|65|0
+1.3.6.1.2.1.2.2.1.14.18|65|0
+1.3.6.1.2.1.2.2.1.14.19|65|0
+1.3.6.1.2.1.2.2.1.14.20|65|0
+1.3.6.1.2.1.2.2.1.14.21|65|28
+1.3.6.1.2.1.2.2.1.14.22|65|0
+1.3.6.1.2.1.2.2.1.14.23|65|0
+1.3.6.1.2.1.2.2.1.14.24|65|0
+1.3.6.1.2.1.2.2.1.14.25|65|0
+1.3.6.1.2.1.2.2.1.14.26|65|13
+1.3.6.1.2.1.2.2.1.14.27|65|0
+1.3.6.1.2.1.2.2.1.14.28|65|0
+1.3.6.1.2.1.2.2.1.14.29|65|0
+1.3.6.1.2.1.2.2.1.14.30|65|125373
+1.3.6.1.2.1.2.2.1.14.31|65|0
+1.3.6.1.2.1.2.2.1.14.32|65|3
+1.3.6.1.2.1.2.2.1.14.33|65|2
+1.3.6.1.2.1.2.2.1.14.34|65|0
+1.3.6.1.2.1.2.2.1.14.35|65|0
+1.3.6.1.2.1.2.2.1.14.36|65|779894
+1.3.6.1.2.1.2.2.1.14.37|65|0
+1.3.6.1.2.1.2.2.1.14.38|65|0
+1.3.6.1.2.1.2.2.1.14.39|65|0
+1.3.6.1.2.1.2.2.1.14.40|65|0
+1.3.6.1.2.1.2.2.1.14.41|65|0
+1.3.6.1.2.1.2.2.1.14.42|65|0
+1.3.6.1.2.1.2.2.1.14.43|65|0
+1.3.6.1.2.1.2.2.1.14.44|65|0
+1.3.6.1.2.1.2.2.1.14.45|65|0
+1.3.6.1.2.1.2.2.1.14.46|65|0
+1.3.6.1.2.1.2.2.1.14.47|65|439
+1.3.6.1.2.1.2.2.1.14.48|65|0
+1.3.6.1.2.1.2.2.1.14.65|65|0
+1.3.6.1.2.1.2.2.1.14.66|65|0
+1.3.6.1.2.1.2.2.1.14.67|65|0
+1.3.6.1.2.1.2.2.1.14.68|65|0
+1.3.6.1.2.1.2.2.1.14.69|65|112
+1.3.6.1.2.1.2.2.1.14.4095|65|0
+1.3.6.1.2.1.2.2.1.14.4096|65|0
+1.3.6.1.2.1.2.2.1.14.5639|65|0
+1.3.6.1.2.1.2.2.1.14.16385|65|0
+1.3.6.1.2.1.2.2.1.19.1|65|0
+1.3.6.1.2.1.2.2.1.19.2|65|0
+1.3.6.1.2.1.2.2.1.19.3|65|0
+1.3.6.1.2.1.2.2.1.19.4|65|0
+1.3.6.1.2.1.2.2.1.19.5|65|0
+1.3.6.1.2.1.2.2.1.19.6|65|0
+1.3.6.1.2.1.2.2.1.19.7|65|0
+1.3.6.1.2.1.2.2.1.19.8|65|0
+1.3.6.1.2.1.2.2.1.19.9|65|0
+1.3.6.1.2.1.2.2.1.19.10|65|0
+1.3.6.1.2.1.2.2.1.19.11|65|0
+1.3.6.1.2.1.2.2.1.19.12|65|0
+1.3.6.1.2.1.2.2.1.19.13|65|0
+1.3.6.1.2.1.2.2.1.19.14|65|0
+1.3.6.1.2.1.2.2.1.19.15|65|0
+1.3.6.1.2.1.2.2.1.19.16|65|0
+1.3.6.1.2.1.2.2.1.19.17|65|0
+1.3.6.1.2.1.2.2.1.19.18|65|0
+1.3.6.1.2.1.2.2.1.19.19|65|0
+1.3.6.1.2.1.2.2.1.19.20|65|0
+1.3.6.1.2.1.2.2.1.19.21|65|0
+1.3.6.1.2.1.2.2.1.19.22|65|0
+1.3.6.1.2.1.2.2.1.19.23|65|0
+1.3.6.1.2.1.2.2.1.19.24|65|0
+1.3.6.1.2.1.2.2.1.19.25|65|0
+1.3.6.1.2.1.2.2.1.19.26|65|0
+1.3.6.1.2.1.2.2.1.19.27|65|0
+1.3.6.1.2.1.2.2.1.19.28|65|0
+1.3.6.1.2.1.2.2.1.19.29|65|0
+1.3.6.1.2.1.2.2.1.19.30|65|0
+1.3.6.1.2.1.2.2.1.19.31|65|0
+1.3.6.1.2.1.2.2.1.19.32|65|0
+1.3.6.1.2.1.2.2.1.19.33|65|0
+1.3.6.1.2.1.2.2.1.19.34|65|0
+1.3.6.1.2.1.2.2.1.19.35|65|0
+1.3.6.1.2.1.2.2.1.19.36|65|0
+1.3.6.1.2.1.2.2.1.19.37|65|0
+1.3.6.1.2.1.2.2.1.19.38|65|0
+1.3.6.1.2.1.2.2.1.19.39|65|0
+1.3.6.1.2.1.2.2.1.19.40|65|0
+1.3.6.1.2.1.2.2.1.19.41|65|0
+1.3.6.1.2.1.2.2.1.19.42|65|0
+1.3.6.1.2.1.2.2.1.19.43|65|0
+1.3.6.1.2.1.2.2.1.19.44|65|0
+1.3.6.1.2.1.2.2.1.19.45|65|0
+1.3.6.1.2.1.2.2.1.19.46|65|0
+1.3.6.1.2.1.2.2.1.19.47|65|0
+1.3.6.1.2.1.2.2.1.19.48|65|0
+1.3.6.1.2.1.2.2.1.19.65|65|0
+1.3.6.1.2.1.2.2.1.19.66|65|0
+1.3.6.1.2.1.2.2.1.19.67|65|0
+1.3.6.1.2.1.2.2.1.19.68|65|0
+1.3.6.1.2.1.2.2.1.19.69|65|0
+1.3.6.1.2.1.2.2.1.19.4095|65|3
+1.3.6.1.2.1.2.2.1.19.4096|65|0
+1.3.6.1.2.1.2.2.1.19.5639|65|0
+1.3.6.1.2.1.2.2.1.19.16385|65|0
+1.3.6.1.2.1.2.2.1.20.1|65|0
+1.3.6.1.2.1.2.2.1.20.2|65|0
+1.3.6.1.2.1.2.2.1.20.3|65|0
+1.3.6.1.2.1.2.2.1.20.4|65|0
+1.3.6.1.2.1.2.2.1.20.5|65|0
+1.3.6.1.2.1.2.2.1.20.6|65|0
+1.3.6.1.2.1.2.2.1.20.7|65|0
+1.3.6.1.2.1.2.2.1.20.8|65|0
+1.3.6.1.2.1.2.2.1.20.9|65|0
+1.3.6.1.2.1.2.2.1.20.10|65|0
+1.3.6.1.2.1.2.2.1.20.11|65|0
+1.3.6.1.2.1.2.2.1.20.12|65|0
+1.3.6.1.2.1.2.2.1.20.13|65|0
+1.3.6.1.2.1.2.2.1.20.14|65|0
+1.3.6.1.2.1.2.2.1.20.15|65|0
+1.3.6.1.2.1.2.2.1.20.16|65|0
+1.3.6.1.2.1.2.2.1.20.17|65|0
+1.3.6.1.2.1.2.2.1.20.18|65|0
+1.3.6.1.2.1.2.2.1.20.19|65|0
+1.3.6.1.2.1.2.2.1.20.20|65|0
+1.3.6.1.2.1.2.2.1.20.21|65|0
+1.3.6.1.2.1.2.2.1.20.22|65|0
+1.3.6.1.2.1.2.2.1.20.23|65|0
+1.3.6.1.2.1.2.2.1.20.24|65|0
+1.3.6.1.2.1.2.2.1.20.25|65|0
+1.3.6.1.2.1.2.2.1.20.26|65|0
+1.3.6.1.2.1.2.2.1.20.27|65|0
+1.3.6.1.2.1.2.2.1.20.28|65|0
+1.3.6.1.2.1.2.2.1.20.29|65|0
+1.3.6.1.2.1.2.2.1.20.30|65|0
+1.3.6.1.2.1.2.2.1.20.31|65|0
+1.3.6.1.2.1.2.2.1.20.32|65|0
+1.3.6.1.2.1.2.2.1.20.33|65|0
+1.3.6.1.2.1.2.2.1.20.34|65|0
+1.3.6.1.2.1.2.2.1.20.35|65|0
+1.3.6.1.2.1.2.2.1.20.36|65|0
+1.3.6.1.2.1.2.2.1.20.37|65|0
+1.3.6.1.2.1.2.2.1.20.38|65|0
+1.3.6.1.2.1.2.2.1.20.39|65|0
+1.3.6.1.2.1.2.2.1.20.40|65|0
+1.3.6.1.2.1.2.2.1.20.41|65|0
+1.3.6.1.2.1.2.2.1.20.42|65|0
+1.3.6.1.2.1.2.2.1.20.43|65|0
+1.3.6.1.2.1.2.2.1.20.44|65|0
+1.3.6.1.2.1.2.2.1.20.45|65|0
+1.3.6.1.2.1.2.2.1.20.46|65|0
+1.3.6.1.2.1.2.2.1.20.47|65|0
+1.3.6.1.2.1.2.2.1.20.48|65|0
+1.3.6.1.2.1.2.2.1.20.65|65|0
+1.3.6.1.2.1.2.2.1.20.66|65|0
+1.3.6.1.2.1.2.2.1.20.67|65|0
+1.3.6.1.2.1.2.2.1.20.68|65|0
+1.3.6.1.2.1.2.2.1.20.69|65|0
+1.3.6.1.2.1.2.2.1.20.4095|65|0
+1.3.6.1.2.1.2.2.1.20.4096|65|0
+1.3.6.1.2.1.2.2.1.20.5639|65|0
+1.3.6.1.2.1.2.2.1.20.16385|65|0
+1.3.6.1.2.1.4.20.1.2.143.160.0.173|2|5639
+1.3.6.1.2.1.4.20.1.2.143.160.1.10|2|3
+1.3.6.1.2.1.4.20.1.2.143.160.1.18|2|5
+1.3.6.1.2.1.4.20.1.2.143.160.1.22|2|6
+1.3.6.1.2.1.4.20.1.2.143.160.1.30|2|8
+1.3.6.1.2.1.4.20.1.2.143.160.1.34|2|9
+1.3.6.1.2.1.4.20.1.2.143.160.1.38|2|10
+1.3.6.1.2.1.4.20.1.2.143.160.1.42|2|11
+1.3.6.1.2.1.4.20.1.2.143.160.1.46|2|12
+1.3.6.1.2.1.4.20.1.2.143.160.1.50|2|13
+1.3.6.1.2.1.4.20.1.2.143.160.1.54|2|14
+1.3.6.1.2.1.4.20.1.2.143.160.1.58|2|15
+1.3.6.1.2.1.4.20.1.2.143.160.1.62|2|16
+1.3.6.1.2.1.4.20.1.2.143.160.1.66|2|17
+1.3.6.1.2.1.4.20.1.2.143.160.1.70|2|18
+1.3.6.1.2.1.4.20.1.2.143.160.1.75|2|19
+1.3.6.1.2.1.4.20.1.2.143.160.1.78|2|20
+1.3.6.1.2.1.4.20.1.2.143.160.1.82|2|21
+1.3.6.1.2.1.4.20.1.2.143.160.1.86|2|22
+1.3.6.1.2.1.4.20.1.2.143.160.1.90|2|23
+1.3.6.1.2.1.4.20.1.2.143.160.1.94|2|24
+1.3.6.1.2.1.4.20.1.2.143.160.1.98|2|25
+1.3.6.1.2.1.4.20.1.2.143.160.1.102|2|26
+1.3.6.1.2.1.4.20.1.2.143.160.1.106|2|27
+1.3.6.1.2.1.4.20.1.2.143.160.1.110|2|28
+1.3.6.1.2.1.4.20.1.2.143.160.1.114|2|29
+1.3.6.1.2.1.4.20.1.2.143.160.1.118|2|30
+1.3.6.1.2.1.4.20.1.2.143.160.1.122|2|31
+1.3.6.1.2.1.4.20.1.2.143.160.1.126|2|32
+1.3.6.1.2.1.4.20.1.2.143.160.1.130|2|33
+1.3.6.1.2.1.4.20.1.2.143.160.1.134|2|34
+1.3.6.1.2.1.4.20.1.2.143.160.1.138|2|35
+1.3.6.1.2.1.4.20.1.2.143.160.1.142|2|36
+1.3.6.1.2.1.4.20.1.2.143.160.1.146|2|37
+1.3.6.1.2.1.4.20.1.2.143.160.1.150|2|38
+1.3.6.1.2.1.4.20.1.2.143.160.1.153|2|39
+1.3.6.1.2.1.4.20.1.2.143.160.1.155|2|40
+1.3.6.1.2.1.4.20.1.2.143.160.1.157|2|41
+1.3.6.1.2.1.4.20.1.2.143.160.1.163|2|44
+1.3.6.1.2.1.4.20.1.2.143.160.1.169|2|45
+1.3.6.1.2.1.4.20.1.2.143.160.1.170|2|16385
+1.3.6.1.2.1.4.20.1.2.143.160.1.181|2|42
+1.3.6.1.2.1.4.20.1.2.143.160.1.183|2|43
+1.3.6.1.2.1.4.20.1.2.143.160.1.185|2|4095
+1.3.6.1.2.1.4.20.1.3.143.160.0.173|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.10|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.18|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.22|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.30|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.34|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.38|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.42|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.46|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.50|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.54|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.58|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.62|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.66|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.70|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.75|64|255.255.255.254
+1.3.6.1.2.1.4.20.1.3.143.160.1.78|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.82|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.86|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.90|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.94|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.98|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.102|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.106|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.110|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.114|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.118|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.122|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.126|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.130|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.134|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.138|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.142|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.146|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.150|64|255.255.255.252
+1.3.6.1.2.1.4.20.1.3.143.160.1.153|64|255.255.255.254
+1.3.6.1.2.1.4.20.1.3.143.160.1.155|64|255.255.255.254
+1.3.6.1.2.1.4.20.1.3.143.160.1.157|64|255.255.255.254
+1.3.6.1.2.1.4.20.1.3.143.160.1.163|64|255.255.255.254
+1.3.6.1.2.1.4.20.1.3.143.160.1.169|64|255.255.255.254
+1.3.6.1.2.1.4.20.1.3.143.160.1.170|64|255.255.255.255
+1.3.6.1.2.1.4.20.1.3.143.160.1.181|64|255.255.255.254
+1.3.6.1.2.1.4.20.1.3.143.160.1.183|64|255.255.255.254
+1.3.6.1.2.1.4.20.1.3.143.160.1.185|64|255.255.255.252
+1.3.6.1.2.1.4.22.1.2.3.143.160.1.9|4|58:69:6c:63:75:7d
+1.3.6.1.2.1.4.22.1.2.3.143.160.1.10|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.5.143.160.1.17|4|58:69:6c:61:2:f8
+1.3.6.1.2.1.4.22.1.2.5.143.160.1.18|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.6.143.160.1.21|4|c0:a0:bb:3d:e8:2
+1.3.6.1.2.1.4.22.1.2.6.143.160.1.22|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.9.143.160.1.33|4|fc:75:16:2e:f8:0
+1.3.6.1.2.1.4.22.1.2.9.143.160.1.34|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.10.143.160.1.37|4|bc:f6:85:1e:38:2
+1.3.6.1.2.1.4.22.1.2.10.143.160.1.38|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.11.143.160.1.41|4|90:94:e4:11:bc:2
+1.3.6.1.2.1.4.22.1.2.11.143.160.1.42|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.12.143.160.1.45|4|fc:75:16:1e:5c:0
+1.3.6.1.2.1.4.22.1.2.12.143.160.1.46|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.15.143.160.1.57|4|bc:f6:85:1f:20:0
+1.3.6.1.2.1.4.22.1.2.15.143.160.1.58|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.16.143.160.1.61|4|0:1c:f0:20:51:40
+1.3.6.1.2.1.4.22.1.2.16.143.160.1.62|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.17.143.160.1.65|4|bc:f6:85:1f:80:0
+1.3.6.1.2.1.4.22.1.2.17.143.160.1.66|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.18.143.160.1.69|4|0:1e:58:5c:0:0
+1.3.6.1.2.1.4.22.1.2.18.143.160.1.70|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.19.143.160.1.74|4|90:94:e4:11:b8:0
+1.3.6.1.2.1.4.22.1.2.19.143.160.1.75|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.20.143.160.1.77|4|5c:d9:98:3e:94:0
+1.3.6.1.2.1.4.22.1.2.20.143.160.1.78|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.21.143.160.1.81|4|58:69:6c:63:6d:cb
+1.3.6.1.2.1.4.22.1.2.21.143.160.1.82|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.22.143.160.1.85|4|fc:75:16:38:3e:0
+1.3.6.1.2.1.4.22.1.2.22.143.160.1.86|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.24.143.160.1.93|4|90:94:e4:f:20:2
+1.3.6.1.2.1.4.22.1.2.24.143.160.1.94|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.30.143.160.1.117|4|58:69:6c:6:7c:26
+1.3.6.1.2.1.4.22.1.2.30.143.160.1.118|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.31.143.160.1.121|4|fc:75:16:2f:be:0
+1.3.6.1.2.1.4.22.1.2.31.143.160.1.122|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.32.143.160.1.125|4|58:69:6c:63:6e:6f
+1.3.6.1.2.1.4.22.1.2.32.143.160.1.126|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.33.143.160.1.129|4|58:69:6c:6:7c:4a
+1.3.6.1.2.1.4.22.1.2.33.143.160.1.130|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.34.143.160.1.133|4|10:62:eb:b3:c:3
+1.3.6.1.2.1.4.22.1.2.34.143.160.1.134|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.36.143.160.1.141|4|58:69:6c:63:6e:7d
+1.3.6.1.2.1.4.22.1.2.36.143.160.1.142|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.38.143.160.1.149|4|14:d6:4d:ad:90:0
+1.3.6.1.2.1.4.22.1.2.38.143.160.1.150|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.39.143.160.1.152|4|bc:f6:85:16:24:1
+1.3.6.1.2.1.4.22.1.2.39.143.160.1.153|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.40.143.160.1.154|4|10:62:eb:b2:fc:3
+1.3.6.1.2.1.4.22.1.2.40.143.160.1.155|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.41.143.160.1.156|4|58:69:6c:61:2:6b
+1.3.6.1.2.1.4.22.1.2.41.143.160.1.157|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.42.143.160.1.180|4|1c:7e:e5:88:98:1
+1.3.6.1.2.1.4.22.1.2.42.143.160.1.181|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.43.143.160.1.182|4|3c:1e:4:c4:1c:1
+1.3.6.1.2.1.4.22.1.2.43.143.160.1.183|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.44.143.160.1.162|4|bc:f6:85:1f:72:5
+1.3.6.1.2.1.4.22.1.2.44.143.160.1.163|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.45.143.160.1.168|4|fc:75:16:1e:6a:3
+1.3.6.1.2.1.4.22.1.2.45.143.160.1.169|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.4095.143.160.1.185|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.4095.143.160.1.186|4|0:22:b0:17:7f:c
+1.3.6.1.2.1.4.22.1.2.5639.143.160.0.173|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.22.1.2.5639.143.160.0.174|4|58:69:6c:6:83:1d
+1.3.6.1.2.1.4.24.3.0|66|901
+1.3.6.1.2.1.4.31.1.1.3.1|65|951969769
+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|951969769
+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|4069117555
+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|81378528883
+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|81862170
+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|82575194
+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|82575194
+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|11
+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|5
+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|1
+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|1085135961
+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|1085135961
+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|55
+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|702480
+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|702480
+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|623385
+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|10544
+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|612841
+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|1086451167
+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|1086451167
+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|3968060896
+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|102752308704
+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|802411406
+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|802411407
+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|3584681080
+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|68009190520
+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|930615740
+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|930615740
+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|1851091216
+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|87750437136
+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|1
+1.3.6.1.2.1.4.31.1.1.47.2|66|1
+1.3.6.1.2.1.4.35.1.4.3.1.4.143.160.1.9|4|58:69:6c:63:75:7d
+1.3.6.1.2.1.4.35.1.4.3.1.4.143.160.1.10|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.5.1.4.143.160.1.17|4|58:69:6c:61:2:f8
+1.3.6.1.2.1.4.35.1.4.5.1.4.143.160.1.18|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.6.1.4.143.160.1.21|4|c0:a0:bb:3d:e8:2
+1.3.6.1.2.1.4.35.1.4.6.1.4.143.160.1.22|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.9.1.4.143.160.1.33|4|fc:75:16:2e:f8:0
+1.3.6.1.2.1.4.35.1.4.9.1.4.143.160.1.34|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.10.1.4.143.160.1.37|4|bc:f6:85:1e:38:2
+1.3.6.1.2.1.4.35.1.4.10.1.4.143.160.1.38|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.11.1.4.143.160.1.41|4|90:94:e4:11:bc:2
+1.3.6.1.2.1.4.35.1.4.11.1.4.143.160.1.42|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.12.1.4.143.160.1.45|4|fc:75:16:1e:5c:0
+1.3.6.1.2.1.4.35.1.4.12.1.4.143.160.1.46|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.15.1.4.143.160.1.57|4|bc:f6:85:1f:20:0
+1.3.6.1.2.1.4.35.1.4.15.1.4.143.160.1.58|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.16.1.4.143.160.1.61|4|0:1c:f0:20:51:40
+1.3.6.1.2.1.4.35.1.4.16.1.4.143.160.1.62|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.17.1.4.143.160.1.65|4|bc:f6:85:1f:80:0
+1.3.6.1.2.1.4.35.1.4.17.1.4.143.160.1.66|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.18.1.4.143.160.1.69|4|0:1e:58:5c:0:0
+1.3.6.1.2.1.4.35.1.4.18.1.4.143.160.1.70|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.19.1.4.143.160.1.74|4|90:94:e4:11:b8:0
+1.3.6.1.2.1.4.35.1.4.19.1.4.143.160.1.75|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.20.1.4.143.160.1.77|4|5c:d9:98:3e:94:0
+1.3.6.1.2.1.4.35.1.4.20.1.4.143.160.1.78|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.21.1.4.143.160.1.81|4|58:69:6c:63:6d:cb
+1.3.6.1.2.1.4.35.1.4.21.1.4.143.160.1.82|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.22.1.4.143.160.1.85|4|fc:75:16:38:3e:0
+1.3.6.1.2.1.4.35.1.4.22.1.4.143.160.1.86|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.24.1.4.143.160.1.93|4|90:94:e4:f:20:2
+1.3.6.1.2.1.4.35.1.4.24.1.4.143.160.1.94|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.30.1.4.143.160.1.117|4|58:69:6c:6:7c:26
+1.3.6.1.2.1.4.35.1.4.30.1.4.143.160.1.118|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.31.1.4.143.160.1.121|4|fc:75:16:2f:be:0
+1.3.6.1.2.1.4.35.1.4.31.1.4.143.160.1.122|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.32.1.4.143.160.1.125|4|58:69:6c:63:6e:6f
+1.3.6.1.2.1.4.35.1.4.32.1.4.143.160.1.126|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.33.1.4.143.160.1.129|4|58:69:6c:6:7c:4a
+1.3.6.1.2.1.4.35.1.4.33.1.4.143.160.1.130|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.34.1.4.143.160.1.133|4|10:62:eb:b3:c:3
+1.3.6.1.2.1.4.35.1.4.34.1.4.143.160.1.134|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.36.1.4.143.160.1.141|4|58:69:6c:63:6e:7d
+1.3.6.1.2.1.4.35.1.4.36.1.4.143.160.1.142|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.38.1.4.143.160.1.149|4|14:d6:4d:ad:90:0
+1.3.6.1.2.1.4.35.1.4.38.1.4.143.160.1.150|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.39.1.4.143.160.1.152|4|bc:f6:85:16:24:1
+1.3.6.1.2.1.4.35.1.4.39.1.4.143.160.1.153|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.40.1.4.143.160.1.154|4|10:62:eb:b2:fc:3
+1.3.6.1.2.1.4.35.1.4.40.1.4.143.160.1.155|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.41.1.4.143.160.1.156|4|58:69:6c:61:2:6b
+1.3.6.1.2.1.4.35.1.4.41.1.4.143.160.1.157|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.42.1.4.143.160.1.180|4|1c:7e:e5:88:98:1
+1.3.6.1.2.1.4.35.1.4.42.1.4.143.160.1.181|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.43.1.4.143.160.1.182|4|3c:1e:4:c4:1c:1
+1.3.6.1.2.1.4.35.1.4.43.1.4.143.160.1.183|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.44.1.4.143.160.1.162|4|bc:f6:85:1f:72:5
+1.3.6.1.2.1.4.35.1.4.44.1.4.143.160.1.163|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.45.1.4.143.160.1.168|4|fc:75:16:1e:6a:3
+1.3.6.1.2.1.4.35.1.4.45.1.4.143.160.1.169|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.4095.1.4.143.160.1.185|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.4095.1.4.143.160.1.186|4|0:22:b0:17:7f:c
+1.3.6.1.2.1.4.35.1.4.5639.1.4.143.160.0.173|4|58:69:6c:6:82:3c
+1.3.6.1.2.1.4.35.1.4.5639.1.4.143.160.0.174|4|58:69:6c:6:83:1d
+1.3.6.1.2.1.5.1.0|65|17995086
+1.3.6.1.2.1.5.2.0|65|165
+1.3.6.1.2.1.5.3.0|65|67
+1.3.6.1.2.1.5.4.0|65|4
+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|17993988
+1.3.6.1.2.1.5.9.0|65|279
+1.3.6.1.2.1.5.10.0|65|441
+1.3.6.1.2.1.5.11.0|65|0
+1.3.6.1.2.1.5.12.0|65|142
+1.3.6.1.2.1.5.13.0|65|0
+1.3.6.1.2.1.5.14.0|65|99870133
+1.3.6.1.2.1.5.15.0|65|0
+1.3.6.1.2.1.5.16.0|65|243257
+1.3.6.1.2.1.5.17.0|65|81632273
+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|1
+1.3.6.1.2.1.5.21.0|65|472
+1.3.6.1.2.1.5.22.0|65|17993988
+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|142
+1.3.6.1.2.1.5.29.1.2.1|65|17995086
+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|165
+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|99870133
+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|0
+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|279
+1.3.6.1.2.1.5.30.1.3.1.3|65|67
+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.8|65|17993988
+1.3.6.1.2.1.5.30.1.3.1.11|65|4
+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|441
+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.17|65|142
+1.3.6.1.2.1.5.30.1.3.1.18|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.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.200|65|0
+1.3.6.1.2.1.5.30.1.3.2.201|65|0
+1.3.6.1.2.1.5.30.1.3.2.255|65|0
+1.3.6.1.2.1.5.30.1.4.1.0|65|17993988
+1.3.6.1.2.1.5.30.1.4.1.3|65|243257
+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|1
+1.3.6.1.2.1.5.30.1.4.1.8|65|472
+1.3.6.1.2.1.5.30.1.4.1.11|65|81632273
+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.17|65|0
+1.3.6.1.2.1.5.30.1.4.1.18|65|142
+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.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.200|65|0
+1.3.6.1.2.1.5.30.1.4.2.201|65|0
+1.3.6.1.2.1.5.30.1.4.2.255|65|0
+1.3.6.1.2.1.11.1.0|65|20013910
+1.3.6.1.2.1.11.2.0|65|19928313
+1.3.6.1.2.1.11.3.0|65|0
+1.3.6.1.2.1.11.4.0|65|85596
+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|131818326
+1.3.6.1.2.1.11.14.0|65|0
+1.3.6.1.2.1.11.15.0|65|15148318
+1.3.6.1.2.1.11.16.0|65|25240
+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|72
+1.3.6.1.2.1.11.21.0|65|80430
+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|19928315
+1.3.6.1.2.1.11.29.0|65|0
+1.3.6.1.2.1.11.30.0|2|1
+1.3.6.1.2.1.11.31.0|65|72
+1.3.6.1.2.1.11.32.0|65|0
+1.3.6.1.2.1.15.2.0|2|0
+1.3.6.1.2.1.17.1.1.0|4x|58696C06823B
+1.3.6.1.2.1.17.1.4.1.2.1|2|1
+1.3.6.1.2.1.17.1.4.1.2.2|2|2
+1.3.6.1.2.1.17.1.4.1.2.3|2|3
+1.3.6.1.2.1.17.1.4.1.2.4|2|4
+1.3.6.1.2.1.17.1.4.1.2.5|2|5
+1.3.6.1.2.1.17.1.4.1.2.6|2|6
+1.3.6.1.2.1.17.1.4.1.2.7|2|7
+1.3.6.1.2.1.17.1.4.1.2.8|2|8
+1.3.6.1.2.1.17.1.4.1.2.9|2|9
+1.3.6.1.2.1.17.1.4.1.2.10|2|10
+1.3.6.1.2.1.17.1.4.1.2.11|2|11
+1.3.6.1.2.1.17.1.4.1.2.12|2|12
+1.3.6.1.2.1.17.1.4.1.2.13|2|13
+1.3.6.1.2.1.17.1.4.1.2.14|2|14
+1.3.6.1.2.1.17.1.4.1.2.15|2|15
+1.3.6.1.2.1.17.1.4.1.2.16|2|16
+1.3.6.1.2.1.17.1.4.1.2.17|2|17
+1.3.6.1.2.1.17.1.4.1.2.18|2|18
+1.3.6.1.2.1.17.1.4.1.2.19|2|19
+1.3.6.1.2.1.17.1.4.1.2.20|2|20
+1.3.6.1.2.1.17.1.4.1.2.21|2|21
+1.3.6.1.2.1.17.1.4.1.2.22|2|22
+1.3.6.1.2.1.17.1.4.1.2.23|2|23
+1.3.6.1.2.1.17.1.4.1.2.24|2|24
+1.3.6.1.2.1.17.1.4.1.2.25|2|25
+1.3.6.1.2.1.17.1.4.1.2.26|2|26
+1.3.6.1.2.1.17.1.4.1.2.27|2|27
+1.3.6.1.2.1.17.1.4.1.2.28|2|28
+1.3.6.1.2.1.17.1.4.1.2.29|2|29
+1.3.6.1.2.1.17.1.4.1.2.30|2|30
+1.3.6.1.2.1.17.1.4.1.2.31|2|31
+1.3.6.1.2.1.17.1.4.1.2.32|2|32
+1.3.6.1.2.1.17.1.4.1.2.33|2|33
+1.3.6.1.2.1.17.1.4.1.2.34|2|34
+1.3.6.1.2.1.17.1.4.1.2.35|2|35
+1.3.6.1.2.1.17.1.4.1.2.36|2|36
+1.3.6.1.2.1.17.1.4.1.2.37|2|37
+1.3.6.1.2.1.17.1.4.1.2.38|2|38
+1.3.6.1.2.1.17.1.4.1.2.39|2|39
+1.3.6.1.2.1.17.1.4.1.2.40|2|40
+1.3.6.1.2.1.17.1.4.1.2.41|2|41
+1.3.6.1.2.1.17.1.4.1.2.42|2|42
+1.3.6.1.2.1.17.1.4.1.2.43|2|43
+1.3.6.1.2.1.17.1.4.1.2.44|2|44
+1.3.6.1.2.1.17.1.4.1.2.45|2|45
+1.3.6.1.2.1.17.1.4.1.2.46|2|46
+1.3.6.1.2.1.17.1.4.1.2.47|2|47
+1.3.6.1.2.1.17.1.4.1.2.48|2|48
+1.3.6.1.2.1.17.1.4.1.2.65|2|65
+1.3.6.1.2.1.17.1.4.1.2.66|2|66
+1.3.6.1.2.1.17.1.4.1.2.67|2|67
+1.3.6.1.2.1.17.1.4.1.2.68|2|68
+1.3.6.1.2.1.17.1.4.1.2.69|2|69
+1.3.6.1.2.1.17.1.4.1.2.4095|2|4095
+1.3.6.1.2.1.17.1.4.1.2.4096|2|4096
+1.3.6.1.2.1.17.1.4.1.2.5639|2|5639
+1.3.6.1.2.1.17.1.4.1.2.16385|2|16385
+1.3.6.1.2.1.17.2.1.0|2|3
+1.3.6.1.2.1.17.2.2.0|2|32768
+1.3.6.1.2.1.17.2.3.0|67|589726382
+1.3.6.1.2.1.17.2.4.0|65|0
+1.3.6.1.2.1.17.2.5.0|4x|8000000000000000
+1.3.6.1.2.1.17.2.6.0|2|0
+1.3.6.1.2.1.17.2.7.0|2|0
+1.3.6.1.2.1.17.2.8.0|2|2000
+1.3.6.1.2.1.17.2.9.0|2|200
+1.3.6.1.2.1.17.2.10.0|2|100
+1.3.6.1.2.1.17.2.11.0|2|1500
+1.3.6.1.2.1.17.2.12.0|2|2000
+1.3.6.1.2.1.17.2.13.0|2|200
+1.3.6.1.2.1.17.2.14.0|2|1500
+1.3.6.1.2.1.17.2.15.1.1.69|2|69
+1.3.6.1.2.1.17.2.15.1.2.69|2|128
+1.3.6.1.2.1.17.2.15.1.3.69|2|2
+1.3.6.1.2.1.17.2.15.1.4.69|2|1
+1.3.6.1.2.1.17.2.15.1.5.69|2|1900
+1.3.6.1.2.1.17.2.15.1.6.69|4x|8000000000000000
+1.3.6.1.2.1.17.2.15.1.7.69|2|0
+1.3.6.1.2.1.17.2.15.1.8.69|4x|8000000000000000
+1.3.6.1.2.1.17.2.15.1.9.69|4x|8045
+1.3.6.1.2.1.17.2.15.1.10.69|65|0
+1.3.6.1.2.1.17.2.15.1.11.69|2|1900
+1.3.6.1.2.1.17.7.1.1.1.0|2|2
+1.3.6.1.2.1.17.7.1.2.2.1.2.0.88.105.108.6.130.60|2|3
+1.3.6.1.2.1.17.7.1.2.2.1.2.1.88.105.108.6.130.59|2|0
+1.3.6.1.2.1.17.7.1.2.2.1.2.1.88.105.108.6.131.28|2|69
+1.3.6.1.2.1.17.7.1.2.2.1.2.1543.88.105.108.6.130.60|2|5639
+1.3.6.1.2.1.17.7.1.2.2.1.2.1543.88.105.108.6.131.29|2|69
+1.3.6.1.2.1.17.7.1.4.2.1.4.2071.1|4x|D20000000003FFFFF0000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020303020303020303020303020
+1.3.6.1.2.1.17.7.1.4.2.1.4.5247.1543|4x|000000000000000008000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030
+1.3.6.1.2.1.17.7.1.4.2.1.5.2071.1|4x|D20000000003FFFFF0000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020303020303020303020303020
+1.3.6.1.2.1.17.7.1.4.2.1.5.5247.1543|4x|000000000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030
+1.3.6.1.2.1.17.7.1.4.3.1.1.1|4|VLAN0001
+1.3.6.1.2.1.17.7.1.4.3.1.1.1543|4|1543
+1.3.6.1.2.1.17.7.1.4.5.1.1.1|66|1
+1.3.6.1.2.1.17.7.1.4.5.1.1.2|66|1
+1.3.6.1.2.1.17.7.1.4.5.1.1.3|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.4|66|1
+1.3.6.1.2.1.17.7.1.4.5.1.1.5|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.6|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.7|66|1
+1.3.6.1.2.1.17.7.1.4.5.1.1.8|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.9|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.10|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.11|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.12|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.13|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.14|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.15|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.16|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.17|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.18|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.19|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.20|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.21|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.22|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.23|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.24|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.25|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.26|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.27|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.28|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.29|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.30|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.31|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.32|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.33|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.34|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.35|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.36|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.37|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.38|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.39|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.40|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.41|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.42|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.43|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.44|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.45|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.46|66|0
+1.3.6.1.2.1.17.7.1.4.5.1.1.47|66|1
+1.3.6.1.2.1.17.7.1.4.5.1.1.48|66|1
+1.3.6.1.2.1.17.7.1.4.5.1.1.65|66|1
+1.3.6.1.2.1.17.7.1.4.5.1.1.66|66|1
+1.3.6.1.2.1.17.7.1.4.5.1.1.67|66|1
+1.3.6.1.2.1.17.7.1.4.5.1.1.68|66|1
+1.3.6.1.2.1.17.7.1.4.5.1.1.69|66|1
+1.3.6.1.2.1.31.1.1.1.1.1|4|Te0/1
+1.3.6.1.2.1.31.1.1.1.1.2|4|Te0/2
+1.3.6.1.2.1.31.1.1.1.1.3|4|Te0/3
+1.3.6.1.2.1.31.1.1.1.1.4|4|Te0/4
+1.3.6.1.2.1.31.1.1.1.1.5|4|Te0/5
+1.3.6.1.2.1.31.1.1.1.1.6|4|Te0/6
+1.3.6.1.2.1.31.1.1.1.1.7|4|Te0/7
+1.3.6.1.2.1.31.1.1.1.1.8|4|Te0/8
+1.3.6.1.2.1.31.1.1.1.1.9|4|Te0/9
+1.3.6.1.2.1.31.1.1.1.1.10|4|Te0/10
+1.3.6.1.2.1.31.1.1.1.1.11|4|Te0/11
+1.3.6.1.2.1.31.1.1.1.1.12|4|Te0/12
+1.3.6.1.2.1.31.1.1.1.1.13|4|Te0/13
+1.3.6.1.2.1.31.1.1.1.1.14|4|Te0/14
+1.3.6.1.2.1.31.1.1.1.1.15|4|Te0/15
+1.3.6.1.2.1.31.1.1.1.1.16|4|Te0/16
+1.3.6.1.2.1.31.1.1.1.1.17|4|Te0/17
+1.3.6.1.2.1.31.1.1.1.1.18|4|Te0/18
+1.3.6.1.2.1.31.1.1.1.1.19|4|Te0/19
+1.3.6.1.2.1.31.1.1.1.1.20|4|Te0/20
+1.3.6.1.2.1.31.1.1.1.1.21|4|Te0/21
+1.3.6.1.2.1.31.1.1.1.1.22|4|Te0/22
+1.3.6.1.2.1.31.1.1.1.1.23|4|Te0/23
+1.3.6.1.2.1.31.1.1.1.1.24|4|Te0/24
+1.3.6.1.2.1.31.1.1.1.1.25|4|Te0/25
+1.3.6.1.2.1.31.1.1.1.1.26|4|Te0/26
+1.3.6.1.2.1.31.1.1.1.1.27|4|Te0/27
+1.3.6.1.2.1.31.1.1.1.1.28|4|Te0/28
+1.3.6.1.2.1.31.1.1.1.1.29|4|Te0/29
+1.3.6.1.2.1.31.1.1.1.1.30|4|Te0/30
+1.3.6.1.2.1.31.1.1.1.1.31|4|Te0/31
+1.3.6.1.2.1.31.1.1.1.1.32|4|Te0/32
+1.3.6.1.2.1.31.1.1.1.1.33|4|Te0/33
+1.3.6.1.2.1.31.1.1.1.1.34|4|Te0/34
+1.3.6.1.2.1.31.1.1.1.1.35|4|Te0/35
+1.3.6.1.2.1.31.1.1.1.1.36|4|Te0/36
+1.3.6.1.2.1.31.1.1.1.1.37|4|Te0/37
+1.3.6.1.2.1.31.1.1.1.1.38|4|Te0/38
+1.3.6.1.2.1.31.1.1.1.1.39|4|Te0/39
+1.3.6.1.2.1.31.1.1.1.1.40|4|Te0/40
+1.3.6.1.2.1.31.1.1.1.1.41|4|Te0/41
+1.3.6.1.2.1.31.1.1.1.1.42|4|Te0/42
+1.3.6.1.2.1.31.1.1.1.1.43|4|Te0/43
+1.3.6.1.2.1.31.1.1.1.1.44|4|Te0/44
+1.3.6.1.2.1.31.1.1.1.1.45|4|Te0/45
+1.3.6.1.2.1.31.1.1.1.1.46|4|Te0/46
+1.3.6.1.2.1.31.1.1.1.1.47|4|Te0/47
+1.3.6.1.2.1.31.1.1.1.1.48|4|Te0/48
+1.3.6.1.2.1.31.1.1.1.1.65|4|Fo0/65
+1.3.6.1.2.1.31.1.1.1.1.66|4|Fo0/66
+1.3.6.1.2.1.31.1.1.1.1.67|4|Fo0/67
+1.3.6.1.2.1.31.1.1.1.1.68|4|Fo0/68
+1.3.6.1.2.1.31.1.1.1.1.69|4|Ag1
+1.3.6.1.2.1.31.1.1.1.1.4095|4|Mg 0
+1.3.6.1.2.1.31.1.1.1.1.4096|4|Nu0
+1.3.6.1.2.1.31.1.1.1.1.5639|4|Vl1543
+1.3.6.1.2.1.31.1.1.1.1.16385|4|Lo0
+1.3.6.1.2.1.31.1.1.1.2.1|65|0
+1.3.6.1.2.1.31.1.1.1.2.2|65|0
+1.3.6.1.2.1.31.1.1.1.2.3|65|21531171
+1.3.6.1.2.1.31.1.1.1.2.4|65|0
+1.3.6.1.2.1.31.1.1.1.2.5|65|28062623
+1.3.6.1.2.1.31.1.1.1.2.6|65|24832767
+1.3.6.1.2.1.31.1.1.1.2.7|65|4108202
+1.3.6.1.2.1.31.1.1.1.2.8|65|13039827
+1.3.6.1.2.1.31.1.1.1.2.9|65|24212716
+1.3.6.1.2.1.31.1.1.1.2.10|65|24478096
+1.3.6.1.2.1.31.1.1.1.2.11|65|25567469
+1.3.6.1.2.1.31.1.1.1.2.12|65|22507345
+1.3.6.1.2.1.31.1.1.1.2.13|65|0
+1.3.6.1.2.1.31.1.1.1.2.14|65|0
+1.3.6.1.2.1.31.1.1.1.2.15|65|23343704
+1.3.6.1.2.1.31.1.1.1.2.16|65|25047207
+1.3.6.1.2.1.31.1.1.1.2.17|65|24899440
+1.3.6.1.2.1.31.1.1.1.2.18|65|23097493
+1.3.6.1.2.1.31.1.1.1.2.19|65|57010854
+1.3.6.1.2.1.31.1.1.1.2.20|65|413575168
+1.3.6.1.2.1.31.1.1.1.2.21|65|30027850
+1.3.6.1.2.1.31.1.1.1.2.22|65|24570006
+1.3.6.1.2.1.31.1.1.1.2.23|65|22893343
+1.3.6.1.2.1.31.1.1.1.2.24|65|24746412
+1.3.6.1.2.1.31.1.1.1.2.25|65|23871858
+1.3.6.1.2.1.31.1.1.1.2.26|65|22754951
+1.3.6.1.2.1.31.1.1.1.2.27|65|21412757
+1.3.6.1.2.1.31.1.1.1.2.28|65|22846160
+1.3.6.1.2.1.31.1.1.1.2.29|65|22544305
+1.3.6.1.2.1.31.1.1.1.2.30|65|25847688
+1.3.6.1.2.1.31.1.1.1.2.31|65|26340070
+1.3.6.1.2.1.31.1.1.1.2.32|65|26950044
+1.3.6.1.2.1.31.1.1.1.2.33|65|25714327
+1.3.6.1.2.1.31.1.1.1.2.34|65|25744211
+1.3.6.1.2.1.31.1.1.1.2.35|65|25344586
+1.3.6.1.2.1.31.1.1.1.2.36|65|26932429
+1.3.6.1.2.1.31.1.1.1.2.37|65|0
+1.3.6.1.2.1.31.1.1.1.2.38|65|25712952
+1.3.6.1.2.1.31.1.1.1.2.39|65|16083830
+1.3.6.1.2.1.31.1.1.1.2.40|65|19688438
+1.3.6.1.2.1.31.1.1.1.2.41|65|14570537
+1.3.6.1.2.1.31.1.1.1.2.42|65|3864261
+1.3.6.1.2.1.31.1.1.1.2.43|65|2905266
+1.3.6.1.2.1.31.1.1.1.2.44|65|2753644
+1.3.6.1.2.1.31.1.1.1.2.45|65|5492439
+1.3.6.1.2.1.31.1.1.1.2.46|65|1978636
+1.3.6.1.2.1.31.1.1.1.2.47|65|35713928
+1.3.6.1.2.1.31.1.1.1.2.48|65|2223516
+1.3.6.1.2.1.31.1.1.1.2.65|65|0
+1.3.6.1.2.1.31.1.1.1.2.66|65|0
+1.3.6.1.2.1.31.1.1.1.2.67|65|0
+1.3.6.1.2.1.31.1.1.1.2.68|65|0
+1.3.6.1.2.1.31.1.1.1.2.69|65|37937424
+1.3.6.1.2.1.31.1.1.1.2.4095|65|3817797
+1.3.6.1.2.1.31.1.1.1.2.4096|65|0
+1.3.6.1.2.1.31.1.1.1.2.5639|65|0
+1.3.6.1.2.1.31.1.1.1.2.16385|65|0
+1.3.6.1.2.1.31.1.1.1.3.1|65|0
+1.3.6.1.2.1.31.1.1.1.3.2|65|0
+1.3.6.1.2.1.31.1.1.1.3.3|65|3600
+1.3.6.1.2.1.31.1.1.1.3.4|65|0
+1.3.6.1.2.1.31.1.1.1.3.5|65|38735
+1.3.6.1.2.1.31.1.1.1.3.6|65|20
+1.3.6.1.2.1.31.1.1.1.3.7|65|1906167
+1.3.6.1.2.1.31.1.1.1.3.8|65|1233
+1.3.6.1.2.1.31.1.1.1.3.9|65|20
+1.3.6.1.2.1.31.1.1.1.3.10|65|16
+1.3.6.1.2.1.31.1.1.1.3.11|65|20
+1.3.6.1.2.1.31.1.1.1.3.12|65|0
+1.3.6.1.2.1.31.1.1.1.3.13|65|0
+1.3.6.1.2.1.31.1.1.1.3.14|65|0
+1.3.6.1.2.1.31.1.1.1.3.15|65|2
+1.3.6.1.2.1.31.1.1.1.3.16|65|11
+1.3.6.1.2.1.31.1.1.1.3.17|65|5
+1.3.6.1.2.1.31.1.1.1.3.18|65|11
+1.3.6.1.2.1.31.1.1.1.3.19|65|10885840
+1.3.6.1.2.1.31.1.1.1.3.20|65|145487406
+1.3.6.1.2.1.31.1.1.1.3.21|65|36
+1.3.6.1.2.1.31.1.1.1.3.22|65|36
+1.3.6.1.2.1.31.1.1.1.3.23|65|92
+1.3.6.1.2.1.31.1.1.1.3.24|65|35
+1.3.6.1.2.1.31.1.1.1.3.25|65|388
+1.3.6.1.2.1.31.1.1.1.3.26|65|49
+1.3.6.1.2.1.31.1.1.1.3.27|65|0
+1.3.6.1.2.1.31.1.1.1.3.28|65|40
+1.3.6.1.2.1.31.1.1.1.3.29|65|61
+1.3.6.1.2.1.31.1.1.1.3.30|65|643
+1.3.6.1.2.1.31.1.1.1.3.31|65|40
+1.3.6.1.2.1.31.1.1.1.3.32|65|71
+1.3.6.1.2.1.31.1.1.1.3.33|65|469742
+1.3.6.1.2.1.31.1.1.1.3.34|65|334
+1.3.6.1.2.1.31.1.1.1.3.35|65|144
+1.3.6.1.2.1.31.1.1.1.3.36|65|37206
+1.3.6.1.2.1.31.1.1.1.3.37|65|0
+1.3.6.1.2.1.31.1.1.1.3.38|65|0
+1.3.6.1.2.1.31.1.1.1.3.39|65|1
+1.3.6.1.2.1.31.1.1.1.3.40|65|1294
+1.3.6.1.2.1.31.1.1.1.3.41|65|94
+1.3.6.1.2.1.31.1.1.1.3.42|65|0
+1.3.6.1.2.1.31.1.1.1.3.43|65|32
+1.3.6.1.2.1.31.1.1.1.3.44|65|1
+1.3.6.1.2.1.31.1.1.1.3.45|65|0
+1.3.6.1.2.1.31.1.1.1.3.46|65|7
+1.3.6.1.2.1.31.1.1.1.3.47|65|393
+1.3.6.1.2.1.31.1.1.1.3.48|65|2
+1.3.6.1.2.1.31.1.1.1.3.65|65|0
+1.3.6.1.2.1.31.1.1.1.3.66|65|0
+1.3.6.1.2.1.31.1.1.1.3.67|65|0
+1.3.6.1.2.1.31.1.1.1.3.68|65|0
+1.3.6.1.2.1.31.1.1.1.3.69|65|395
+1.3.6.1.2.1.31.1.1.1.3.4095|65|666445
+1.3.6.1.2.1.31.1.1.1.3.4096|65|0
+1.3.6.1.2.1.31.1.1.1.3.5639|65|0
+1.3.6.1.2.1.31.1.1.1.3.16385|65|0
+1.3.6.1.2.1.31.1.1.1.4.1|65|0
+1.3.6.1.2.1.31.1.1.1.4.2|65|0
+1.3.6.1.2.1.31.1.1.1.4.3|65|29169753
+1.3.6.1.2.1.31.1.1.1.4.4|65|0
+1.3.6.1.2.1.31.1.1.1.4.5|65|30218515
+1.3.6.1.2.1.31.1.1.1.4.6|65|31514690
+1.3.6.1.2.1.31.1.1.1.4.7|65|4798352
+1.3.6.1.2.1.31.1.1.1.4.8|65|18523430
+1.3.6.1.2.1.31.1.1.1.4.9|65|32049578
+1.3.6.1.2.1.31.1.1.1.4.10|65|32452154
+1.3.6.1.2.1.31.1.1.1.4.11|65|33252359
+1.3.6.1.2.1.31.1.1.1.4.12|65|26670380
+1.3.6.1.2.1.31.1.1.1.4.13|65|0
+1.3.6.1.2.1.31.1.1.1.4.14|65|0
+1.3.6.1.2.1.31.1.1.1.4.15|65|26670567
+1.3.6.1.2.1.31.1.1.1.4.16|65|30818164
+1.3.6.1.2.1.31.1.1.1.4.17|65|28846856
+1.3.6.1.2.1.31.1.1.1.4.18|65|31651366
+1.3.6.1.2.1.31.1.1.1.4.19|65|28190620
+1.3.6.1.2.1.31.1.1.1.4.20|65|26512983
+1.3.6.1.2.1.31.1.1.1.4.21|65|26737631
+1.3.6.1.2.1.31.1.1.1.4.22|65|30866137
+1.3.6.1.2.1.31.1.1.1.4.23|65|30224798
+1.3.6.1.2.1.31.1.1.1.4.24|65|28889689
+1.3.6.1.2.1.31.1.1.1.4.25|65|30662376
+1.3.6.1.2.1.31.1.1.1.4.26|65|29951936
+1.3.6.1.2.1.31.1.1.1.4.27|65|25898281
+1.3.6.1.2.1.31.1.1.1.4.28|65|30796684
+1.3.6.1.2.1.31.1.1.1.4.29|65|28288579
+1.3.6.1.2.1.31.1.1.1.4.30|65|32847195
+1.3.6.1.2.1.31.1.1.1.4.31|65|36223409
+1.3.6.1.2.1.31.1.1.1.4.32|65|30670113
+1.3.6.1.2.1.31.1.1.1.4.33|65|33932618
+1.3.6.1.2.1.31.1.1.1.4.34|65|24343858
+1.3.6.1.2.1.31.1.1.1.4.35|65|22151107
+1.3.6.1.2.1.31.1.1.1.4.36|65|27562852
+1.3.6.1.2.1.31.1.1.1.4.37|65|0
+1.3.6.1.2.1.31.1.1.1.4.38|65|32211071
+1.3.6.1.2.1.31.1.1.1.4.39|65|19980791
+1.3.6.1.2.1.31.1.1.1.4.40|65|27065468
+1.3.6.1.2.1.31.1.1.1.4.41|65|17287849
+1.3.6.1.2.1.31.1.1.1.4.42|65|3864155
+1.3.6.1.2.1.31.1.1.1.4.43|65|2904852
+1.3.6.1.2.1.31.1.1.1.4.44|65|2751119
+1.3.6.1.2.1.31.1.1.1.4.45|65|3183335
+1.3.6.1.2.1.31.1.1.1.4.46|65|2259584
+1.3.6.1.2.1.31.1.1.1.4.47|65|32851084
+1.3.6.1.2.1.31.1.1.1.4.48|65|2223215
+1.3.6.1.2.1.31.1.1.1.4.65|65|0
+1.3.6.1.2.1.31.1.1.1.4.66|65|0
+1.3.6.1.2.1.31.1.1.1.4.67|65|0
+1.3.6.1.2.1.31.1.1.1.4.68|65|0
+1.3.6.1.2.1.31.1.1.1.4.69|65|35074285
+1.3.6.1.2.1.31.1.1.1.4.4095|65|0
+1.3.6.1.2.1.31.1.1.1.4.4096|65|0
+1.3.6.1.2.1.31.1.1.1.4.5639|65|0
+1.3.6.1.2.1.31.1.1.1.4.16385|65|0
+1.3.6.1.2.1.31.1.1.1.5.1|65|0
+1.3.6.1.2.1.31.1.1.1.5.2|65|0
+1.3.6.1.2.1.31.1.1.1.5.3|65|26586
+1.3.6.1.2.1.31.1.1.1.5.4|65|0
+1.3.6.1.2.1.31.1.1.1.5.5|65|7294
+1.3.6.1.2.1.31.1.1.1.5.6|65|3383
+1.3.6.1.2.1.31.1.1.1.5.7|65|741
+1.3.6.1.2.1.31.1.1.1.5.8|65|6973
+1.3.6.1.2.1.31.1.1.1.5.9|65|7922
+1.3.6.1.2.1.31.1.1.1.5.10|65|3644
+1.3.6.1.2.1.31.1.1.1.5.11|65|8572
+1.3.6.1.2.1.31.1.1.1.5.12|65|8083
+1.3.6.1.2.1.31.1.1.1.5.13|65|0
+1.3.6.1.2.1.31.1.1.1.5.14|65|0
+1.3.6.1.2.1.31.1.1.1.5.15|65|3869
+1.3.6.1.2.1.31.1.1.1.5.16|65|8153
+1.3.6.1.2.1.31.1.1.1.5.17|65|7839
+1.3.6.1.2.1.31.1.1.1.5.18|65|2001
+1.3.6.1.2.1.31.1.1.1.5.19|65|7687
+1.3.6.1.2.1.31.1.1.1.5.20|65|8013
+1.3.6.1.2.1.31.1.1.1.5.21|65|8106
+1.3.6.1.2.1.31.1.1.1.5.22|65|8192
+1.3.6.1.2.1.31.1.1.1.5.23|65|7659
+1.3.6.1.2.1.31.1.1.1.5.24|65|7780
+1.3.6.1.2.1.31.1.1.1.5.25|65|8194
+1.3.6.1.2.1.31.1.1.1.5.26|65|12933
+1.3.6.1.2.1.31.1.1.1.5.27|65|8688
+1.3.6.1.2.1.31.1.1.1.5.28|65|8007
+1.3.6.1.2.1.31.1.1.1.5.29|65|7219
+1.3.6.1.2.1.31.1.1.1.5.30|65|7131
+1.3.6.1.2.1.31.1.1.1.5.31|65|7295
+1.3.6.1.2.1.31.1.1.1.5.32|65|3281
+1.3.6.1.2.1.31.1.1.1.5.33|65|7530
+1.3.6.1.2.1.31.1.1.1.5.34|65|7780
+1.3.6.1.2.1.31.1.1.1.5.35|65|7703
+1.3.6.1.2.1.31.1.1.1.5.36|65|3434
+1.3.6.1.2.1.31.1.1.1.5.37|65|0
+1.3.6.1.2.1.31.1.1.1.5.38|65|7369
+1.3.6.1.2.1.31.1.1.1.5.39|65|1102
+1.3.6.1.2.1.31.1.1.1.5.40|65|2065
+1.3.6.1.2.1.31.1.1.1.5.41|65|505
+1.3.6.1.2.1.31.1.1.1.5.42|65|42
+1.3.6.1.2.1.31.1.1.1.5.43|65|14
+1.3.6.1.2.1.31.1.1.1.5.44|65|246
+1.3.6.1.2.1.31.1.1.1.5.45|65|9
+1.3.6.1.2.1.31.1.1.1.5.46|65|301
+1.3.6.1.2.1.31.1.1.1.5.47|65|2343
+1.3.6.1.2.1.31.1.1.1.5.48|65|1
+1.3.6.1.2.1.31.1.1.1.5.65|65|0
+1.3.6.1.2.1.31.1.1.1.5.66|65|0
+1.3.6.1.2.1.31.1.1.1.5.67|65|0
+1.3.6.1.2.1.31.1.1.1.5.68|65|0
+1.3.6.1.2.1.31.1.1.1.5.69|65|2344
+1.3.6.1.2.1.31.1.1.1.5.4095|65|636355
+1.3.6.1.2.1.31.1.1.1.5.4096|65|0
+1.3.6.1.2.1.31.1.1.1.5.5639|65|0
+1.3.6.1.2.1.31.1.1.1.5.16385|65|0
+1.3.6.1.2.1.31.1.1.1.6.1|70|0
+1.3.6.1.2.1.31.1.1.1.6.2|70|0
+1.3.6.1.2.1.31.1.1.1.6.3|70|40014605180948
+1.3.6.1.2.1.31.1.1.1.6.4|70|0
+1.3.6.1.2.1.31.1.1.1.6.5|70|3690483818092734
+1.3.6.1.2.1.31.1.1.1.6.6|70|1488262400009
+1.3.6.1.2.1.31.1.1.1.6.7|70|18626084080934
+1.3.6.1.2.1.31.1.1.1.6.8|70|12464134017670
+1.3.6.1.2.1.31.1.1.1.6.9|70|21372669642249
+1.3.6.1.2.1.31.1.1.1.6.10|70|4808417791752
+1.3.6.1.2.1.31.1.1.1.6.11|70|126883361886953
+1.3.6.1.2.1.31.1.1.1.6.12|70|90196564006636
+1.3.6.1.2.1.31.1.1.1.6.13|70|0
+1.3.6.1.2.1.31.1.1.1.6.14|70|0
+1.3.6.1.2.1.31.1.1.1.6.15|70|2221332648
+1.3.6.1.2.1.31.1.1.1.6.16|70|201601551172252
+1.3.6.1.2.1.31.1.1.1.6.17|70|219318748248019
+1.3.6.1.2.1.31.1.1.1.6.18|70|128465028879362
+1.3.6.1.2.1.31.1.1.1.6.19|70|87408901853577
+1.3.6.1.2.1.31.1.1.1.6.20|70|195006979683161
+1.3.6.1.2.1.31.1.1.1.6.21|70|296761574248305
+1.3.6.1.2.1.31.1.1.1.6.22|70|4352321460202
+1.3.6.1.2.1.31.1.1.1.6.23|70|95051478118703
+1.3.6.1.2.1.31.1.1.1.6.24|70|655777303462
+1.3.6.1.2.1.31.1.1.1.6.25|70|251435727413273
+1.3.6.1.2.1.31.1.1.1.6.26|70|161362371489044
+1.3.6.1.2.1.31.1.1.1.6.27|70|286343370874143
+1.3.6.1.2.1.31.1.1.1.6.28|70|314463747756695
+1.3.6.1.2.1.31.1.1.1.6.29|70|172508588919072
+1.3.6.1.2.1.31.1.1.1.6.30|70|6531501439209252
+1.3.6.1.2.1.31.1.1.1.6.31|70|44196512903139
+1.3.6.1.2.1.31.1.1.1.6.32|70|17755834628060
+1.3.6.1.2.1.31.1.1.1.6.33|70|81551699789310
+1.3.6.1.2.1.31.1.1.1.6.34|70|60087680641952
+1.3.6.1.2.1.31.1.1.1.6.35|70|160583869141
+1.3.6.1.2.1.31.1.1.1.6.36|70|47314035781747
+1.3.6.1.2.1.31.1.1.1.6.37|70|0
+1.3.6.1.2.1.31.1.1.1.6.38|70|44828545525110
+1.3.6.1.2.1.31.1.1.1.6.39|70|882487676824
+1.3.6.1.2.1.31.1.1.1.6.40|70|46673917372806
+1.3.6.1.2.1.31.1.1.1.6.41|70|86051336153542
+1.3.6.1.2.1.31.1.1.1.6.42|70|19872680469275
+1.3.6.1.2.1.31.1.1.1.6.43|70|1849494666231
+1.3.6.1.2.1.31.1.1.1.6.44|70|12481767382903
+1.3.6.1.2.1.31.1.1.1.6.45|70|14829399825281
+1.3.6.1.2.1.31.1.1.1.6.46|70|9771426270382
+1.3.6.1.2.1.31.1.1.1.6.47|70|543546999672916
+1.3.6.1.2.1.31.1.1.1.6.48|70|74337244433132
+1.3.6.1.2.1.31.1.1.1.6.65|70|0
+1.3.6.1.2.1.31.1.1.1.6.66|70|0
+1.3.6.1.2.1.31.1.1.1.6.67|70|0
+1.3.6.1.2.1.31.1.1.1.6.68|70|0
+1.3.6.1.2.1.31.1.1.1.6.69|70|617884224495168
+1.3.6.1.2.1.31.1.1.1.6.4095|70|25439386322
+1.3.6.1.2.1.31.1.1.1.6.4096|70|0
+1.3.6.1.2.1.31.1.1.1.6.5639|70|0
+1.3.6.1.2.1.31.1.1.1.6.16385|70|0
+1.3.6.1.2.1.31.1.1.1.7.1|70|0
+1.3.6.1.2.1.31.1.1.1.7.2|70|0
+1.3.6.1.2.1.31.1.1.1.7.3|70|37522450924
+1.3.6.1.2.1.31.1.1.1.7.4|70|0
+1.3.6.1.2.1.31.1.1.1.7.5|70|15322604734781
+1.3.6.1.2.1.31.1.1.1.7.6|70|2603933915
+1.3.6.1.2.1.31.1.1.1.7.7|70|65085325040
+1.3.6.1.2.1.31.1.1.1.7.8|70|48519189187
+1.3.6.1.2.1.31.1.1.1.7.9|70|138140230018
+1.3.6.1.2.1.31.1.1.1.7.10|70|4217251295
+1.3.6.1.2.1.31.1.1.1.7.11|70|247451851680
+1.3.6.1.2.1.31.1.1.1.7.12|70|160496400488
+1.3.6.1.2.1.31.1.1.1.7.13|70|0
+1.3.6.1.2.1.31.1.1.1.7.14|70|0
+1.3.6.1.2.1.31.1.1.1.7.15|70|934677
+1.3.6.1.2.1.31.1.1.1.7.16|70|620862053117
+1.3.6.1.2.1.31.1.1.1.7.17|70|896881676817
+1.3.6.1.2.1.31.1.1.1.7.18|70|531189729087
+1.3.6.1.2.1.31.1.1.1.7.19|70|165030746105
+1.3.6.1.2.1.31.1.1.1.7.20|70|678418277067
+1.3.6.1.2.1.31.1.1.1.7.21|70|567636534207
+1.3.6.1.2.1.31.1.1.1.7.22|70|26491822852
+1.3.6.1.2.1.31.1.1.1.7.23|70|217410811808
+1.3.6.1.2.1.31.1.1.1.7.24|70|2982434887
+1.3.6.1.2.1.31.1.1.1.7.25|70|670255013169
+1.3.6.1.2.1.31.1.1.1.7.26|70|243867959263
+1.3.6.1.2.1.31.1.1.1.7.27|70|682007190918
+1.3.6.1.2.1.31.1.1.1.7.28|70|645408911098
+1.3.6.1.2.1.31.1.1.1.7.29|70|363537143667
+1.3.6.1.2.1.31.1.1.1.7.30|70|6059001099685
+1.3.6.1.2.1.31.1.1.1.7.31|70|326824262306
+1.3.6.1.2.1.31.1.1.1.7.32|70|42197659951
+1.3.6.1.2.1.31.1.1.1.7.33|70|243782776118
+1.3.6.1.2.1.31.1.1.1.7.34|70|120269682379
+1.3.6.1.2.1.31.1.1.1.7.35|70|882800095
+1.3.6.1.2.1.31.1.1.1.7.36|70|47936478074
+1.3.6.1.2.1.31.1.1.1.7.37|70|0
+1.3.6.1.2.1.31.1.1.1.7.38|70|207511955290
+1.3.6.1.2.1.31.1.1.1.7.39|70|3152285696
+1.3.6.1.2.1.31.1.1.1.7.40|70|75620354050
+1.3.6.1.2.1.31.1.1.1.7.41|70|107858159677
+1.3.6.1.2.1.31.1.1.1.7.42|70|63180786772
+1.3.6.1.2.1.31.1.1.1.7.43|70|5079385554
+1.3.6.1.2.1.31.1.1.1.7.44|70|25420927579
+1.3.6.1.2.1.31.1.1.1.7.45|70|38605318488
+1.3.6.1.2.1.31.1.1.1.7.46|70|15401022637
+1.3.6.1.2.1.31.1.1.1.7.47|70|768477990799
+1.3.6.1.2.1.31.1.1.1.7.48|70|166238977452
+1.3.6.1.2.1.31.1.1.1.7.65|70|0
+1.3.6.1.2.1.31.1.1.1.7.66|70|0
+1.3.6.1.2.1.31.1.1.1.7.67|70|0
+1.3.6.1.2.1.31.1.1.1.7.68|70|0
+1.3.6.1.2.1.31.1.1.1.7.69|70|934716925444
+1.3.6.1.2.1.31.1.1.1.7.4095|70|0
+1.3.6.1.2.1.31.1.1.1.7.4096|70|0
+1.3.6.1.2.1.31.1.1.1.7.5639|70|0
+1.3.6.1.2.1.31.1.1.1.7.16385|70|0
+1.3.6.1.2.1.31.1.1.1.8.1|70|0
+1.3.6.1.2.1.31.1.1.1.8.2|70|0
+1.3.6.1.2.1.31.1.1.1.8.3|70|21531172
+1.3.6.1.2.1.31.1.1.1.8.4|70|0
+1.3.6.1.2.1.31.1.1.1.8.5|70|28062625
+1.3.6.1.2.1.31.1.1.1.8.6|70|24832769
+1.3.6.1.2.1.31.1.1.1.8.7|70|4108202
+1.3.6.1.2.1.31.1.1.1.8.8|70|13039827
+1.3.6.1.2.1.31.1.1.1.8.9|70|24212717
+1.3.6.1.2.1.31.1.1.1.8.10|70|24478098
+1.3.6.1.2.1.31.1.1.1.8.11|70|25567472
+1.3.6.1.2.1.31.1.1.1.8.12|70|22507346
+1.3.6.1.2.1.31.1.1.1.8.13|70|0
+1.3.6.1.2.1.31.1.1.1.8.14|70|0
+1.3.6.1.2.1.31.1.1.1.8.15|70|23343705
+1.3.6.1.2.1.31.1.1.1.8.16|70|25047209
+1.3.6.1.2.1.31.1.1.1.8.17|70|24899442
+1.3.6.1.2.1.31.1.1.1.8.18|70|23097493
+1.3.6.1.2.1.31.1.1.1.8.19|70|57010854
+1.3.6.1.2.1.31.1.1.1.8.20|70|413575168
+1.3.6.1.2.1.31.1.1.1.8.21|70|30027850
+1.3.6.1.2.1.31.1.1.1.8.22|70|24570006
+1.3.6.1.2.1.31.1.1.1.8.23|70|22893343
+1.3.6.1.2.1.31.1.1.1.8.24|70|24746412
+1.3.6.1.2.1.31.1.1.1.8.25|70|23871858
+1.3.6.1.2.1.31.1.1.1.8.26|70|22754951
+1.3.6.1.2.1.31.1.1.1.8.27|70|21412757
+1.3.6.1.2.1.31.1.1.1.8.28|70|22846160
+1.3.6.1.2.1.31.1.1.1.8.29|70|22544305
+1.3.6.1.2.1.31.1.1.1.8.30|70|25847688
+1.3.6.1.2.1.31.1.1.1.8.31|70|26340070
+1.3.6.1.2.1.31.1.1.1.8.32|70|26950044
+1.3.6.1.2.1.31.1.1.1.8.33|70|25714327
+1.3.6.1.2.1.31.1.1.1.8.34|70|25744211
+1.3.6.1.2.1.31.1.1.1.8.35|70|25344586
+1.3.6.1.2.1.31.1.1.1.8.36|70|26932429
+1.3.6.1.2.1.31.1.1.1.8.37|70|0
+1.3.6.1.2.1.31.1.1.1.8.38|70|25712952
+1.3.6.1.2.1.31.1.1.1.8.39|70|16083830
+1.3.6.1.2.1.31.1.1.1.8.40|70|19688438
+1.3.6.1.2.1.31.1.1.1.8.41|70|14570537
+1.3.6.1.2.1.31.1.1.1.8.42|70|3864261
+1.3.6.1.2.1.31.1.1.1.8.43|70|2905266
+1.3.6.1.2.1.31.1.1.1.8.44|70|2753644
+1.3.6.1.2.1.31.1.1.1.8.45|70|5492439
+1.3.6.1.2.1.31.1.1.1.8.46|70|1978636
+1.3.6.1.2.1.31.1.1.1.8.47|70|35713928
+1.3.6.1.2.1.31.1.1.1.8.48|70|2223516
+1.3.6.1.2.1.31.1.1.1.8.65|70|0
+1.3.6.1.2.1.31.1.1.1.8.66|70|0
+1.3.6.1.2.1.31.1.1.1.8.67|70|0
+1.3.6.1.2.1.31.1.1.1.8.68|70|0
+1.3.6.1.2.1.31.1.1.1.8.69|70|37937424
+1.3.6.1.2.1.31.1.1.1.8.4095|70|3817797
+1.3.6.1.2.1.31.1.1.1.8.4096|70|0
+1.3.6.1.2.1.31.1.1.1.8.5639|70|0
+1.3.6.1.2.1.31.1.1.1.8.16385|70|0
+1.3.6.1.2.1.31.1.1.1.9.1|70|0
+1.3.6.1.2.1.31.1.1.1.9.2|70|0
+1.3.6.1.2.1.31.1.1.1.9.3|70|3600
+1.3.6.1.2.1.31.1.1.1.9.4|70|0
+1.3.6.1.2.1.31.1.1.1.9.5|70|38735
+1.3.6.1.2.1.31.1.1.1.9.6|70|20
+1.3.6.1.2.1.31.1.1.1.9.7|70|1906167
+1.3.6.1.2.1.31.1.1.1.9.8|70|1233
+1.3.6.1.2.1.31.1.1.1.9.9|70|20
+1.3.6.1.2.1.31.1.1.1.9.10|70|16
+1.3.6.1.2.1.31.1.1.1.9.11|70|20
+1.3.6.1.2.1.31.1.1.1.9.12|70|0
+1.3.6.1.2.1.31.1.1.1.9.13|70|0
+1.3.6.1.2.1.31.1.1.1.9.14|70|0
+1.3.6.1.2.1.31.1.1.1.9.15|70|2
+1.3.6.1.2.1.31.1.1.1.9.16|70|11
+1.3.6.1.2.1.31.1.1.1.9.17|70|5
+1.3.6.1.2.1.31.1.1.1.9.18|70|11
+1.3.6.1.2.1.31.1.1.1.9.19|70|10885840
+1.3.6.1.2.1.31.1.1.1.9.20|70|145487406
+1.3.6.1.2.1.31.1.1.1.9.21|70|36
+1.3.6.1.2.1.31.1.1.1.9.22|70|36
+1.3.6.1.2.1.31.1.1.1.9.23|70|92
+1.3.6.1.2.1.31.1.1.1.9.24|70|35
+1.3.6.1.2.1.31.1.1.1.9.25|70|388
+1.3.6.1.2.1.31.1.1.1.9.26|70|49
+1.3.6.1.2.1.31.1.1.1.9.27|70|0
+1.3.6.1.2.1.31.1.1.1.9.28|70|40
+1.3.6.1.2.1.31.1.1.1.9.29|70|61
+1.3.6.1.2.1.31.1.1.1.9.30|70|643
+1.3.6.1.2.1.31.1.1.1.9.31|70|40
+1.3.6.1.2.1.31.1.1.1.9.32|70|71
+1.3.6.1.2.1.31.1.1.1.9.33|70|469742
+1.3.6.1.2.1.31.1.1.1.9.34|70|334
+1.3.6.1.2.1.31.1.1.1.9.35|70|144
+1.3.6.1.2.1.31.1.1.1.9.36|70|37206
+1.3.6.1.2.1.31.1.1.1.9.37|70|0
+1.3.6.1.2.1.31.1.1.1.9.38|70|0
+1.3.6.1.2.1.31.1.1.1.9.39|70|1
+1.3.6.1.2.1.31.1.1.1.9.40|70|1294
+1.3.6.1.2.1.31.1.1.1.9.41|70|94
+1.3.6.1.2.1.31.1.1.1.9.42|70|0
+1.3.6.1.2.1.31.1.1.1.9.43|70|32
+1.3.6.1.2.1.31.1.1.1.9.44|70|1
+1.3.6.1.2.1.31.1.1.1.9.45|70|0
+1.3.6.1.2.1.31.1.1.1.9.46|70|7
+1.3.6.1.2.1.31.1.1.1.9.47|70|393
+1.3.6.1.2.1.31.1.1.1.9.48|70|2
+1.3.6.1.2.1.31.1.1.1.9.65|70|0
+1.3.6.1.2.1.31.1.1.1.9.66|70|0
+1.3.6.1.2.1.31.1.1.1.9.67|70|0
+1.3.6.1.2.1.31.1.1.1.9.68|70|0
+1.3.6.1.2.1.31.1.1.1.9.69|70|395
+1.3.6.1.2.1.31.1.1.1.9.4095|70|666445
+1.3.6.1.2.1.31.1.1.1.9.4096|70|0
+1.3.6.1.2.1.31.1.1.1.9.5639|70|0
+1.3.6.1.2.1.31.1.1.1.9.16385|70|0
+1.3.6.1.2.1.31.1.1.1.10.1|70|0
+1.3.6.1.2.1.31.1.1.1.10.2|70|0
+1.3.6.1.2.1.31.1.1.1.10.3|70|18924817949768
+1.3.6.1.2.1.31.1.1.1.10.4|70|0
+1.3.6.1.2.1.31.1.1.1.10.5|70|539436001274910
+1.3.6.1.2.1.31.1.1.1.10.6|70|4107077460539
+1.3.6.1.2.1.31.1.1.1.10.7|70|113896238650512
+1.3.6.1.2.1.31.1.1.1.10.8|70|185515858055627
+1.3.6.1.2.1.31.1.1.1.10.9|70|341040243728730
+1.3.6.1.2.1.31.1.1.1.10.10|70|605435555770
+1.3.6.1.2.1.31.1.1.1.10.11|70|220904575300903
+1.3.6.1.2.1.31.1.1.1.10.12|70|130057386216323
+1.3.6.1.2.1.31.1.1.1.10.13|70|0
+1.3.6.1.2.1.31.1.1.1.10.14|70|0
+1.3.6.1.2.1.31.1.1.1.10.15|70|3541904794
+1.3.6.1.2.1.31.1.1.1.10.16|70|371240900107291
+1.3.6.1.2.1.31.1.1.1.10.17|70|213640159289514
+1.3.6.1.2.1.31.1.1.1.10.18|70|485959439324868
+1.3.6.1.2.1.31.1.1.1.10.19|70|154989596372038
+1.3.6.1.2.1.31.1.1.1.10.20|70|383442664289827
+1.3.6.1.2.1.31.1.1.1.10.21|70|330215571113706
+1.3.6.1.2.1.31.1.1.1.10.22|70|134596268874549
+1.3.6.1.2.1.31.1.1.1.10.23|70|256931507838955
+1.3.6.1.2.1.31.1.1.1.10.24|70|367110105179540
+1.3.6.1.2.1.31.1.1.1.10.25|70|821801120633155
+1.3.6.1.2.1.31.1.1.1.10.26|70|755820997366280
+1.3.6.1.2.1.31.1.1.1.10.27|70|1606974244492164
+1.3.6.1.2.1.31.1.1.1.10.28|70|904218027649779
+1.3.6.1.2.1.31.1.1.1.10.29|70|1264175155545975
+1.3.6.1.2.1.31.1.1.1.10.30|70|2354991508179294
+1.3.6.1.2.1.31.1.1.1.10.31|70|576943441852993
+1.3.6.1.2.1.31.1.1.1.10.32|70|71144901968353
+1.3.6.1.2.1.31.1.1.1.10.33|70|411525435393720
+1.3.6.1.2.1.31.1.1.1.10.34|70|72778954678517
+1.3.6.1.2.1.31.1.1.1.10.35|70|168336902502
+1.3.6.1.2.1.31.1.1.1.10.36|70|10382691295068
+1.3.6.1.2.1.31.1.1.1.10.37|70|0
+1.3.6.1.2.1.31.1.1.1.10.38|70|303120978224159
+1.3.6.1.2.1.31.1.1.1.10.39|70|4837126087612
+1.3.6.1.2.1.31.1.1.1.10.40|70|55490246166758
+1.3.6.1.2.1.31.1.1.1.10.41|70|134499708307258
+1.3.6.1.2.1.31.1.1.1.10.42|70|114382997156559
+1.3.6.1.2.1.31.1.1.1.10.43|70|8335337123714
+1.3.6.1.2.1.31.1.1.1.10.44|70|24198457370294
+1.3.6.1.2.1.31.1.1.1.10.45|70|74138185315409
+1.3.6.1.2.1.31.1.1.1.10.46|70|20573224621161
+1.3.6.1.2.1.31.1.1.1.10.47|70|198273912835237
+1.3.6.1.2.1.31.1.1.1.10.48|70|15433017266317
+1.3.6.1.2.1.31.1.1.1.10.65|70|0
+1.3.6.1.2.1.31.1.1.1.10.66|70|0
+1.3.6.1.2.1.31.1.1.1.10.67|70|0
+1.3.6.1.2.1.31.1.1.1.10.68|70|0
+1.3.6.1.2.1.31.1.1.1.10.69|70|213706928200521
+1.3.6.1.2.1.31.1.1.1.10.4095|70|2882967792
+1.3.6.1.2.1.31.1.1.1.10.4096|70|0
+1.3.6.1.2.1.31.1.1.1.10.5639|70|0
+1.3.6.1.2.1.31.1.1.1.10.16385|70|0
+1.3.6.1.2.1.31.1.1.1.11.1|70|0
+1.3.6.1.2.1.31.1.1.1.11.2|70|0
+1.3.6.1.2.1.31.1.1.1.11.3|70|20604810854
+1.3.6.1.2.1.31.1.1.1.11.4|70|0
+1.3.6.1.2.1.31.1.1.1.11.5|70|3955403027196
+1.3.6.1.2.1.31.1.1.1.11.6|70|3763816003
+1.3.6.1.2.1.31.1.1.1.11.7|70|92310885452
+1.3.6.1.2.1.31.1.1.1.11.8|70|189580516800
+1.3.6.1.2.1.31.1.1.1.11.9|70|508612268812
+1.3.6.1.2.1.31.1.1.1.11.10|70|977952563
+1.3.6.1.2.1.31.1.1.1.11.11|70|545691210357
+1.3.6.1.2.1.31.1.1.1.11.12|70|183140536333
+1.3.6.1.2.1.31.1.1.1.11.13|70|0
+1.3.6.1.2.1.31.1.1.1.11.14|70|0
+1.3.6.1.2.1.31.1.1.1.11.15|70|1205172
+1.3.6.1.2.1.31.1.1.1.11.16|70|1431148541865
+1.3.6.1.2.1.31.1.1.1.11.17|70|1354177042017
+1.3.6.1.2.1.31.1.1.1.11.18|70|1903713590352
+1.3.6.1.2.1.31.1.1.1.11.19|70|289263336023
+1.3.6.1.2.1.31.1.1.1.11.20|70|1395617441426
+1.3.6.1.2.1.31.1.1.1.11.21|70|1050569148215
+1.3.6.1.2.1.31.1.1.1.11.22|70|101946342723
+1.3.6.1.2.1.31.1.1.1.11.23|70|372828461335
+1.3.6.1.2.1.31.1.1.1.11.24|70|1269102408238
+1.3.6.1.2.1.31.1.1.1.11.25|70|1472276402787
+1.3.6.1.2.1.31.1.1.1.11.26|70|1133518236947
+1.3.6.1.2.1.31.1.1.1.11.27|70|2515757463891
+1.3.6.1.2.1.31.1.1.1.11.28|70|1439024369639
+1.3.6.1.2.1.31.1.1.1.11.29|70|1895537148350
+1.3.6.1.2.1.31.1.1.1.11.30|70|4341204397162
+1.3.6.1.2.1.31.1.1.1.11.31|70|980668454757
+1.3.6.1.2.1.31.1.1.1.11.32|70|148458365351
+1.3.6.1.2.1.31.1.1.1.11.33|70|375535697347
+1.3.6.1.2.1.31.1.1.1.11.34|70|195889730430
+1.3.6.1.2.1.31.1.1.1.11.35|70|923351255
+1.3.6.1.2.1.31.1.1.1.11.36|70|36135329125
+1.3.6.1.2.1.31.1.1.1.11.37|70|0
+1.3.6.1.2.1.31.1.1.1.11.38|70|406396772513
+1.3.6.1.2.1.31.1.1.1.11.39|70|7537818086
+1.3.6.1.2.1.31.1.1.1.11.40|70|131017226611
+1.3.6.1.2.1.31.1.1.1.11.41|70|162244007802
+1.3.6.1.2.1.31.1.1.1.11.42|70|119564555364
+1.3.6.1.2.1.31.1.1.1.11.43|70|10288683186
+1.3.6.1.2.1.31.1.1.1.11.44|70|48649002980
+1.3.6.1.2.1.31.1.1.1.11.45|70|75443986009
+1.3.6.1.2.1.31.1.1.1.11.46|70|20620357572
+1.3.6.1.2.1.31.1.1.1.11.47|70|454681014018
+1.3.6.1.2.1.31.1.1.1.11.48|70|16088830655
+1.3.6.1.2.1.31.1.1.1.11.65|70|0
+1.3.6.1.2.1.31.1.1.1.11.66|70|0
+1.3.6.1.2.1.31.1.1.1.11.67|70|0
+1.3.6.1.2.1.31.1.1.1.11.68|70|0
+1.3.6.1.2.1.31.1.1.1.11.69|70|470769839140
+1.3.6.1.2.1.31.1.1.1.11.4095|70|0
+1.3.6.1.2.1.31.1.1.1.11.4096|70|0
+1.3.6.1.2.1.31.1.1.1.11.5639|70|0
+1.3.6.1.2.1.31.1.1.1.11.16385|70|0
+1.3.6.1.2.1.31.1.1.1.12.1|70|0
+1.3.6.1.2.1.31.1.1.1.12.2|70|0
+1.3.6.1.2.1.31.1.1.1.12.3|70|29169753
+1.3.6.1.2.1.31.1.1.1.12.4|70|0
+1.3.6.1.2.1.31.1.1.1.12.5|70|30218515
+1.3.6.1.2.1.31.1.1.1.12.6|70|31514690
+1.3.6.1.2.1.31.1.1.1.12.7|70|4798352
+1.3.6.1.2.1.31.1.1.1.12.8|70|18523430
+1.3.6.1.2.1.31.1.1.1.12.9|70|32049578
+1.3.6.1.2.1.31.1.1.1.12.10|70|32452154
+1.3.6.1.2.1.31.1.1.1.12.11|70|33252359
+1.3.6.1.2.1.31.1.1.1.12.12|70|26670380
+1.3.6.1.2.1.31.1.1.1.12.13|70|0
+1.3.6.1.2.1.31.1.1.1.12.14|70|0
+1.3.6.1.2.1.31.1.1.1.12.15|70|26670567
+1.3.6.1.2.1.31.1.1.1.12.16|70|30818164
+1.3.6.1.2.1.31.1.1.1.12.17|70|28846856
+1.3.6.1.2.1.31.1.1.1.12.18|70|31651366
+1.3.6.1.2.1.31.1.1.1.12.19|70|28190620
+1.3.6.1.2.1.31.1.1.1.12.20|70|26512983
+1.3.6.1.2.1.31.1.1.1.12.21|70|26737631
+1.3.6.1.2.1.31.1.1.1.12.22|70|30866137
+1.3.6.1.2.1.31.1.1.1.12.23|70|30224798
+1.3.6.1.2.1.31.1.1.1.12.24|70|28889689
+1.3.6.1.2.1.31.1.1.1.12.25|70|30662376
+1.3.6.1.2.1.31.1.1.1.12.26|70|29951936
+1.3.6.1.2.1.31.1.1.1.12.27|70|25898281
+1.3.6.1.2.1.31.1.1.1.12.28|70|30796684
+1.3.6.1.2.1.31.1.1.1.12.29|70|28288579
+1.3.6.1.2.1.31.1.1.1.12.30|70|32847195
+1.3.6.1.2.1.31.1.1.1.12.31|70|36223409
+1.3.6.1.2.1.31.1.1.1.12.32|70|30670113
+1.3.6.1.2.1.31.1.1.1.12.33|70|33932618
+1.3.6.1.2.1.31.1.1.1.12.34|70|24343858
+1.3.6.1.2.1.31.1.1.1.12.35|70|22151107
+1.3.6.1.2.1.31.1.1.1.12.36|70|27562852
+1.3.6.1.2.1.31.1.1.1.12.37|70|0
+1.3.6.1.2.1.31.1.1.1.12.38|70|32211071
+1.3.6.1.2.1.31.1.1.1.12.39|70|19980791
+1.3.6.1.2.1.31.1.1.1.12.40|70|27065468
+1.3.6.1.2.1.31.1.1.1.12.41|70|17287849
+1.3.6.1.2.1.31.1.1.1.12.42|70|3864155
+1.3.6.1.2.1.31.1.1.1.12.43|70|2904852
+1.3.6.1.2.1.31.1.1.1.12.44|70|2751119
+1.3.6.1.2.1.31.1.1.1.12.45|70|3183335
+1.3.6.1.2.1.31.1.1.1.12.46|70|2259584
+1.3.6.1.2.1.31.1.1.1.12.47|70|32851084
+1.3.6.1.2.1.31.1.1.1.12.48|70|2223215
+1.3.6.1.2.1.31.1.1.1.12.65|70|0
+1.3.6.1.2.1.31.1.1.1.12.66|70|0
+1.3.6.1.2.1.31.1.1.1.12.67|70|0
+1.3.6.1.2.1.31.1.1.1.12.68|70|0
+1.3.6.1.2.1.31.1.1.1.12.69|70|35074285
+1.3.6.1.2.1.31.1.1.1.12.4095|70|0
+1.3.6.1.2.1.31.1.1.1.12.4096|70|0
+1.3.6.1.2.1.31.1.1.1.12.5639|70|0
+1.3.6.1.2.1.31.1.1.1.12.16385|70|0
+1.3.6.1.2.1.31.1.1.1.13.1|70|0
+1.3.6.1.2.1.31.1.1.1.13.2|70|0
+1.3.6.1.2.1.31.1.1.1.13.3|70|26586
+1.3.6.1.2.1.31.1.1.1.13.4|70|0
+1.3.6.1.2.1.31.1.1.1.13.5|70|7294
+1.3.6.1.2.1.31.1.1.1.13.6|70|3383
+1.3.6.1.2.1.31.1.1.1.13.7|70|741
+1.3.6.1.2.1.31.1.1.1.13.8|70|6973
+1.3.6.1.2.1.31.1.1.1.13.9|70|7922
+1.3.6.1.2.1.31.1.1.1.13.10|70|3644
+1.3.6.1.2.1.31.1.1.1.13.11|70|8572
+1.3.6.1.2.1.31.1.1.1.13.12|70|8083
+1.3.6.1.2.1.31.1.1.1.13.13|70|0
+1.3.6.1.2.1.31.1.1.1.13.14|70|0
+1.3.6.1.2.1.31.1.1.1.13.15|70|3869
+1.3.6.1.2.1.31.1.1.1.13.16|70|8153
+1.3.6.1.2.1.31.1.1.1.13.17|70|7839
+1.3.6.1.2.1.31.1.1.1.13.18|70|2001
+1.3.6.1.2.1.31.1.1.1.13.19|70|7687
+1.3.6.1.2.1.31.1.1.1.13.20|70|8013
+1.3.6.1.2.1.31.1.1.1.13.21|70|8106
+1.3.6.1.2.1.31.1.1.1.13.22|70|8192
+1.3.6.1.2.1.31.1.1.1.13.23|70|7659
+1.3.6.1.2.1.31.1.1.1.13.24|70|7780
+1.3.6.1.2.1.31.1.1.1.13.25|70|8194
+1.3.6.1.2.1.31.1.1.1.13.26|70|12933
+1.3.6.1.2.1.31.1.1.1.13.27|70|8688
+1.3.6.1.2.1.31.1.1.1.13.28|70|8007
+1.3.6.1.2.1.31.1.1.1.13.29|70|7219
+1.3.6.1.2.1.31.1.1.1.13.30|70|7131
+1.3.6.1.2.1.31.1.1.1.13.31|70|7295
+1.3.6.1.2.1.31.1.1.1.13.32|70|3281
+1.3.6.1.2.1.31.1.1.1.13.33|70|7530
+1.3.6.1.2.1.31.1.1.1.13.34|70|7780
+1.3.6.1.2.1.31.1.1.1.13.35|70|7703
+1.3.6.1.2.1.31.1.1.1.13.36|70|3434
+1.3.6.1.2.1.31.1.1.1.13.37|70|0
+1.3.6.1.2.1.31.1.1.1.13.38|70|7369
+1.3.6.1.2.1.31.1.1.1.13.39|70|1102
+1.3.6.1.2.1.31.1.1.1.13.40|70|2065
+1.3.6.1.2.1.31.1.1.1.13.41|70|505
+1.3.6.1.2.1.31.1.1.1.13.42|70|42
+1.3.6.1.2.1.31.1.1.1.13.43|70|14
+1.3.6.1.2.1.31.1.1.1.13.44|70|246
+1.3.6.1.2.1.31.1.1.1.13.45|70|9
+1.3.6.1.2.1.31.1.1.1.13.46|70|301
+1.3.6.1.2.1.31.1.1.1.13.47|70|2343
+1.3.6.1.2.1.31.1.1.1.13.48|70|1
+1.3.6.1.2.1.31.1.1.1.13.65|70|0
+1.3.6.1.2.1.31.1.1.1.13.66|70|0
+1.3.6.1.2.1.31.1.1.1.13.67|70|0
+1.3.6.1.2.1.31.1.1.1.13.68|70|0
+1.3.6.1.2.1.31.1.1.1.13.69|70|2344
+1.3.6.1.2.1.31.1.1.1.13.4095|70|636355
+1.3.6.1.2.1.31.1.1.1.13.4096|70|0
+1.3.6.1.2.1.31.1.1.1.13.5639|70|0
+1.3.6.1.2.1.31.1.1.1.13.16385|70|0
+1.3.6.1.2.1.31.1.1.1.14.1|2|1
+1.3.6.1.2.1.31.1.1.1.14.2|2|1
+1.3.6.1.2.1.31.1.1.1.14.3|2|1
+1.3.6.1.2.1.31.1.1.1.14.4|2|1
+1.3.6.1.2.1.31.1.1.1.14.5|2|1
+1.3.6.1.2.1.31.1.1.1.14.6|2|1
+1.3.6.1.2.1.31.1.1.1.14.7|2|1
+1.3.6.1.2.1.31.1.1.1.14.8|2|1
+1.3.6.1.2.1.31.1.1.1.14.9|2|1
+1.3.6.1.2.1.31.1.1.1.14.10|2|1
+1.3.6.1.2.1.31.1.1.1.14.11|2|1
+1.3.6.1.2.1.31.1.1.1.14.12|2|1
+1.3.6.1.2.1.31.1.1.1.14.13|2|1
+1.3.6.1.2.1.31.1.1.1.14.14|2|1
+1.3.6.1.2.1.31.1.1.1.14.15|2|1
+1.3.6.1.2.1.31.1.1.1.14.16|2|1
+1.3.6.1.2.1.31.1.1.1.14.17|2|1
+1.3.6.1.2.1.31.1.1.1.14.18|2|1
+1.3.6.1.2.1.31.1.1.1.14.19|2|1
+1.3.6.1.2.1.31.1.1.1.14.20|2|1
+1.3.6.1.2.1.31.1.1.1.14.21|2|1
+1.3.6.1.2.1.31.1.1.1.14.22|2|1
+1.3.6.1.2.1.31.1.1.1.14.23|2|1
+1.3.6.1.2.1.31.1.1.1.14.24|2|1
+1.3.6.1.2.1.31.1.1.1.14.25|2|1
+1.3.6.1.2.1.31.1.1.1.14.26|2|1
+1.3.6.1.2.1.31.1.1.1.14.27|2|1
+1.3.6.1.2.1.31.1.1.1.14.28|2|1
+1.3.6.1.2.1.31.1.1.1.14.29|2|1
+1.3.6.1.2.1.31.1.1.1.14.30|2|1
+1.3.6.1.2.1.31.1.1.1.14.31|2|1
+1.3.6.1.2.1.31.1.1.1.14.32|2|1
+1.3.6.1.2.1.31.1.1.1.14.33|2|1
+1.3.6.1.2.1.31.1.1.1.14.34|2|1
+1.3.6.1.2.1.31.1.1.1.14.35|2|1
+1.3.6.1.2.1.31.1.1.1.14.36|2|1
+1.3.6.1.2.1.31.1.1.1.14.37|2|1
+1.3.6.1.2.1.31.1.1.1.14.38|2|1
+1.3.6.1.2.1.31.1.1.1.14.39|2|1
+1.3.6.1.2.1.31.1.1.1.14.40|2|1
+1.3.6.1.2.1.31.1.1.1.14.41|2|1
+1.3.6.1.2.1.31.1.1.1.14.42|2|1
+1.3.6.1.2.1.31.1.1.1.14.43|2|1
+1.3.6.1.2.1.31.1.1.1.14.44|2|1
+1.3.6.1.2.1.31.1.1.1.14.45|2|1
+1.3.6.1.2.1.31.1.1.1.14.46|2|1
+1.3.6.1.2.1.31.1.1.1.14.47|2|1
+1.3.6.1.2.1.31.1.1.1.14.48|2|1
+1.3.6.1.2.1.31.1.1.1.14.65|2|1
+1.3.6.1.2.1.31.1.1.1.14.66|2|1
+1.3.6.1.2.1.31.1.1.1.14.67|2|1
+1.3.6.1.2.1.31.1.1.1.14.68|2|1
+1.3.6.1.2.1.31.1.1.1.14.69|2|1
+1.3.6.1.2.1.31.1.1.1.14.4095|2|1
+1.3.6.1.2.1.31.1.1.1.14.4096|2|1
+1.3.6.1.2.1.31.1.1.1.14.5639|2|1
+1.3.6.1.2.1.31.1.1.1.14.16385|2|1
+1.3.6.1.2.1.31.1.1.1.15.1|66|10000
+1.3.6.1.2.1.31.1.1.1.15.2|66|10000
+1.3.6.1.2.1.31.1.1.1.15.3|66|10000
+1.3.6.1.2.1.31.1.1.1.15.4|66|10000
+1.3.6.1.2.1.31.1.1.1.15.5|66|10000
+1.3.6.1.2.1.31.1.1.1.15.6|66|10000
+1.3.6.1.2.1.31.1.1.1.15.7|66|10000
+1.3.6.1.2.1.31.1.1.1.15.8|66|10000
+1.3.6.1.2.1.31.1.1.1.15.9|66|10000
+1.3.6.1.2.1.31.1.1.1.15.10|66|10000
+1.3.6.1.2.1.31.1.1.1.15.11|66|10000
+1.3.6.1.2.1.31.1.1.1.15.12|66|10000
+1.3.6.1.2.1.31.1.1.1.15.13|66|10000
+1.3.6.1.2.1.31.1.1.1.15.14|66|10000
+1.3.6.1.2.1.31.1.1.1.15.15|66|10000
+1.3.6.1.2.1.31.1.1.1.15.16|66|10000
+1.3.6.1.2.1.31.1.1.1.15.17|66|10000
+1.3.6.1.2.1.31.1.1.1.15.18|66|10000
+1.3.6.1.2.1.31.1.1.1.15.19|66|10000
+1.3.6.1.2.1.31.1.1.1.15.20|66|10000
+1.3.6.1.2.1.31.1.1.1.15.21|66|10000
+1.3.6.1.2.1.31.1.1.1.15.22|66|10000
+1.3.6.1.2.1.31.1.1.1.15.23|66|10000
+1.3.6.1.2.1.31.1.1.1.15.24|66|10000
+1.3.6.1.2.1.31.1.1.1.15.25|66|10000
+1.3.6.1.2.1.31.1.1.1.15.26|66|10000
+1.3.6.1.2.1.31.1.1.1.15.27|66|10000
+1.3.6.1.2.1.31.1.1.1.15.28|66|10000
+1.3.6.1.2.1.31.1.1.1.15.29|66|10000
+1.3.6.1.2.1.31.1.1.1.15.30|66|10000
+1.3.6.1.2.1.31.1.1.1.15.31|66|10000
+1.3.6.1.2.1.31.1.1.1.15.32|66|10000
+1.3.6.1.2.1.31.1.1.1.15.33|66|10000
+1.3.6.1.2.1.31.1.1.1.15.34|66|10000
+1.3.6.1.2.1.31.1.1.1.15.35|66|10000
+1.3.6.1.2.1.31.1.1.1.15.36|66|10000
+1.3.6.1.2.1.31.1.1.1.15.37|66|10000
+1.3.6.1.2.1.31.1.1.1.15.38|66|10000
+1.3.6.1.2.1.31.1.1.1.15.39|66|10000
+1.3.6.1.2.1.31.1.1.1.15.40|66|10000
+1.3.6.1.2.1.31.1.1.1.15.41|66|10000
+1.3.6.1.2.1.31.1.1.1.15.42|66|10000
+1.3.6.1.2.1.31.1.1.1.15.43|66|10000
+1.3.6.1.2.1.31.1.1.1.15.44|66|10000
+1.3.6.1.2.1.31.1.1.1.15.45|66|10000
+1.3.6.1.2.1.31.1.1.1.15.46|66|10000
+1.3.6.1.2.1.31.1.1.1.15.47|66|10000
+1.3.6.1.2.1.31.1.1.1.15.48|66|10000
+1.3.6.1.2.1.31.1.1.1.15.65|66|40000
+1.3.6.1.2.1.31.1.1.1.15.66|66|40000
+1.3.6.1.2.1.31.1.1.1.15.67|66|40000
+1.3.6.1.2.1.31.1.1.1.15.68|66|40000
+1.3.6.1.2.1.31.1.1.1.15.69|66|20000
+1.3.6.1.2.1.31.1.1.1.15.4095|66|1000
+1.3.6.1.2.1.31.1.1.1.15.4096|66|10000
+1.3.6.1.2.1.31.1.1.1.15.5639|66|1000
+1.3.6.1.2.1.31.1.1.1.15.16385|66|8000
+1.3.6.1.2.1.31.1.1.1.16.1|2|2
+1.3.6.1.2.1.31.1.1.1.16.2|2|2
+1.3.6.1.2.1.31.1.1.1.16.3|2|2
+1.3.6.1.2.1.31.1.1.1.16.4|2|2
+1.3.6.1.2.1.31.1.1.1.16.5|2|2
+1.3.6.1.2.1.31.1.1.1.16.6|2|2
+1.3.6.1.2.1.31.1.1.1.16.7|2|2
+1.3.6.1.2.1.31.1.1.1.16.8|2|2
+1.3.6.1.2.1.31.1.1.1.16.9|2|2
+1.3.6.1.2.1.31.1.1.1.16.10|2|2
+1.3.6.1.2.1.31.1.1.1.16.11|2|2
+1.3.6.1.2.1.31.1.1.1.16.12|2|2
+1.3.6.1.2.1.31.1.1.1.16.13|2|2
+1.3.6.1.2.1.31.1.1.1.16.14|2|2
+1.3.6.1.2.1.31.1.1.1.16.15|2|2
+1.3.6.1.2.1.31.1.1.1.16.16|2|2
+1.3.6.1.2.1.31.1.1.1.16.17|2|2
+1.3.6.1.2.1.31.1.1.1.16.18|2|2
+1.3.6.1.2.1.31.1.1.1.16.19|2|2
+1.3.6.1.2.1.31.1.1.1.16.20|2|2
+1.3.6.1.2.1.31.1.1.1.16.21|2|2
+1.3.6.1.2.1.31.1.1.1.16.22|2|2
+1.3.6.1.2.1.31.1.1.1.16.23|2|2
+1.3.6.1.2.1.31.1.1.1.16.24|2|2
+1.3.6.1.2.1.31.1.1.1.16.25|2|2
+1.3.6.1.2.1.31.1.1.1.16.26|2|2
+1.3.6.1.2.1.31.1.1.1.16.27|2|2
+1.3.6.1.2.1.31.1.1.1.16.28|2|2
+1.3.6.1.2.1.31.1.1.1.16.29|2|2
+1.3.6.1.2.1.31.1.1.1.16.30|2|2
+1.3.6.1.2.1.31.1.1.1.16.31|2|2
+1.3.6.1.2.1.31.1.1.1.16.32|2|2
+1.3.6.1.2.1.31.1.1.1.16.33|2|2
+1.3.6.1.2.1.31.1.1.1.16.34|2|2
+1.3.6.1.2.1.31.1.1.1.16.35|2|2
+1.3.6.1.2.1.31.1.1.1.16.36|2|2
+1.3.6.1.2.1.31.1.1.1.16.37|2|2
+1.3.6.1.2.1.31.1.1.1.16.38|2|2
+1.3.6.1.2.1.31.1.1.1.16.39|2|2
+1.3.6.1.2.1.31.1.1.1.16.40|2|2
+1.3.6.1.2.1.31.1.1.1.16.41|2|2
+1.3.6.1.2.1.31.1.1.1.16.42|2|2
+1.3.6.1.2.1.31.1.1.1.16.43|2|2
+1.3.6.1.2.1.31.1.1.1.16.44|2|2
+1.3.6.1.2.1.31.1.1.1.16.45|2|2
+1.3.6.1.2.1.31.1.1.1.16.46|2|2
+1.3.6.1.2.1.31.1.1.1.16.47|2|2
+1.3.6.1.2.1.31.1.1.1.16.48|2|2
+1.3.6.1.2.1.31.1.1.1.16.65|2|2
+1.3.6.1.2.1.31.1.1.1.16.66|2|2
+1.3.6.1.2.1.31.1.1.1.16.67|2|2
+1.3.6.1.2.1.31.1.1.1.16.68|2|2
+1.3.6.1.2.1.31.1.1.1.16.69|2|2
+1.3.6.1.2.1.31.1.1.1.16.4095|2|2
+1.3.6.1.2.1.31.1.1.1.16.4096|2|2
+1.3.6.1.2.1.31.1.1.1.16.5639|2|2
+1.3.6.1.2.1.31.1.1.1.16.16385|2|2
+1.3.6.1.2.1.31.1.1.1.17.1|2|1
+1.3.6.1.2.1.31.1.1.1.17.2|2|1
+1.3.6.1.2.1.31.1.1.1.17.3|2|1
+1.3.6.1.2.1.31.1.1.1.17.4|2|1
+1.3.6.1.2.1.31.1.1.1.17.5|2|1
+1.3.6.1.2.1.31.1.1.1.17.6|2|1
+1.3.6.1.2.1.31.1.1.1.17.7|2|1
+1.3.6.1.2.1.31.1.1.1.17.8|2|1
+1.3.6.1.2.1.31.1.1.1.17.9|2|1
+1.3.6.1.2.1.31.1.1.1.17.10|2|1
+1.3.6.1.2.1.31.1.1.1.17.11|2|1
+1.3.6.1.2.1.31.1.1.1.17.12|2|1
+1.3.6.1.2.1.31.1.1.1.17.13|2|1
+1.3.6.1.2.1.31.1.1.1.17.14|2|1
+1.3.6.1.2.1.31.1.1.1.17.15|2|1
+1.3.6.1.2.1.31.1.1.1.17.16|2|1
+1.3.6.1.2.1.31.1.1.1.17.17|2|1
+1.3.6.1.2.1.31.1.1.1.17.18|2|1
+1.3.6.1.2.1.31.1.1.1.17.19|2|1
+1.3.6.1.2.1.31.1.1.1.17.20|2|1
+1.3.6.1.2.1.31.1.1.1.17.21|2|1
+1.3.6.1.2.1.31.1.1.1.17.22|2|1
+1.3.6.1.2.1.31.1.1.1.17.23|2|1
+1.3.6.1.2.1.31.1.1.1.17.24|2|1
+1.3.6.1.2.1.31.1.1.1.17.25|2|1
+1.3.6.1.2.1.31.1.1.1.17.26|2|1
+1.3.6.1.2.1.31.1.1.1.17.27|2|1
+1.3.6.1.2.1.31.1.1.1.17.28|2|1
+1.3.6.1.2.1.31.1.1.1.17.29|2|1
+1.3.6.1.2.1.31.1.1.1.17.30|2|1
+1.3.6.1.2.1.31.1.1.1.17.31|2|1
+1.3.6.1.2.1.31.1.1.1.17.32|2|1
+1.3.6.1.2.1.31.1.1.1.17.33|2|1
+1.3.6.1.2.1.31.1.1.1.17.34|2|1
+1.3.6.1.2.1.31.1.1.1.17.35|2|1
+1.3.6.1.2.1.31.1.1.1.17.36|2|1
+1.3.6.1.2.1.31.1.1.1.17.37|2|1
+1.3.6.1.2.1.31.1.1.1.17.38|2|1
+1.3.6.1.2.1.31.1.1.1.17.39|2|1
+1.3.6.1.2.1.31.1.1.1.17.40|2|1
+1.3.6.1.2.1.31.1.1.1.17.41|2|1
+1.3.6.1.2.1.31.1.1.1.17.42|2|1
+1.3.6.1.2.1.31.1.1.1.17.43|2|1
+1.3.6.1.2.1.31.1.1.1.17.44|2|1
+1.3.6.1.2.1.31.1.1.1.17.45|2|1
+1.3.6.1.2.1.31.1.1.1.17.46|2|1
+1.3.6.1.2.1.31.1.1.1.17.47|2|1
+1.3.6.1.2.1.31.1.1.1.17.48|2|1
+1.3.6.1.2.1.31.1.1.1.17.65|2|1
+1.3.6.1.2.1.31.1.1.1.17.66|2|1
+1.3.6.1.2.1.31.1.1.1.17.67|2|1
+1.3.6.1.2.1.31.1.1.1.17.68|2|1
+1.3.6.1.2.1.31.1.1.1.17.69|2|1
+1.3.6.1.2.1.31.1.1.1.17.4095|2|1
+1.3.6.1.2.1.31.1.1.1.17.4096|2|2
+1.3.6.1.2.1.31.1.1.1.17.5639|2|1
+1.3.6.1.2.1.31.1.1.1.17.16385|2|2
+1.3.6.1.2.1.31.1.1.1.18.1|4|
+1.3.6.1.2.1.31.1.1.1.18.2|4|
+1.3.6.1.2.1.31.1.1.1.18.3|4|
+1.3.6.1.2.1.31.1.1.1.18.4|4|
+1.3.6.1.2.1.31.1.1.1.18.5|4|
+1.3.6.1.2.1.31.1.1.1.18.6|4|
+1.3.6.1.2.1.31.1.1.1.18.7|4|
+1.3.6.1.2.1.31.1.1.1.18.8|4|
+1.3.6.1.2.1.31.1.1.1.18.9|4|
+1.3.6.1.2.1.31.1.1.1.18.10|4|
+1.3.6.1.2.1.31.1.1.1.18.11|4|
+1.3.6.1.2.1.31.1.1.1.18.12|4|
+1.3.6.1.2.1.31.1.1.1.18.13|4|
+1.3.6.1.2.1.31.1.1.1.18.14|4|
+1.3.6.1.2.1.31.1.1.1.18.15|4|
+1.3.6.1.2.1.31.1.1.1.18.16|4|
+1.3.6.1.2.1.31.1.1.1.18.17|4|
+1.3.6.1.2.1.31.1.1.1.18.18|4|
+1.3.6.1.2.1.31.1.1.1.18.19|4|
+1.3.6.1.2.1.31.1.1.1.18.20|4|
+1.3.6.1.2.1.31.1.1.1.18.21|4|
+1.3.6.1.2.1.31.1.1.1.18.22|4|
+1.3.6.1.2.1.31.1.1.1.18.23|4|
+1.3.6.1.2.1.31.1.1.1.18.24|4|
+1.3.6.1.2.1.31.1.1.1.18.25|4|
+1.3.6.1.2.1.31.1.1.1.18.26|4|
+1.3.6.1.2.1.31.1.1.1.18.27|4|
+1.3.6.1.2.1.31.1.1.1.18.28|4|
+1.3.6.1.2.1.31.1.1.1.18.29|4|
+1.3.6.1.2.1.31.1.1.1.18.30|4|
+1.3.6.1.2.1.31.1.1.1.18.31|4|
+1.3.6.1.2.1.31.1.1.1.18.32|4|
+1.3.6.1.2.1.31.1.1.1.18.33|4|
+1.3.6.1.2.1.31.1.1.1.18.34|4|
+1.3.6.1.2.1.31.1.1.1.18.35|4|
+1.3.6.1.2.1.31.1.1.1.18.36|4|
+1.3.6.1.2.1.31.1.1.1.18.37|4|
+1.3.6.1.2.1.31.1.1.1.18.38|4|
+1.3.6.1.2.1.31.1.1.1.18.39|4|
+1.3.6.1.2.1.31.1.1.1.18.40|4|
+1.3.6.1.2.1.31.1.1.1.18.41|4|
+1.3.6.1.2.1.31.1.1.1.18.42|4|
+1.3.6.1.2.1.31.1.1.1.18.43|4|
+1.3.6.1.2.1.31.1.1.1.18.44|4|
+1.3.6.1.2.1.31.1.1.1.18.45|4|
+1.3.6.1.2.1.31.1.1.1.18.46|4|
+1.3.6.1.2.1.31.1.1.1.18.47|4|
+1.3.6.1.2.1.31.1.1.1.18.48|4|
+1.3.6.1.2.1.31.1.1.1.18.65|4|
+1.3.6.1.2.1.31.1.1.1.18.66|4|
+1.3.6.1.2.1.31.1.1.1.18.67|4|
+1.3.6.1.2.1.31.1.1.1.18.68|4|
+1.3.6.1.2.1.31.1.1.1.18.69|4|
+1.3.6.1.2.1.31.1.1.1.18.4095|4|IP management Console
+1.3.6.1.2.1.31.1.1.1.18.4096|4|
+1.3.6.1.2.1.31.1.1.1.18.5639|4|
+1.3.6.1.2.1.31.1.1.1.18.16385|4|
+1.3.6.1.2.1.31.1.1.1.19.1|67|0
+1.3.6.1.2.1.31.1.1.1.19.2|67|0
+1.3.6.1.2.1.31.1.1.1.19.3|67|0
+1.3.6.1.2.1.31.1.1.1.19.4|67|0
+1.3.6.1.2.1.31.1.1.1.19.5|67|0
+1.3.6.1.2.1.31.1.1.1.19.6|67|0
+1.3.6.1.2.1.31.1.1.1.19.7|67|0
+1.3.6.1.2.1.31.1.1.1.19.8|67|0
+1.3.6.1.2.1.31.1.1.1.19.9|67|0
+1.3.6.1.2.1.31.1.1.1.19.10|67|0
+1.3.6.1.2.1.31.1.1.1.19.11|67|0
+1.3.6.1.2.1.31.1.1.1.19.12|67|0
+1.3.6.1.2.1.31.1.1.1.19.13|67|0
+1.3.6.1.2.1.31.1.1.1.19.14|67|0
+1.3.6.1.2.1.31.1.1.1.19.15|67|0
+1.3.6.1.2.1.31.1.1.1.19.16|67|0
+1.3.6.1.2.1.31.1.1.1.19.17|67|0
+1.3.6.1.2.1.31.1.1.1.19.18|67|0
+1.3.6.1.2.1.31.1.1.1.19.19|67|0
+1.3.6.1.2.1.31.1.1.1.19.20|67|0
+1.3.6.1.2.1.31.1.1.1.19.21|67|0
+1.3.6.1.2.1.31.1.1.1.19.22|67|0
+1.3.6.1.2.1.31.1.1.1.19.23|67|0
+1.3.6.1.2.1.31.1.1.1.19.24|67|0
+1.3.6.1.2.1.31.1.1.1.19.25|67|0
+1.3.6.1.2.1.31.1.1.1.19.26|67|0
+1.3.6.1.2.1.31.1.1.1.19.27|67|0
+1.3.6.1.2.1.31.1.1.1.19.28|67|0
+1.3.6.1.2.1.31.1.1.1.19.29|67|0
+1.3.6.1.2.1.31.1.1.1.19.30|67|0
+1.3.6.1.2.1.31.1.1.1.19.31|67|0
+1.3.6.1.2.1.31.1.1.1.19.32|67|0
+1.3.6.1.2.1.31.1.1.1.19.33|67|0
+1.3.6.1.2.1.31.1.1.1.19.34|67|0
+1.3.6.1.2.1.31.1.1.1.19.35|67|0
+1.3.6.1.2.1.31.1.1.1.19.36|67|0
+1.3.6.1.2.1.31.1.1.1.19.37|67|0
+1.3.6.1.2.1.31.1.1.1.19.38|67|0
+1.3.6.1.2.1.31.1.1.1.19.39|67|0
+1.3.6.1.2.1.31.1.1.1.19.40|67|0
+1.3.6.1.2.1.31.1.1.1.19.41|67|0
+1.3.6.1.2.1.31.1.1.1.19.42|67|0
+1.3.6.1.2.1.31.1.1.1.19.43|67|0
+1.3.6.1.2.1.31.1.1.1.19.44|67|0
+1.3.6.1.2.1.31.1.1.1.19.45|67|0
+1.3.6.1.2.1.31.1.1.1.19.46|67|0
+1.3.6.1.2.1.31.1.1.1.19.47|67|0
+1.3.6.1.2.1.31.1.1.1.19.48|67|0
+1.3.6.1.2.1.31.1.1.1.19.65|67|0
+1.3.6.1.2.1.31.1.1.1.19.66|67|0
+1.3.6.1.2.1.31.1.1.1.19.67|67|0
+1.3.6.1.2.1.31.1.1.1.19.68|67|0
+1.3.6.1.2.1.31.1.1.1.19.69|67|0
+1.3.6.1.2.1.31.1.1.1.19.4095|67|0
+1.3.6.1.2.1.31.1.1.1.19.4096|67|0
+1.3.6.1.2.1.31.1.1.1.19.5639|67|0
+1.3.6.1.2.1.31.1.1.1.19.16385|67|0
+1.3.6.1.2.1.31.1.2.1.3.0.1|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.2|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.3|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.4|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.5|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.6|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.7|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.8|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.9|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.10|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.11|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.12|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.13|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.14|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.15|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.16|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.17|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.18|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.19|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.20|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.21|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.22|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.23|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.24|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.25|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.26|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.27|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.28|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.29|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.30|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.31|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.32|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.33|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.34|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.35|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.36|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.37|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.38|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.39|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.40|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.41|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.42|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.43|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.44|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.45|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.46|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.47|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.48|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.65|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.66|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.67|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.68|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.69|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.4095|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.4096|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.5639|2|1
+1.3.6.1.2.1.31.1.2.1.3.0.16385|2|1
+1.3.6.1.2.1.31.1.2.1.3.1.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.2.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.3.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.4.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.5.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.6.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.7.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.8.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.9.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.10.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.11.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.12.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.13.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.14.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.15.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.16.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.17.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.18.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.19.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.20.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.21.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.22.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.23.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.24.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.25.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.26.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.27.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.28.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.29.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.30.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.31.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.32.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.33.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.34.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.35.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.36.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.37.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.38.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.39.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.40.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.41.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.42.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.43.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.44.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.45.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.46.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.47.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.48.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.65.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.66.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.67.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.68.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.69.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.4095.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.4096.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.5639.0|2|1
+1.3.6.1.2.1.31.1.2.1.3.16385.0|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|slot0
+1.3.6.1.2.1.47.1.1.1.1.2.3|4|RG-S6220-48XS4QXS
+1.3.6.1.2.1.47.1.1.1.1.2.4|4|
+1.3.6.1.2.1.47.1.1.1.1.2.5|4|
+1.3.6.1.2.1.47.1.1.1.1.2.6|4|
+1.3.6.1.2.1.47.1.1.1.1.2.7|4|
+1.3.6.1.2.1.47.1.1.1.1.2.8|4|
+1.3.6.1.2.1.47.1.1.1.1.2.9|4|
+1.3.6.1.2.1.47.1.1.1.1.2.10|4|
+1.3.6.1.2.1.47.1.1.1.1.2.11|4|
+1.3.6.1.2.1.47.1.1.1.1.2.12|4|
+1.3.6.1.2.1.47.1.1.1.1.2.13|4|
+1.3.6.1.2.1.47.1.1.1.1.2.14|4|
+1.3.6.1.2.1.47.1.1.1.1.2.15|4|
+1.3.6.1.2.1.47.1.1.1.1.2.16|4|
+1.3.6.1.2.1.47.1.1.1.1.2.17|4|
+1.3.6.1.2.1.47.1.1.1.1.2.18|4|
+1.3.6.1.2.1.47.1.1.1.1.2.19|4|
+1.3.6.1.2.1.47.1.1.1.1.2.20|4|
+1.3.6.1.2.1.47.1.1.1.1.2.21|4|
+1.3.6.1.2.1.47.1.1.1.1.2.22|4|
+1.3.6.1.2.1.47.1.1.1.1.2.23|4|
+1.3.6.1.2.1.47.1.1.1.1.2.24|4|
+1.3.6.1.2.1.47.1.1.1.1.2.25|4|
+1.3.6.1.2.1.47.1.1.1.1.2.26|4|
+1.3.6.1.2.1.47.1.1.1.1.2.27|4|
+1.3.6.1.2.1.47.1.1.1.1.2.28|4|
+1.3.6.1.2.1.47.1.1.1.1.2.29|4|
+1.3.6.1.2.1.47.1.1.1.1.2.30|4|
+1.3.6.1.2.1.47.1.1.1.1.2.31|4|
+1.3.6.1.2.1.47.1.1.1.1.2.32|4|
+1.3.6.1.2.1.47.1.1.1.1.2.33|4|
+1.3.6.1.2.1.47.1.1.1.1.2.34|4|
+1.3.6.1.2.1.47.1.1.1.1.2.35|4|
+1.3.6.1.2.1.47.1.1.1.1.2.36|4|
+1.3.6.1.2.1.47.1.1.1.1.2.37|4|
+1.3.6.1.2.1.47.1.1.1.1.2.38|4|
+1.3.6.1.2.1.47.1.1.1.1.2.39|4|
+1.3.6.1.2.1.47.1.1.1.1.2.40|4|
+1.3.6.1.2.1.47.1.1.1.1.2.41|4|
+1.3.6.1.2.1.47.1.1.1.1.2.42|4|
+1.3.6.1.2.1.47.1.1.1.1.2.43|4|
+1.3.6.1.2.1.47.1.1.1.1.2.44|4|
+1.3.6.1.2.1.47.1.1.1.1.2.45|4|
+1.3.6.1.2.1.47.1.1.1.1.2.46|4|
+1.3.6.1.2.1.47.1.1.1.1.2.47|4|
+1.3.6.1.2.1.47.1.1.1.1.2.48|4|
+1.3.6.1.2.1.47.1.1.1.1.2.49|4|
+1.3.6.1.2.1.47.1.1.1.1.2.50|4|
+1.3.6.1.2.1.47.1.1.1.1.2.51|4|
+1.3.6.1.2.1.47.1.1.1.1.2.52|4|
+1.3.6.1.2.1.47.1.1.1.1.2.53|4|
+1.3.6.1.2.1.47.1.1.1.1.2.54|4|
+1.3.6.1.2.1.47.1.1.1.1.2.55|4|
+1.3.6.1.2.1.47.1.1.1.1.2.56|4|
+1.3.6.1.2.1.47.1.1.1.1.2.57|4|
+1.3.6.1.2.1.47.1.1.1.1.2.58|4|
+1.3.6.1.2.1.47.1.1.1.1.2.59|4|
+1.3.6.1.2.1.47.1.1.1.1.2.60|4|
+1.3.6.1.2.1.47.1.1.1.1.2.61|4|
+1.3.6.1.2.1.47.1.1.1.1.2.62|4|
+1.3.6.1.2.1.47.1.1.1.1.2.63|4|
+1.3.6.1.2.1.47.1.1.1.1.2.64|4|
+1.3.6.1.2.1.47.1.1.1.1.2.65|4|
+1.3.6.1.2.1.47.1.1.1.1.2.66|4|
+1.3.6.1.2.1.47.1.1.1.1.2.67|4|
+1.3.6.1.2.1.47.1.1.1.1.2.68|4|
+1.3.6.1.2.1.47.1.1.1.1.2.69|4|
+1.3.6.1.2.1.47.1.1.1.1.2.70|4|
+1.3.6.1.2.1.47.1.1.1.1.2.71|4|
+1.3.6.1.2.1.47.1.1.1.1.3.1|6|1.3.6.1.4.1.4881.1.1.10.1.150.3.48
+1.3.6.1.2.1.47.1.1.1.1.3.2|6|1.3.6.1.4.1.4881.1.1.10.1.150.5.4
+1.3.6.1.2.1.47.1.1.1.1.3.3|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.4|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.5|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.6|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.7|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.8|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.9|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.10|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.11|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.12|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.13|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.14|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.15|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.16|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.17|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.18|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.19|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.20|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.21|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.22|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.23|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.24|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.25|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.26|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.27|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.28|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.29|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.30|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.31|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.32|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.33|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.34|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.35|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.36|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.37|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.38|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.39|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.40|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.41|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.42|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.43|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.44|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.45|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.46|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.47|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.48|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.49|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.50|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.51|6|1.3.6.1.4.1.4881.1.1.10.1.150.10.5
+1.3.6.1.2.1.47.1.1.1.1.3.52|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.53|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.54|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.55|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.56|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.57|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.58|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.59|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.60|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.61|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.62|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.63|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.64|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.65|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.66|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.67|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.68|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.69|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.70|6|1.3.6.1.4.1.4881.1.1.10.1.150
+1.3.6.1.2.1.47.1.1.1.1.3.71|6|1.3.6.1.4.1.4881.1.1.10.1.150
+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|2
+1.3.6.1.2.1.47.1.1.1.1.4.5|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.6|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.7|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.8|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.9|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.10|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.11|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.12|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.13|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.14|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.15|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.16|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.17|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.18|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.19|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.20|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.21|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.22|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.23|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.24|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.25|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.26|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.27|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.28|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.29|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.30|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.31|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.32|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.33|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.34|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.35|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.36|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.37|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.38|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.39|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.40|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.41|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.42|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.43|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.44|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.45|2|2
+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|2
+1.3.6.1.2.1.47.1.1.1.1.4.48|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.49|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.50|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.51|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.52|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.53|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.54|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.55|2|2
+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|2
+1.3.6.1.2.1.47.1.1.1.1.4.58|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.59|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.60|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.61|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.62|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.63|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.64|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.65|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.66|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.67|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.68|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.69|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.70|2|2
+1.3.6.1.2.1.47.1.1.1.1.4.71|2|2
+1.3.6.1.2.1.47.1.1.1.1.5.1|2|3
+1.3.6.1.2.1.47.1.1.1.1.5.2|2|5
+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|10
+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.38|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.39|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.40|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.41|2|10
+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.43|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.44|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.45|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.46|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.47|2|10
+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.49|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.50|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.51|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.53|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.54|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.55|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.56|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.57|2|10
+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.5.62|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.63|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.64|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.65|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.66|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.67|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.68|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.69|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.70|2|10
+1.3.6.1.2.1.47.1.1.1.1.5.71|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|0
+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|33
+1.3.6.1.2.1.47.1.1.1.1.6.37|2|34
+1.3.6.1.2.1.47.1.1.1.1.6.38|2|35
+1.3.6.1.2.1.47.1.1.1.1.6.39|2|36
+1.3.6.1.2.1.47.1.1.1.1.6.40|2|37
+1.3.6.1.2.1.47.1.1.1.1.6.41|2|38
+1.3.6.1.2.1.47.1.1.1.1.6.42|2|39
+1.3.6.1.2.1.47.1.1.1.1.6.43|2|40
+1.3.6.1.2.1.47.1.1.1.1.6.44|2|41
+1.3.6.1.2.1.47.1.1.1.1.6.45|2|42
+1.3.6.1.2.1.47.1.1.1.1.6.46|2|43
+1.3.6.1.2.1.47.1.1.1.1.6.47|2|44
+1.3.6.1.2.1.47.1.1.1.1.6.48|2|45
+1.3.6.1.2.1.47.1.1.1.1.6.49|2|46
+1.3.6.1.2.1.47.1.1.1.1.6.50|2|47
+1.3.6.1.2.1.47.1.1.1.1.6.51|2|48
+1.3.6.1.2.1.47.1.1.1.1.6.52|2|49
+1.3.6.1.2.1.47.1.1.1.1.6.53|2|50
+1.3.6.1.2.1.47.1.1.1.1.6.54|2|51
+1.3.6.1.2.1.47.1.1.1.1.6.55|2|52
+1.3.6.1.2.1.47.1.1.1.1.6.56|2|53
+1.3.6.1.2.1.47.1.1.1.1.6.57|2|54
+1.3.6.1.2.1.47.1.1.1.1.6.58|2|55
+1.3.6.1.2.1.47.1.1.1.1.6.59|2|56
+1.3.6.1.2.1.47.1.1.1.1.6.60|2|57
+1.3.6.1.2.1.47.1.1.1.1.6.61|2|58
+1.3.6.1.2.1.47.1.1.1.1.6.62|2|59
+1.3.6.1.2.1.47.1.1.1.1.6.63|2|60
+1.3.6.1.2.1.47.1.1.1.1.6.64|2|61
+1.3.6.1.2.1.47.1.1.1.1.6.65|2|62
+1.3.6.1.2.1.47.1.1.1.1.6.66|2|63
+1.3.6.1.2.1.47.1.1.1.1.6.67|2|64
+1.3.6.1.2.1.47.1.1.1.1.6.68|2|65
+1.3.6.1.2.1.47.1.1.1.1.6.69|2|66
+1.3.6.1.2.1.47.1.1.1.1.6.70|2|67
+1.3.6.1.2.1.47.1.1.1.1.6.71|2|68
+1.3.6.1.2.1.47.1.1.1.1.7.1|4|switch1
+1.3.6.1.2.1.47.1.1.1.1.7.2|4|slot0
+1.3.6.1.2.1.47.1.1.1.1.7.3|4|chip0
+1.3.6.1.2.1.47.1.1.1.1.7.4|4|port1
+1.3.6.1.2.1.47.1.1.1.1.7.5|4|port2
+1.3.6.1.2.1.47.1.1.1.1.7.6|4|port3
+1.3.6.1.2.1.47.1.1.1.1.7.7|4|port4
+1.3.6.1.2.1.47.1.1.1.1.7.8|4|port5
+1.3.6.1.2.1.47.1.1.1.1.7.9|4|port6
+1.3.6.1.2.1.47.1.1.1.1.7.10|4|port7
+1.3.6.1.2.1.47.1.1.1.1.7.11|4|port8
+1.3.6.1.2.1.47.1.1.1.1.7.12|4|port9
+1.3.6.1.2.1.47.1.1.1.1.7.13|4|port10
+1.3.6.1.2.1.47.1.1.1.1.7.14|4|port11
+1.3.6.1.2.1.47.1.1.1.1.7.15|4|port12
+1.3.6.1.2.1.47.1.1.1.1.7.16|4|port13
+1.3.6.1.2.1.47.1.1.1.1.7.17|4|port14
+1.3.6.1.2.1.47.1.1.1.1.7.18|4|port15
+1.3.6.1.2.1.47.1.1.1.1.7.19|4|port16
+1.3.6.1.2.1.47.1.1.1.1.7.20|4|port17
+1.3.6.1.2.1.47.1.1.1.1.7.21|4|port18
+1.3.6.1.2.1.47.1.1.1.1.7.22|4|port19
+1.3.6.1.2.1.47.1.1.1.1.7.23|4|port20
+1.3.6.1.2.1.47.1.1.1.1.7.24|4|port21
+1.3.6.1.2.1.47.1.1.1.1.7.25|4|port22
+1.3.6.1.2.1.47.1.1.1.1.7.26|4|port23
+1.3.6.1.2.1.47.1.1.1.1.7.27|4|port24
+1.3.6.1.2.1.47.1.1.1.1.7.28|4|port25
+1.3.6.1.2.1.47.1.1.1.1.7.29|4|port26
+1.3.6.1.2.1.47.1.1.1.1.7.30|4|port27
+1.3.6.1.2.1.47.1.1.1.1.7.31|4|port28
+1.3.6.1.2.1.47.1.1.1.1.7.32|4|port29
+1.3.6.1.2.1.47.1.1.1.1.7.33|4|port30
+1.3.6.1.2.1.47.1.1.1.1.7.34|4|port31
+1.3.6.1.2.1.47.1.1.1.1.7.35|4|port32
+1.3.6.1.2.1.47.1.1.1.1.7.36|4|port33
+1.3.6.1.2.1.47.1.1.1.1.7.37|4|port34
+1.3.6.1.2.1.47.1.1.1.1.7.38|4|port35
+1.3.6.1.2.1.47.1.1.1.1.7.39|4|port36
+1.3.6.1.2.1.47.1.1.1.1.7.40|4|port37
+1.3.6.1.2.1.47.1.1.1.1.7.41|4|port38
+1.3.6.1.2.1.47.1.1.1.1.7.42|4|port39
+1.3.6.1.2.1.47.1.1.1.1.7.43|4|port40
+1.3.6.1.2.1.47.1.1.1.1.7.44|4|port41
+1.3.6.1.2.1.47.1.1.1.1.7.45|4|port42
+1.3.6.1.2.1.47.1.1.1.1.7.46|4|port43
+1.3.6.1.2.1.47.1.1.1.1.7.47|4|port44
+1.3.6.1.2.1.47.1.1.1.1.7.48|4|port45
+1.3.6.1.2.1.47.1.1.1.1.7.49|4|port46
+1.3.6.1.2.1.47.1.1.1.1.7.50|4|port47
+1.3.6.1.2.1.47.1.1.1.1.7.51|4|port48
+1.3.6.1.2.1.47.1.1.1.1.7.52|4|port49
+1.3.6.1.2.1.47.1.1.1.1.7.53|4|port50
+1.3.6.1.2.1.47.1.1.1.1.7.54|4|port51
+1.3.6.1.2.1.47.1.1.1.1.7.55|4|port52
+1.3.6.1.2.1.47.1.1.1.1.7.56|4|port53
+1.3.6.1.2.1.47.1.1.1.1.7.57|4|port54
+1.3.6.1.2.1.47.1.1.1.1.7.58|4|port55
+1.3.6.1.2.1.47.1.1.1.1.7.59|4|port56
+1.3.6.1.2.1.47.1.1.1.1.7.60|4|port57
+1.3.6.1.2.1.47.1.1.1.1.7.61|4|port58
+1.3.6.1.2.1.47.1.1.1.1.7.62|4|port59
+1.3.6.1.2.1.47.1.1.1.1.7.63|4|port60
+1.3.6.1.2.1.47.1.1.1.1.7.64|4|port61
+1.3.6.1.2.1.47.1.1.1.1.7.65|4|port62
+1.3.6.1.2.1.47.1.1.1.1.7.66|4|port63
+1.3.6.1.2.1.47.1.1.1.1.7.67|4|port64
+1.3.6.1.2.1.47.1.1.1.1.7.68|4|port65
+1.3.6.1.2.1.47.1.1.1.1.7.69|4|port66
+1.3.6.1.2.1.47.1.1.1.1.7.70|4|port67
+1.3.6.1.2.1.47.1.1.1.1.7.71|4|port68
+1.3.6.1.2.1.47.1.1.1.1.8.1|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.2|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.3|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.4|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.5|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.6|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.7|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.8|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.9|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.10|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.11|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.12|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.13|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.14|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.15|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.16|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.17|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.18|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.19|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.20|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.21|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.22|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.23|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.24|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.25|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.26|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.27|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.28|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.29|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.30|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.31|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.32|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.33|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.34|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.35|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.36|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.37|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.38|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.39|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.40|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.41|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.42|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.43|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.44|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.45|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.46|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.47|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.48|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.49|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.50|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.51|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.52|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.53|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.54|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.55|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.56|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.57|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.58|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.59|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.60|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.61|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.62|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.63|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.64|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.65|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.66|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.67|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.68|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.69|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.70|4|1.11
+1.3.6.1.2.1.47.1.1.1.1.8.71|4|1.11
+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.38|4|
+1.3.6.1.2.1.47.1.1.1.1.9.39|4|
+1.3.6.1.2.1.47.1.1.1.1.9.40|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.43|4|
+1.3.6.1.2.1.47.1.1.1.1.9.44|4|
+1.3.6.1.2.1.47.1.1.1.1.9.45|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.49|4|
+1.3.6.1.2.1.47.1.1.1.1.9.50|4|
+1.3.6.1.2.1.47.1.1.1.1.9.51|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.53|4|
+1.3.6.1.2.1.47.1.1.1.1.9.54|4|
+1.3.6.1.2.1.47.1.1.1.1.9.55|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.9.62|4|
+1.3.6.1.2.1.47.1.1.1.1.9.63|4|
+1.3.6.1.2.1.47.1.1.1.1.9.64|4|
+1.3.6.1.2.1.47.1.1.1.1.9.65|4|
+1.3.6.1.2.1.47.1.1.1.1.9.66|4|
+1.3.6.1.2.1.47.1.1.1.1.9.67|4|
+1.3.6.1.2.1.47.1.1.1.1.9.68|4|
+1.3.6.1.2.1.47.1.1.1.1.9.69|4|
+1.3.6.1.2.1.47.1.1.1.1.9.70|4|
+1.3.6.1.2.1.47.1.1.1.1.9.71|4|
+1.3.6.1.2.1.47.1.1.1.1.10.1|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.2|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.3|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.4|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.5|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.6|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.7|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.8|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.9|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.10|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.11|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.12|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.13|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.14|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.15|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.16|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.17|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.18|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.19|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.20|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.21|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.22|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.23|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.24|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.25|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.26|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.27|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.28|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.29|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.30|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.31|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.32|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.33|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.34|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.35|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.36|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.37|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.38|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.39|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.40|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.41|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.42|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.43|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.44|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.45|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.46|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.47|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.48|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.49|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.50|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.51|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.52|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.53|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.54|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.55|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.56|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.57|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.58|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.59|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.60|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.61|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.62|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.63|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.64|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.65|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.66|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.67|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.68|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.69|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.70|4|173619
+1.3.6.1.2.1.47.1.1.1.1.10.71|4|173619
+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|
+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.38|4|
+1.3.6.1.2.1.47.1.1.1.1.11.39|4|
+1.3.6.1.2.1.47.1.1.1.1.11.40|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.43|4|
+1.3.6.1.2.1.47.1.1.1.1.11.44|4|
+1.3.6.1.2.1.47.1.1.1.1.11.45|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.49|4|
+1.3.6.1.2.1.47.1.1.1.1.11.50|4|
+1.3.6.1.2.1.47.1.1.1.1.11.51|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.53|4|
+1.3.6.1.2.1.47.1.1.1.1.11.54|4|
+1.3.6.1.2.1.47.1.1.1.1.11.55|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.11.62|4|
+1.3.6.1.2.1.47.1.1.1.1.11.63|4|
+1.3.6.1.2.1.47.1.1.1.1.11.64|4|
+1.3.6.1.2.1.47.1.1.1.1.11.65|4|
+1.3.6.1.2.1.47.1.1.1.1.11.66|4|
+1.3.6.1.2.1.47.1.1.1.1.11.67|4|
+1.3.6.1.2.1.47.1.1.1.1.11.68|4|
+1.3.6.1.2.1.47.1.1.1.1.11.69|4|
+1.3.6.1.2.1.47.1.1.1.1.11.70|4|
+1.3.6.1.2.1.47.1.1.1.1.11.71|4|
+1.3.6.1.2.1.47.1.1.1.1.12.1|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.2|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.3|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.4|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.5|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.6|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.7|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.8|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.9|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.10|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.11|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.12|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.13|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.14|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.15|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.16|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.17|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.18|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.19|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.20|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.21|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.22|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.23|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.24|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.25|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.26|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.27|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.28|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.29|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.30|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.31|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.32|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.33|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.34|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.35|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.36|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.37|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.38|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.39|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.40|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.41|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.42|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.43|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.44|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.45|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.46|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.47|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.48|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.49|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.50|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.51|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.52|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.53|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.54|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.55|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.56|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.57|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.58|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.59|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.60|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.61|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.62|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.63|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.64|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.65|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.66|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.67|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.68|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.69|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.70|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.12.71|4|Ruijie General Operating System Software
+1.3.6.1.2.1.47.1.1.1.1.13.1|4|RG-S6220-48XS4QXS
+1.3.6.1.2.1.47.1.1.1.1.13.2|4|none
+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|NA
+1.3.6.1.2.1.47.1.1.1.1.13.5|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.6|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.7|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.8|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.9|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.10|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.11|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.12|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.13|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.14|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.15|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.16|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.17|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.18|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.19|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.20|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.21|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.22|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.23|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.24|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.25|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.26|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.27|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.28|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.29|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.30|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.31|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.32|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.33|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.34|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.35|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.36|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.37|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.38|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.39|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.40|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.41|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.42|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.43|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.44|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.45|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.46|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.47|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.48|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.49|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.50|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.51|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.52|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.53|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.54|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.55|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.56|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.57|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.58|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.59|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.60|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.61|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.62|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.63|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.64|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.65|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.66|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.67|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.68|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.69|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.70|4|NA
+1.3.6.1.2.1.47.1.1.1.1.13.71|4|NA
+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.38|4|
+1.3.6.1.2.1.47.1.1.1.1.14.39|4|
+1.3.6.1.2.1.47.1.1.1.1.14.40|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.43|4|
+1.3.6.1.2.1.47.1.1.1.1.14.44|4|
+1.3.6.1.2.1.47.1.1.1.1.14.45|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.49|4|
+1.3.6.1.2.1.47.1.1.1.1.14.50|4|
+1.3.6.1.2.1.47.1.1.1.1.14.51|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.53|4|
+1.3.6.1.2.1.47.1.1.1.1.14.54|4|
+1.3.6.1.2.1.47.1.1.1.1.14.55|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.14.62|4|
+1.3.6.1.2.1.47.1.1.1.1.14.63|4|
+1.3.6.1.2.1.47.1.1.1.1.14.64|4|
+1.3.6.1.2.1.47.1.1.1.1.14.65|4|
+1.3.6.1.2.1.47.1.1.1.1.14.66|4|
+1.3.6.1.2.1.47.1.1.1.1.14.67|4|
+1.3.6.1.2.1.47.1.1.1.1.14.68|4|
+1.3.6.1.2.1.47.1.1.1.1.14.69|4|
+1.3.6.1.2.1.47.1.1.1.1.14.70|4|
+1.3.6.1.2.1.47.1.1.1.1.14.71|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.38|4|
+1.3.6.1.2.1.47.1.1.1.1.15.39|4|
+1.3.6.1.2.1.47.1.1.1.1.15.40|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.43|4|
+1.3.6.1.2.1.47.1.1.1.1.15.44|4|
+1.3.6.1.2.1.47.1.1.1.1.15.45|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.49|4|
+1.3.6.1.2.1.47.1.1.1.1.15.50|4|
+1.3.6.1.2.1.47.1.1.1.1.15.51|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.53|4|
+1.3.6.1.2.1.47.1.1.1.1.15.54|4|
+1.3.6.1.2.1.47.1.1.1.1.15.55|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.15.62|4|
+1.3.6.1.2.1.47.1.1.1.1.15.63|4|
+1.3.6.1.2.1.47.1.1.1.1.15.64|4|
+1.3.6.1.2.1.47.1.1.1.1.15.65|4|
+1.3.6.1.2.1.47.1.1.1.1.15.66|4|
+1.3.6.1.2.1.47.1.1.1.1.15.67|4|
+1.3.6.1.2.1.47.1.1.1.1.15.68|4|
+1.3.6.1.2.1.47.1.1.1.1.15.69|4|
+1.3.6.1.2.1.47.1.1.1.1.15.70|4|
+1.3.6.1.2.1.47.1.1.1.1.15.71|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|2
+1.3.6.1.2.1.47.1.1.1.1.16.3|2|0
+1.3.6.1.2.1.47.1.1.1.1.16.4|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.5|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.6|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.7|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.8|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.9|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.10|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.11|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.12|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.13|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.14|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.15|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.16|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.17|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.18|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.19|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.20|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.21|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.22|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.23|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.24|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.25|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.26|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.27|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.28|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.29|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.30|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.31|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.32|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.33|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.34|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.35|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.36|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.37|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.38|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.39|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.40|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.41|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.42|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.43|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.44|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.45|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.46|2|1
+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|1
+1.3.6.1.2.1.47.1.1.1.1.16.49|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.50|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.51|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.52|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.53|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.54|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.55|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.56|2|1
+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|1
+1.3.6.1.2.1.47.1.1.1.1.16.59|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.60|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.61|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.62|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.63|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.64|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.65|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.66|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.67|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.68|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.69|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.70|2|1
+1.3.6.1.2.1.47.1.1.1.1.16.71|2|1