diff --git a/includes/definitions/discovery/forcepoint-fe.yaml b/includes/definitions/discovery/forcepoint-fe.yaml new file mode 100644 index 0000000000..ef85f4c66d --- /dev/null +++ b/includes/definitions/discovery/forcepoint-fe.yaml @@ -0,0 +1,19 @@ +mib: FORCEPOINT-NGFW-ENGINE-MIB +modules: + mempools: + data: + - + total: FORCEPOINT-NGFW-ENGINE-MIB::fwMemBytesTotal + free: FORCEPOINT-NGFW-ENGINE-MIB::fwMemBytesUnused + used: FORCEPOINT-NGFW-ENGINE-MIB::fwMemBytesUsed + descr: 'Local Memory {{ $index }}' + processors: + data: + - + oid: FORCEPOINT-NGFW-ENGINE-MIB::fwCpuTotal + num_oid: '.1.3.6.1.4.1.47565.1.1.1.11.1.1.3.{{ $index }}' + descr: 'Processor {{ $index }}' + os: + serial: FORCEPOINT-NGFW-ENGINE-MIB::nodeHardwareSerialNumber.0 + version: FORCEPOINT-NGFW-ENGINE-MIB::fwSoftwareVersion.0 + hardware: FORCEPOINT-NGFW-ENGINE-MIB::nodeApplianceModel.0 diff --git a/includes/definitions/forcepoint-fe.yaml b/includes/definitions/forcepoint-fe.yaml new file mode 100644 index 0000000000..fa4945d163 --- /dev/null +++ b/includes/definitions/forcepoint-fe.yaml @@ -0,0 +1,13 @@ +os: forcepoint-fe +text: 'Forcepoint FlexEdge Secure SD-WAN' +type: firewall +icon: forcepoint +over: + - { graph: device_bits, text: 'Device Traffic' } + - { graph: device_processor, text: 'CPU Usage' } + +discovery: + - sysObjectID: + - .1.3.6.1.4.1.47565.1.1 + +mib_dir: forcepoint diff --git a/mibs/forcepoint/FORCEPOINT-NGFW-ENGINE-MIB b/mibs/forcepoint/FORCEPOINT-NGFW-ENGINE-MIB new file mode 100644 index 0000000000..f0f5efba81 --- /dev/null +++ b/mibs/forcepoint/FORCEPOINT-NGFW-ENGINE-MIB @@ -0,0 +1,1555 @@ +FORCEPOINT-NGFW-ENGINE-MIB DEFINITIONS ::= BEGIN + + -- SUBTREE: 1.3.6.1.4.1.47565.1.1 + -- iso.org.dod.internet.private.enterprises.forcepoint.ngfw.engine + +IMPORTS + enterprises, Integer32, Counter32, Counter64, Unsigned32, MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE + FROM SNMPv2-SMI + DisplayString, TimeStamp, DateAndTime, TEXTUAL-CONVENTION + FROM SNMPv2-TC + OBJECT-GROUP, NOTIFICATION-GROUP, MODULE-COMPLIANCE + FROM SNMPv2-CONF + InetAddressIPv4, InetAddressIPv6 + FROM INET-ADDRESS-MIB + CounterBasedGauge64 + FROM HCNUM-TC; + +forcepointNGFWEngineMib MODULE-IDENTITY + LAST-UPDATED "202112110000Z" + ORGANIZATION "Forcepoint LLC" + CONTACT-INFO "email: mib.stonesoft@forcepoint.com" + DESCRIPTION "Top level enterprise MIB for Forcepoint NGFW" + REVISION "202112110000Z" + DESCRIPTION "First public revision" + ::= { enterprises 47565 1 1 } + +engineNotifications OBJECT IDENTIFIER ::= { forcepointNGFWEngineMib 0 } +engineObjects OBJECT IDENTIFIER ::= { forcepointNGFWEngineMib 1 } +engineGroups OBJECT IDENTIFIER ::= { forcepointNGFWEngineMib 2 } + +-- +-- Firewall objects +-- + +fwSoftwareVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Version string of the firewall software" + ::= { engineObjects 1 } + +fwSecurityPolicy OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the current security policy on the + firewall" + ::= { engineObjects 2 } + +fwPolicyTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time when the security policy was + installed to the firewall" + ::= { engineObjects 3 } + +-- interface related objects + +fwIfStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF FwIfStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains an entry for each + interface in system" + ::= { engineObjects 10 } + +-- Statistics + +fwIfStatsEntry OBJECT-TYPE + SYNTAX FwIfStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Row for an interface" + INDEX { fwIfStatsIndex } + ::= { fwIfStatsTable 1 } + +FwIfStatsEntry ::= + SEQUENCE { + fwIfStatsIndex INTEGER, + fwIfName DisplayString, + fwIfAcceptedPkts Counter64, + fwIfDroppedPkts Counter64, + fwIfLoggedPkts Counter64, + fwIfAccountedPkts Counter64, + fwIfRejectedPkts Counter64, + fwIfAcceptedBytes Counter64, + fwIfDroppedBytes Counter64, + fwIfLoggedBytes Counter64, + fwIfAccountedBytes Counter64, + fwIfRejectedBytes Counter64, + fwIfForwardedPkts Counter64, + fwIfForwardedBytes Counter64, + fwIfComment DisplayString + } + +fwIfStatsIndex OBJECT-TYPE + SYNTAX Integer32(1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value, greater than zero, for each interface or + interface sub-layer in the managed system." + ::= { fwIfStatsEntry 1 } + +fwIfName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of interface" + ::= { fwIfStatsEntry 2 } + +fwIfAcceptedPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of accepted packets by firewall rules" + ::= { fwIfStatsEntry 3 } + +fwIfDroppedPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of dropped packets by firewall rules" + ::= { fwIfStatsEntry 4 } + +fwIfLoggedPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of logged packets by firewall rules" + ::= { fwIfStatsEntry 5 } + +fwIfAccountedPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of accounted packets by firewall rules" + ::= { fwIfStatsEntry 6 } + +fwIfRejectedPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of rejected packets by firewall rules" + ::= { fwIfStatsEntry 7 } + +fwIfAcceptedBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of accepted bytes by firewall rules" + ::= { fwIfStatsEntry 8 } + +fwIfDroppedBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of dropped bytes by firewall rules" + ::= { fwIfStatsEntry 9 } + +fwIfLoggedBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of logged bytes by firewall rules" + ::= { fwIfStatsEntry 10 } + +fwIfAccountedBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of accounted bytes by firewall rules" + ::= { fwIfStatsEntry 11 } + +fwIfRejectedBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of rejected bytes by firewall rules" + ::= { fwIfStatsEntry 12 } + +fwIfForwardedPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of forwarded packets by firewall rules" + ::= { fwIfStatsEntry 13 } + +fwIfForwardedBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of forwarded bytes by firewall rules" + ::= { fwIfStatsEntry 14 } + +fwIfComment OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Comment of interface" + ::= { fwIfStatsEntry 15 } + +-- VPN end-point related objects + +VpnEndpointType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A value that represents the type of the remote VPN end-point. + + unknown(0) The type of the remote VPN end-point is not known. + + static(1) The remote VPN end-point has a static IP address. + + dynamic(2) The remote VPN end-point has a dynamic IP address. + + mobile(3) The remote is a mobile VPN client." + SYNTAX INTEGER { + unknown(0), + static(1), + dynamic(2), + mobile(3) + } + +-- IPv4 end-points -- + +fwVpnEp4Table OBJECT-TYPE + SYNTAX SEQUENCE OF FwVpnEp4Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table contains an entry for each + IPv4 VPN end-point pair" + ::= { engineObjects 12 } + +fwVpnEp4Entry OBJECT-TYPE + SYNTAX FwVpnEp4Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Row for an IPv4 VPN end-point pair" + INDEX { fwVpnEp4Index } + ::= { fwVpnEp4Table 1 } + +FwVpnEp4Entry ::= + SEQUENCE { + fwVpnEp4Index INTEGER, + fwVpnEp4Local InetAddressIPv4, + fwVpnEp4Remote InetAddressIPv4, + fwVpnEp4RemoteType VpnEndpointType, + fwVpnEp4ReceivedBytes Counter64, + fwVpnEp4SentBytes Counter64, + fwVpnEp4IpsecSa Counter32 + } + +fwVpnEp4Index OBJECT-TYPE + SYNTAX Integer32(1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A unique value, greater than zero, for each + end-point pair." + ::= { fwVpnEp4Entry 1 } + +fwVpnEp4Local OBJECT-TYPE + SYNTAX InetAddressIPv4 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local IPv4 end-point address" + ::= { fwVpnEp4Entry 2 } + +fwVpnEp4Remote OBJECT-TYPE + SYNTAX InetAddressIPv4 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote IPv4 end-point address" + ::= { fwVpnEp4Entry 3 } + +fwVpnEp4RemoteType OBJECT-TYPE + SYNTAX VpnEndpointType + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The type of remote VPN end-point" + ::= { fwVpnEp4Entry 4 } + +fwVpnEp4ReceivedBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of received bytes between the end-point pair" + ::= { fwVpnEp4Entry 5 } + +fwVpnEp4SentBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of sent bytes between the end-point pair" + ::= { fwVpnEp4Entry 6 } + +fwVpnEp4IpsecSa OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of currently established IPsec SAs + between the end-point pair" + ::= { fwVpnEp4Entry 7 } + +-- IPv6 end-points -- + +fwVpnEp6Table OBJECT-TYPE + SYNTAX SEQUENCE OF FwVpnEp6Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table contains an entry for each + IPv6 VPN end-point pair" + ::= { engineObjects 13 } + +fwVpnEp6Entry OBJECT-TYPE + SYNTAX FwVpnEp6Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Row for an IPv6 VPN end-point pair" + INDEX { fwVpnEp6Index } + ::= { fwVpnEp6Table 1 } + +FwVpnEp6Entry ::= + SEQUENCE { + fwVpnEp6Index INTEGER, + fwVpnEp6Local InetAddressIPv6, + fwVpnEp6Remote InetAddressIPv6, + fwVpnEp6RemoteType VpnEndpointType, + fwVpnEp6ReceivedBytes Counter64, + fwVpnEp6SentBytes Counter64, + fwVpnEp6IpsecSa Counter32 + } + +fwVpnEp6Index OBJECT-TYPE + SYNTAX Integer32(1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A unique value, greater than zero, for each + end-point pair." + ::= { fwVpnEp6Entry 1 } + +fwVpnEp6Local OBJECT-TYPE + SYNTAX InetAddressIPv6 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local IPv6 end-point address" + ::= { fwVpnEp6Entry 2 } + +fwVpnEp6Remote OBJECT-TYPE + SYNTAX InetAddressIPv6 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote IPv6 end-point address" + ::= { fwVpnEp6Entry 3 } + +fwVpnEp6RemoteType OBJECT-TYPE + SYNTAX VpnEndpointType + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The type of remote VPN end-point" + ::= { fwVpnEp6Entry 4 } + +fwVpnEp6ReceivedBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of received bytes between the end-point pair" + ::= { fwVpnEp6Entry 5 } + +fwVpnEp6SentBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of sent bytes between the end-point pair" + ::= { fwVpnEp6Entry 6 } + +fwVpnEp6IpsecSa OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of currently established IPsec SAs + between the end-point pair" + ::= { fwVpnEp6Entry 7 } + +-- Global firewall informations + +fwConnNumber OBJECT-TYPE + SYNTAX CounterBasedGauge64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of current connections" + ::= { engineObjects 4 } + +fwAccepted OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of accepted packets" + ::= { engineObjects 5 } + +fwDropped OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of dropped packets" + ::= { engineObjects 6 } + +fwLogged OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of logged packets" + ::= { engineObjects 7 } + +fwAccounted OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of accounted packets" + ::= { engineObjects 8 } + +fwRejected OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of rejected packets" + ::= { engineObjects 9 } + +-- Hardware status used by data corresponding to sg-hwstat output + +FwHwComponentStatus ::= + TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Operational status of the corresponding hardware component. + notPresent(-1) Component is unexpectedly not present. + ok(0) Component working as intended. + warning(1) Component needs attention. + error(2) Component is inoperative due to a failure. + fatalError(3) Component has failed unrecoverably." + SYNTAX INTEGER { + notPresent(-1), -- This should never occur. + ok(0), + warning(1), + error(2), + fatalError(3) -- Currently nothing produces this. + } + +-- Temperature sensors + +fwHwTempSensorTable OBJECT-TYPE + SYNTAX SEQUENCE OF FwHwTempSensorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains an entry for each + temperature sensor in system" + ::= { engineObjects 16 } + +fwHwTempSensorEntry OBJECT-TYPE + SYNTAX FwHwTempSensorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Row for a temperature sensor" + INDEX { fwHwTempSensorIndex } + ::= { fwHwTempSensorTable 1 } + +FwHwTempSensorEntry ::= + SEQUENCE { + fwHwTempSensorIndex INTEGER, + fwHwTemperatureName DisplayString, + fwHwTemperature Integer32, + fwHwTemperatureStatus FwHwComponentStatus + } + +fwHwTempSensorIndex OBJECT-TYPE + SYNTAX Integer32(1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value, greater than zero, for each + temperature sensor" + ::= { fwHwTempSensorEntry 1 } + +fwHwTemperatureName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Name of the temperature sensor" + ::= { fwHwTempSensorEntry 2 } + +fwHwTemperature OBJECT-TYPE + SYNTAX Integer32 + UNITS "degrees C" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Temperature in degrees C + for the given temperature sensor" + ::= { fwHwTempSensorEntry 3 } + +fwHwTemperatureStatus OBJECT-TYPE + SYNTAX FwHwComponentStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Status of the temperature sensor + (not present, ok, warning, error, fatal error)" + ::= { fwHwTempSensorEntry 4 } + +-- PSU statuses + +fwPsuTable OBJECT-TYPE + SYNTAX SEQUENCE OF FwPsuEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains an entry for each + power supply unit in system" + ::= { engineObjects 17 } + +fwPsuEntry OBJECT-TYPE + SYNTAX FwPsuEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Row for a PSU" + INDEX { fwPsuIndex } + ::= { fwPsuTable 1 } + +FwPsuEntry ::= + SEQUENCE { + fwPsuIndex INTEGER, + fwPsuName DisplayString, + fwPsuStatus FwHwComponentStatus + } + +fwPsuIndex OBJECT-TYPE + SYNTAX Integer32(1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value, greater than zero, for each PSU" + ::= { fwPsuEntry 1 } + +fwPsuName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Name of the PSU" + ::= { fwPsuEntry 2 } + +fwPsuStatus OBJECT-TYPE + SYNTAX FwHwComponentStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Status of the PSU + (not present, ok, warning, error, fatal error)" + ::= { fwPsuEntry 3 } + +-- Fan statuses + +fwFanTable OBJECT-TYPE + SYNTAX SEQUENCE OF FwFanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains an entry for each + fan in system" + ::= { engineObjects 18 } + +fwFanEntry OBJECT-TYPE + SYNTAX FwFanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Row for a fan" + INDEX { fwFanIndex } + ::= { fwFanTable 1 } + +FwFanEntry ::= + SEQUENCE { + fwFanIndex INTEGER, + fwFanName DisplayString, + fwFan Integer32, + fwFanStatus FwHwComponentStatus + } + +fwFanIndex OBJECT-TYPE + SYNTAX Integer32(1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value, greater than zero, for each fan" + ::= { fwFanEntry 1 } + +fwFanName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Fan name" + ::= { fwFanEntry 2 } + +fwFan OBJECT-TYPE + SYNTAX Integer32 + UNITS "RPM" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Fan speed in RPM" + ::= { fwFanEntry 3 } + +fwFanStatus OBJECT-TYPE + SYNTAX FwHwComponentStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Status of the fan + (not present, ok, warning, error, fatal error)" + ::= { fwFanEntry 4 } + +-- Voltage statuses + +fwVoltageTable OBJECT-TYPE + SYNTAX SEQUENCE OF FwVoltageEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains an entry for each + voltage in system" + ::= { engineObjects 20 } + +fwVoltageEntry OBJECT-TYPE + SYNTAX FwVoltageEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Row for a voltage" + INDEX { fwVoltageIndex } + ::= { fwVoltageTable 1 } + +FwFixedThousandths ::= + TEXTUAL-CONVENTION + DISPLAY-HINT "d-3" + STATUS current + DESCRIPTION "Fixed point, three decimals" + SYNTAX Integer32 + +FwVoltageEntry ::= + SEQUENCE { + fwVoltageIndex INTEGER, + fwVoltageName DisplayString, + fwVoltage FwFixedThousandths, + fwVoltageStatus FwHwComponentStatus + } + +fwVoltageIndex OBJECT-TYPE + SYNTAX Integer32(1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value, greater than zero, for each voltage" + ::= { fwVoltageEntry 1 } + +fwVoltageName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Voltage name" + ::= { fwVoltageEntry 2 } + +fwVoltage OBJECT-TYPE + SYNTAX FwFixedThousandths + UNITS "V" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Voltage in volts" + ::= { fwVoltageEntry 3 } + +fwVoltageStatus OBJECT-TYPE + SYNTAX FwHwComponentStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Status of the voltage + (not present, ok, warning, error, fatal error)" + ::= { fwVoltageEntry 4 } + +-- fw connections + +fwNewConnectionsS OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of new connections / second" + ::= { fwHardware 4 } + +fwDiscardedConnectionsS OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of discarded connections / second" + ::= { fwHardware 5 } + +fwRefusedConnectionsS OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of refused connections / second" + ::= { fwHardware 6 } + +-- Mobile Broadband + +fwMbrInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF FwMbrInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains an entry for each cellular + interface in system" + ::= { engineObjects 14 } + +fwMbrInterfaceEntry OBJECT-TYPE + SYNTAX FwMbrInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Row for a cellular interface" + INDEX { fwMbrInterfaceIndex } + ::= { fwMbrInterfaceTable 1 } + +FwMbrInterfaceEntry ::= + SEQUENCE { + fwMbrInterfaceIndex INTEGER, + fwMbrName DisplayString, + fwMbrBandUsed DisplayString, + fwMbrSignalStrength Integer32, + fwMbrStatus FwHwComponentStatus + } + +fwMbrInterfaceIndex OBJECT-TYPE + SYNTAX Integer32(1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value, greater than zero, for each cellular + interface or interface sub-layer in the managed system." + ::= { fwMbrInterfaceEntry 1 } + +fwMbrName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Modem name" + ::= { fwMbrInterfaceEntry 2 } + +fwMbrBandUsed OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface band in use" + ::= { fwMbrInterfaceEntry 3 } + +fwMbrSignalStrength OBJECT-TYPE + SYNTAX Integer32 + UNITS "dBm" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Modem signal strength in dBm" + ::= { fwMbrInterfaceEntry 4 } + +fwMbrStatus OBJECT-TYPE + SYNTAX FwHwComponentStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Status of the modem + (not present, ok, warning, error, fatal error)" + ::= { fwMbrInterfaceEntry 5 } + +-- hardware related objects + +fwHardware OBJECT IDENTIFIER ::= { engineObjects 11 } + +-- Processor + +fwCpuStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF FwCpuEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table contains an entry for each CPU in + a system and total usage of all cpus." + ::= { fwHardware 1 } + +fwCpuStatsEntry OBJECT-TYPE + SYNTAX FwCpuEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Row with information about CPU usage" + INDEX { fwCpuStatsId } + ::= { fwCpuStatsTable 1 } + +FwCpuEntry ::= SEQUENCE { + fwCpuStatsId INTEGER, + fwCpuName DisplayString, + fwCpuTotal Unsigned32, + fwCpuUser Unsigned32, + fwCpuSystem Unsigned32, + fwCpuNice Unsigned32, + fwCpuIdle Unsigned32, + fwCpuIoWait Unsigned32, + fwCpuHwIrq Unsigned32, + fwCpuSoftIrq Unsigned32 + } + + +fwCpuStatsId OBJECT-TYPE + SYNTAX Integer32(1..1024) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A unique value, greater than zero, for each + CPU in the managed system. First element with Id '0' + is designed for total values." + ::= { fwCpuStatsEntry 1 } + +fwCpuName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Name of data current line concern" + ::= { fwCpuStatsEntry 2 } + +fwCpuTotal OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total CPU load percentage" + ::= { fwCpuStatsEntry 3 } + +fwCpuUser OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The percentage of time the CPU has spent running + users' processes that are not niced" + ::= { fwCpuStatsEntry 4 } + +fwCpuSystem OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The percentage of time the CPU has spent running + the kernel and its processes" + ::= { fwCpuStatsEntry 5 } + +fwCpuNice OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The percentage of time the CPU has spent running + users' processes that have been niced" + ::= { fwCpuStatsEntry 6 } + +fwCpuIdle OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The percentage of time the CPU was idle" + ::= { fwCpuStatsEntry 7 } + +fwCpuIoWait OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The percentage of time the CPU has been waiting + for I/O to complete" + ::= { fwCpuStatsEntry 8 } + +fwCpuHwIrq OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The percentage of time the CPU has been servicing + hardware interrupts" + ::= { fwCpuStatsEntry 9 } + +fwCpuSoftIrq OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The percentage of time the CPU has been servicing + software interrupts" + ::= { fwCpuStatsEntry 10 } + +-- Memory + +fwMemoryInfo OBJECT IDENTIFIER ::= { fwHardware 2 } + +fwSwapBytesTotal OBJECT-TYPE + SYNTAX CounterBasedGauge64 + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Total swap space" + ::= { fwMemoryInfo 1 } + +fwSwapBytesUsed OBJECT-TYPE + SYNTAX CounterBasedGauge64 + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used space of swap" + ::= { fwMemoryInfo 2 } + +fwSwapBytesUnused OBJECT-TYPE + SYNTAX CounterBasedGauge64 + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Amount of unused space of swap" + ::= { fwMemoryInfo 3 } + + +fwMemBytesTotal OBJECT-TYPE + SYNTAX CounterBasedGauge64 + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of available bytes of physical memory" + ::= { fwMemoryInfo 4 } + +fwMemBytesUsed OBJECT-TYPE + SYNTAX CounterBasedGauge64 + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Amount of memory being in use" + ::= { fwMemoryInfo 5 } + +fwMemBytesUnused OBJECT-TYPE + SYNTAX CounterBasedGauge64 + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Amount of unused bytes of physical memory" + ::= { fwMemoryInfo 6 } + +fwMemBytesBuffers OBJECT-TYPE + SYNTAX CounterBasedGauge64 + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Amount of memory used as buffers" + ::= { fwMemoryInfo 7 } + +fwMemBytesCached OBJECT-TYPE + SYNTAX CounterBasedGauge64 + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Amount of memory used as cache" + ::= { fwMemoryInfo 8 } + +fwMemBytesSReclaimable OBJECT-TYPE + SYNTAX CounterBasedGauge64 + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Amount of reclaimable Slab memory " + ::= { fwMemoryInfo 9 } + +fwMemBytesAvailable OBJECT-TYPE + SYNTAX CounterBasedGauge64 + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Amount of memory available" + ::= { fwMemoryInfo 10 } + +-- disk(s) statistics + +fwDiskStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF FwDiskStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Table contains an entry for each partition + mounted in a system." + ::= { fwHardware 3 } + +fwDiskStatsEntry OBJECT-TYPE + SYNTAX FwDiskStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Row of information concerning one partition" + INDEX { fwPartitionIndex } + ::= { fwDiskStatsTable 1 } + +FwDiskStatsEntry ::= SEQUENCE { + fwPartitionIndex INTEGER, + fwPartitionDevName DisplayString, + fwMountPointName DisplayString, + fwPartitionSize CounterBasedGauge64, + fwPartitionUsed CounterBasedGauge64, + fwPartitionAvail CounterBasedGauge64 + } + +fwPartitionIndex OBJECT-TYPE + SYNTAX Integer32(1..1024) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A unique value, greater than zero, for each partition" + ::= { fwDiskStatsEntry 1 } + +fwPartitionDevName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A unique name of a device" + ::= { fwDiskStatsEntry 2 } + +fwMountPointName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Name of a mount point" + ::= { fwDiskStatsEntry 3 } + +fwPartitionSize OBJECT-TYPE + SYNTAX CounterBasedGauge64 + UNITS "kbytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Total size of the partition" + ::= { fwDiskStatsEntry 4 } + +fwPartitionUsed OBJECT-TYPE + SYNTAX CounterBasedGauge64 + UNITS "kbytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Amount of used space of the partition + (in kilobytes)" + ::= { fwDiskStatsEntry 5 } + +fwPartitionAvail OBJECT-TYPE + SYNTAX CounterBasedGauge64 + UNITS "kbytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Information about amount of free space on + partition (in kilobytes)" + ::= { fwDiskStatsEntry 6 } + +fwDiskSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Disk serial number" + ::= { engineObjects 15 } + +-- +-- Network node objects, e.g. identifications, state, load + +netNodeObjects OBJECT IDENTIFIER ::= { engineObjects 19 } + +nodeClusterId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identification number of the cluster + this node belongs to" + ::= { netNodeObjects 1 } + + +nodeMemberId OBJECT-TYPE + SYNTAX Integer32 (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Node's member identification within the cluster" + ::= { netNodeObjects 2 } + +nodeOperState OBJECT-TYPE + SYNTAX INTEGER { + unknown(0), + online(1), + goingOnline(2), + lockedOnline(3), + goingLockedOnline(4), + offline(5), + goingOffline(6), + lockedOffline(7), + goingLockedOffline(8), + standby(9), + goingStandby(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The operative (clustering) state of the node" + ::= { netNodeObjects 3 } + +nodeCPULoad OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The CPU load percentage on the node" + ::= { netNodeObjects 4 } + +nodeLastLogin OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The most recent login event on the node" + ::= { netNodeObjects 5 } + +nodeLastLoginTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Timestamp of the most recent login event on the node" + ::= { netNodeObjects 6 } + +nodeHwmonEvent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Reason for the hardware monitoring event" + ::= { netNodeObjects 8 } + +nodeApplianceModel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Appliance model name" + ::= { netNodeObjects 9 } + +nodePosCode OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Appliance POS code" + ::= { netNodeObjects 10 } + +nodeLoginTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The most recent login event on the node" + ::= { netNodeObjects 11 } + +nodePolicyApplyTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time when the security policy was installed to the node" + ::= { netNodeObjects 12 } + +nodeHardwareSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hardware chassis serial number" + ::= { netNodeObjects 13 } + +-- +-- Tester objects + +nodeTestTable OBJECT-TYPE + SYNTAX SEQUENCE OF NodeTestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains an entry for each + test instance that was + configured to send a trap on test failure" + + ::= { netNodeObjects 7 } + + +nodeTestEntry OBJECT-TYPE + SYNTAX NodeTestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Row for a test instance" + INDEX { nodeTestIndex } + ::= { nodeTestTable 1 } + + +NodeTestEntry ::= SEQUENCE { + nodeTestIndex Unsigned32, + nodeTestIdentity DisplayString, + nodeTestResult INTEGER, + nodeTestResultTime TimeStamp + } + +nodeTestIndex OBJECT-TYPE + SYNTAX Unsigned32(1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Unique positive integer index + of the nodeTest instance" + ::= { nodeTestEntry 1 } + +nodeTestIdentity OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Identification string of a nodeTest" + ::= { nodeTestEntry 2 } + + +nodeTestResult OBJECT-TYPE + SYNTAX INTEGER {success(1), failure(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The most recent result of the + nodeTest" + ::= { nodeTestEntry 3 } + +nodeTestResultTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The timestamp of the most recent + result of the nodeTest" + ::= { nodeTestEntry 4 } + +-- Firewall events + +fwPolicyInstall NOTIFICATION-TYPE + OBJECTS { fwSecurityPolicy } + STATUS current + DESCRIPTION "A firewall policy was (re)installed" + ::= { engineNotifications 1 } + +-- Network node events + +nodeOnline NOTIFICATION-TYPE + OBJECTS { nodeOperState } + STATUS current + DESCRIPTION "A node has gone to an online state" + ::= { engineNotifications 2 } + + +nodeOffline NOTIFICATION-TYPE + OBJECTS { nodeOperState } + STATUS current + DESCRIPTION "A node has gone to an offline + or standby state" + ::= { engineNotifications 3 } + +nodeBoot NOTIFICATION-TYPE + STATUS current + DESCRIPTION "A node has booted up" + ::= { engineNotifications 4 } + +nodeShutdown NOTIFICATION-TYPE + STATUS current + DESCRIPTION "A node is shutting down" + ::= { engineNotifications 5 } + +nodeUserLogin NOTIFICATION-TYPE + OBJECTS { nodeLastLogin } + STATUS current + DESCRIPTION "A user has started a login session" + ::= { engineNotifications 6 } + +nodeFailedUserLogin NOTIFICATION-TYPE + STATUS current + DESCRIPTION "Failed user login" + ::= { engineNotifications 7 } + +nodeUserLogout NOTIFICATION-TYPE + STATUS current + DESCRIPTION "A user has finished session" + ::= { engineNotifications 8 } + +nodeTestFailure NOTIFICATION-TYPE + OBJECTS { nodeTestIdentity } + STATUS current + DESCRIPTION "NodeTest has failed" + ::= { engineNotifications 9 } + + +nodeHwmon NOTIFICATION-TYPE + OBJECTS { nodeHwmonEvent } + STATUS current + DESCRIPTION "Hardware monitoring system has detected problems" + ::= { engineNotifications 10 } + +-- Groups + +firewallGeneralInformationGroup OBJECT-GROUP + OBJECTS { fwSoftwareVersion, fwSecurityPolicy, fwPolicyTime } + STATUS current + DESCRIPTION + "A collection of objects giving general information about the + firewall" + ::= { engineGroups 1 } + +firewallIfaceStatsGroup OBJECT-GROUP + OBJECTS { fwIfName, + fwIfAcceptedPkts, fwIfDroppedPkts, fwIfLoggedPkts, + fwIfAccountedPkts, fwIfRejectedPkts, fwIfForwardedPkts, + fwIfAcceptedBytes, fwIfDroppedBytes, fwIfLoggedBytes, + fwIfAccountedBytes, fwIfRejectedBytes, fwIfForwardedBytes, + fwIfComment } + STATUS current + DESCRIPTION + "A collection of objects giving information about the + current firewall interface related traffic statistics" + ::= { engineGroups 2 } + +firewallGeneralStatsGroup OBJECT-GROUP + OBJECTS { fwConnNumber, fwAccepted, fwDropped, + fwLogged, fwAccounted, fwRejected } + STATUS current + DESCRIPTION + "A collection of objects giving general information about the + firewall traffic statistics" + ::= { engineGroups 3 } + +firewallHardwareGroup OBJECT-GROUP + OBJECTS { fwCpuName, fwCpuTotal, fwCpuUser, fwCpuSystem, + fwCpuHwIrq, fwCpuSoftIrq, fwSwapBytesTotal, + fwMemBytesTotal, fwMemBytesBuffers, + fwHwTemperatureName, fwHwTemperature, fwHwTemperatureStatus, + fwPsuName, fwPsuStatus, + fwFanName, fwFan, fwFanStatus, + fwVoltageName, fwVoltage, fwVoltageStatus, + fwPartitionDevName, fwMountPointName, fwDiskSerialNumber, + fwPartitionSize } + STATUS current + DESCRIPTION + "A collection of objects giving information about the + hardware parameters" + ::= { engineGroups 4 } + +firewallMbrInterfaceGroup OBJECT-GROUP + OBJECTS { fwMbrName, fwMbrBandUsed, fwMbrSignalStrength, fwMbrStatus } + STATUS current + DESCRIPTION + "A collection of objects giving information about the + Mbr related parameters" + ::= { engineGroups 5 } + +firewallPerformanceGroup OBJECT-GROUP + OBJECTS { fwCpuNice, fwCpuIdle, fwCpuIoWait, fwSwapBytesUsed, + fwSwapBytesUnused, fwMemBytesUsed, fwMemBytesUnused, + fwMemBytesCached, fwMemBytesAvailable, + fwMemBytesSReclaimable, fwPartitionUsed, fwPartitionAvail, + fwNewConnectionsS, fwDiscardedConnectionsS, + fwRefusedConnectionsS} + STATUS current + DESCRIPTION + "A collection of objects giving information about the + performance related parameters" + ::= { engineGroups 6 } + +firewallVpnEpGroup OBJECT-GROUP + OBJECTS { fwVpnEp4Local, fwVpnEp4Remote, fwVpnEp4RemoteType, + fwVpnEp4ReceivedBytes, fwVpnEp4SentBytes, + fwVpnEp4IpsecSa, fwVpnEp6Local, fwVpnEp6Remote, + fwVpnEp6RemoteType, fwVpnEp6ReceivedBytes, + fwVpnEp6SentBytes, fwVpnEp6IpsecSa } + STATUS current + DESCRIPTION + "A collection of objects giving information about the + configured VPN end-point pairs" + ::= { engineGroups 7 } + +nodeIdentificationGroup OBJECT-GROUP + OBJECTS { nodeClusterId, nodeMemberId, nodeApplianceModel, nodePosCode, nodeHardwareSerialNumber } + STATUS current + DESCRIPTION + "A collection of objects identifying the node in a cluster" + ::= { engineGroups 8 } + +nodeStatusGroup OBJECT-GROUP + OBJECTS { nodeOperState, nodeCPULoad, nodePolicyApplyTime } + STATUS current + DESCRIPTION + "A collection of objects giving information about + the status of the node" + ::= { engineGroups 9 } + +nodeLoginGroup OBJECT-GROUP + OBJECTS { nodeLastLogin, nodeLastLoginTime, nodeLoginTime } + STATUS current + DESCRIPTION + "A collection of objects giving information about logins + into the node" + ::= { engineGroups 10 } + +nodeTesterGroup OBJECT-GROUP + OBJECTS { nodeTestIdentity, nodeTestResult, nodeTestResultTime } + STATUS current + DESCRIPTION + "A collection of objects giving information about the tests + in the test subsystem of the node" + ::= { engineGroups 11 } + +firewallGeneralNotifGroup NOTIFICATION-GROUP + NOTIFICATIONS { fwPolicyInstall } + STATUS current + DESCRIPTION + "A collection of notification giving information about + general events in the firewall" + ::= { engineGroups 12 } + +nodeStatusNotificationsGroup NOTIFICATION-GROUP + NOTIFICATIONS { nodeOnline, nodeOffline, nodeBoot, nodeShutdown } + STATUS current + DESCRIPTION + "A collection of notifications informing about changes + in a node's status" + ::= { engineGroups 13 } + +nodeLoginNotificationsGroup NOTIFICATION-GROUP + NOTIFICATIONS { nodeUserLogin, nodeFailedUserLogin, nodeUserLogout } + STATUS current + DESCRIPTION + "A collection of notifications informing about user logins" + ::= { engineGroups 14 } + +nodeTesterNotificationsGroup NOTIFICATION-GROUP + NOTIFICATIONS { nodeTestFailure } + STATUS current + DESCRIPTION + "A collection of notifications informing about test failures" + ::= { engineGroups 15 } + + +nodeHwmonNotificationsGroup NOTIFICATION-GROUP + NOTIFICATIONS { nodeHwmon } + STATUS current + DESCRIPTION + "A collection of notifications informing about + hardware monitoring issues" + ::= { engineGroups 16 } + +nodeHwmonGroup OBJECT-GROUP + OBJECTS { nodeHwmonEvent } + STATUS current + DESCRIPTION + "A collection of objects giving information about + hardware monitoring events in the node" + ::= { engineGroups 17 } + +-- Virtual Engine Information + +fwVETable OBJECT-TYPE + SYNTAX SEQUENCE OF FwVEEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains an entry for each + virtual engine" + ::= { engineObjects 21 } + +fwVEEntry OBJECT-TYPE + SYNTAX FwVEEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Row for virtual engine" + INDEX { fwVEIndex } + ::= { fwVETable 1 } + +FwVEEntry ::= + SEQUENCE { + fwVEIndex INTEGER, + fwVEEngineId INTEGER, + fwVEName DisplayString, + fwVEStatus DisplayString + } + +fwVEIndex OBJECT-TYPE + SYNTAX Integer32(1..256) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A unique value, greater that zero, for each + virtual engine." + ::= { fwVEEntry 1 } + +fwVEEngineId OBJECT-TYPE + SYNTAX Integer32(1..256) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Engine ID of the virtual engine" + ::= { fwVEEntry 2 } + +fwVEName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Name of the virtual engine" + ::= { fwVEEntry 3 } + +fwVEStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Status of the virtual engine e.g. Active" + ::= { fwVEEntry 4 } + + +engineVEGroup OBJECT-GROUP + OBJECTS { fwVEEngineId, fwVEName, fwVEStatus } + STATUS current + DESCRIPTION + "A collection of objects giving information about + Virtual Engines in the Engine" + ::= { engineGroups 18 } + + +END diff --git a/tests/data/forcepoint-fe_flexedge.json b/tests/data/forcepoint-fe_flexedge.json new file mode 100644 index 0000000000..aa7cd01860 --- /dev/null +++ b/tests/data/forcepoint-fe_flexedge.json @@ -0,0 +1,2645 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.47565.1.1", + "sysDescr": "Forcepoint FlexEdge Secure SD-WAN Engine", + "sysContact": "", + "version": "7.1.1.29059", + "hardware": "330-2-C1", + "features": null, + "location": "", + "os": "forcepoint-fe", + "type": "firewall", + "serial": "unavailable", + "icon": "forcepoint.png" + } + ] + }, + "poller": "matches discovery" + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lo", + "ifName": "lo", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "tunl0", + "ifName": "tunl0", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "tunl0", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "eth0", + "ifName": "eth0", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth0", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "eth1", + "ifName": "eth1", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth1", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "eth2", + "ifName": "eth2", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth2", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "eth3", + "ifName": "eth3", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth3", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "eth4", + "ifName": "eth4", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth4", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "eth5", + "ifName": "eth5", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth5", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "eth6", + "ifName": "eth6", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth6", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "eth7", + "ifName": "eth7", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth7", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "overlay", + "ifName": "overlay", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "overlay", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "lo", + "ifName": "lo", + "portName": null, + "ifIndex": 1, + "ifSpeed": 10000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 65536, + "ifType": "softwareLoopback", + "ifAlias": "lo", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 79, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 79, + "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": 3160, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 3160, + "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": "tunl0", + "ifName": "tunl0", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1480, + "ifType": "tunnel", + "ifAlias": "tunl0", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "eth0", + "ifName": "eth0", + "portName": null, + "ifIndex": 4, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth0", + "ifPhysAddress": "665577556600", + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 805160177, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 848040743, + "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": 174554892257, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 315812006681, + "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": 1881514, + "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": "eth1", + "ifName": "eth1", + "portName": null, + "ifIndex": 5, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth1", + "ifPhysAddress": "0010f3820c0a", + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 216175452, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 164226449, + "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": 162859582301, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 35882593560, + "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": 39570, + "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": "eth2", + "ifName": "eth2", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth2", + "ifPhysAddress": "0010f3820c0b", + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "eth3", + "ifName": "eth3", + "portName": null, + "ifIndex": 7, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth3", + "ifPhysAddress": "0010f3820c0c", + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 4104486, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 58768222, + "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": 44469437210, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 52706236754, + "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": 48717311, + "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": "eth4", + "ifName": "eth4", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth4", + "ifPhysAddress": "0010f3820c0d", + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "eth5", + "ifName": "eth5", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth5", + "ifPhysAddress": "0010f3820c0e", + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "eth6", + "ifName": "eth6", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth6", + "ifPhysAddress": "0010f3820c0f", + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "eth7", + "ifName": "eth7", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth7", + "ifPhysAddress": "0010f3820c10", + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": "overlay", + "ifName": "overlay", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1416, + "ifType": "other", + "ifAlias": "overlay", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 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": 22, + "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": 2112, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.47565.1.1.1.11.1.1.3.0", + "processor_index": "0", + "processor_type": "forcepoint-fe", + "processor_usage": 7, + "processor_descr": "Processor 0", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.47565.1.1.1.11.1.1.3.1", + "processor_index": "1", + "processor_type": "forcepoint-fe", + "processor_usage": 6, + "processor_descr": "Processor 1", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.47565.1.1.1.11.1.1.3.2", + "processor_index": "2", + "processor_type": "forcepoint-fe", + "processor_usage": 8, + "processor_descr": "Processor 2", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "0", + "entPhysicalIndex": null, + "mempool_type": "forcepoint-fe", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "Local Memory 0", + "mempool_perc": 89, + "mempool_perc_oid": null, + "mempool_used": 3556892672, + "mempool_used_oid": ".1.3.6.1.4.1.47565.1.1.1.11.2.5.0", + "mempool_free": 433135616, + "mempool_free_oid": null, + "mempool_total": 3989344256, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": { + "mempools": [ + { + "mempool_index": "0", + "entPhysicalIndex": null, + "mempool_type": "forcepoint-fe", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "Local Memory 0", + "mempool_perc": 89, + "mempool_perc_oid": null, + "mempool_used": 3556892672, + "mempool_used_oid": ".1.3.6.1.4.1.47565.1.1.1.11.2.5.0", + "mempool_free": 432451584, + "mempool_free_oid": null, + "mempool_total": 3989344256, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + } + }, + "storage": { + "discovery": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "31", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/", + "storage_size": 1994670080, + "storage_units": 4096, + "storage_used": 0, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "37", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/data/diagnostics", + "storage_size": 2027601920, + "storage_units": 4096, + "storage_used": 289214464, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "38", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/data/config/snmp", + "storage_size": 2027601920, + "storage_units": 4096, + "storage_used": 289214464, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "42", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/spool/dump/user_space_cores", + "storage_size": 9287700480, + "storage_units": 4096, + "storage_used": 3361689600, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "46", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp/run/snmpd", + "storage_size": 1994670080, + "storage_units": 4096, + "storage_used": 1802240, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "47", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp/run/dmidata", + "storage_size": 1994670080, + "storage_units": 4096, + "storage_used": 1802240, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "48", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp/run/stonegate", + "storage_size": 1994670080, + "storage_units": 4096, + "storage_used": 1802240, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "49", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp/run/smonitd", + "storage_size": 1994670080, + "storage_units": 4096, + "storage_used": 1802240, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "50", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/etc/passwd", + "storage_size": 2027601920, + "storage_units": 4096, + "storage_used": 289214464, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "55", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp/run/agentx", + "storage_size": 1994670080, + "storage_units": 4096, + "storage_used": 1802240, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "57", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp/hwmond-socket", + "storage_size": 1994670080, + "storage_units": 4096, + "storage_used": 1802240, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "58", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/usr/sbin/snmpd_refresh_config", + "storage_size": 1994670080, + "storage_units": 4096, + "storage_used": 1802240, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + }, + "poller": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "31", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/", + "storage_size": 1994670080, + "storage_units": 4096, + "storage_used": 0, + "storage_free": 1994670080, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "37", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/data/diagnostics", + "storage_size": 2027601920, + "storage_units": 4096, + "storage_used": 289214464, + "storage_free": 1738387456, + "storage_perc": 14, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "38", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/data/config/snmp", + "storage_size": 2027601920, + "storage_units": 4096, + "storage_used": 289214464, + "storage_free": 1738387456, + "storage_perc": 14, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "42", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/spool/dump/user_space_cores", + "storage_size": 9287700480, + "storage_units": 4096, + "storage_used": 3361689600, + "storage_free": 5926010880, + "storage_perc": 36, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "46", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp/run/snmpd", + "storage_size": 1994670080, + "storage_units": 4096, + "storage_used": 1802240, + "storage_free": 1992867840, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "47", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp/run/dmidata", + "storage_size": 1994670080, + "storage_units": 4096, + "storage_used": 1802240, + "storage_free": 1992867840, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "48", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp/run/stonegate", + "storage_size": 1994670080, + "storage_units": 4096, + "storage_used": 1802240, + "storage_free": 1992867840, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "49", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp/run/smonitd", + "storage_size": 1994670080, + "storage_units": 4096, + "storage_used": 1802240, + "storage_free": 1992867840, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "50", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/etc/passwd", + "storage_size": 2027601920, + "storage_units": 4096, + "storage_used": 289214464, + "storage_free": 1738387456, + "storage_perc": 14, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "55", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp/run/agentx", + "storage_size": 1994670080, + "storage_units": 4096, + "storage_used": 1802240, + "storage_free": 1992867840, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "57", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/tmp/hwmond-socket", + "storage_size": 1994670080, + "storage_units": 4096, + "storage_used": 1802240, + "storage_free": 1992867840, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "58", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/usr/sbin/snmpd_refresh_config", + "storage_size": 1994670080, + "storage_units": 4096, + "storage_used": 1802240, + "storage_free": 1992867840, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + } + } +} diff --git a/tests/snmpsim/forcepoint-fe_flexedge.snmprec b/tests/snmpsim/forcepoint-fe_flexedge.snmprec new file mode 100644 index 0000000000..2f2378d5fb --- /dev/null +++ b/tests/snmpsim/forcepoint-fe_flexedge.snmprec @@ -0,0 +1,1136 @@ +1.3.6.1.2.1.1.1.0|4|Forcepoint FlexEdge Secure SD-WAN Engine +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.47565.1.1 +1.3.6.1.2.1.1.3.0|67|86400 +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|lo +1.3.6.1.2.1.2.2.1.2.3|4|tunl0 +1.3.6.1.2.1.2.2.1.2.4|4|eth0 +1.3.6.1.2.1.2.2.1.2.5|4|eth1 +1.3.6.1.2.1.2.2.1.2.6|4|eth2 +1.3.6.1.2.1.2.2.1.2.7|4|eth3 +1.3.6.1.2.1.2.2.1.2.8|4|eth4 +1.3.6.1.2.1.2.2.1.2.9|4|eth5 +1.3.6.1.2.1.2.2.1.2.10|4|eth6 +1.3.6.1.2.1.2.2.1.2.11|4|eth7 +1.3.6.1.2.1.2.2.1.2.12|4|overlay +1.3.6.1.2.1.2.2.1.3.1|2|24 +1.3.6.1.2.1.2.2.1.3.3|2|131 +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|1 +1.3.6.1.2.1.2.2.1.4.1|2|65536 +1.3.6.1.2.1.2.2.1.4.3|2|1480 +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|1500 +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|1416 +1.3.6.1.2.1.2.2.1.6.1|4| +1.3.6.1.2.1.2.2.1.6.3|4| +1.3.6.1.2.1.2.2.1.6.4|4x|665577556600 +1.3.6.1.2.1.2.2.1.6.5|4x|0010f3820c0a +1.3.6.1.2.1.2.2.1.6.6|4x|0010f3820c0b +1.3.6.1.2.1.2.2.1.6.7|4x|0010f3820c0c +1.3.6.1.2.1.2.2.1.6.8|4x|0010f3820c0d +1.3.6.1.2.1.2.2.1.6.9|4x|0010f3820c0e +1.3.6.1.2.1.2.2.1.6.10|4x|0010f3820c0f +1.3.6.1.2.1.2.2.1.6.11|4x|0010f3820c10 +1.3.6.1.2.1.2.2.1.6.12|4| +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.3|2|2 +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|2 +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|2 +1.3.6.1.2.1.2.2.1.7.9|2|2 +1.3.6.1.2.1.2.2.1.7.10|2|2 +1.3.6.1.2.1.2.2.1.7.11|2|2 +1.3.6.1.2.1.2.2.1.7.12|2|1 +1.3.6.1.2.1.2.2.1.8.1|2|1 +1.3.6.1.2.1.2.2.1.8.3|2|2 +1.3.6.1.2.1.2.2.1.8.4|2|1 +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|2 +1.3.6.1.2.1.2.2.1.8.7|2|1 +1.3.6.1.2.1.2.2.1.8.8|2|2 +1.3.6.1.2.1.2.2.1.8.9|2|2 +1.3.6.1.2.1.2.2.1.8.10|2|2 +1.3.6.1.2.1.2.2.1.8.11|2|2 +1.3.6.1.2.1.2.2.1.8.12|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|0 +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|0 +1.3.6.1.2.1.2.2.1.9.5|67|0 +1.3.6.1.2.1.2.2.1.9.6|67|0 +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|0 +1.3.6.1.2.1.2.2.1.9.9|67|0 +1.3.6.1.2.1.2.2.1.9.10|67|0 +1.3.6.1.2.1.2.2.1.9.11|67|0 +1.3.6.1.2.1.2.2.1.9.12|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.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.14.1|65|0 +1.3.6.1.2.1.2.2.1.14.3|65|0 +1.3.6.1.2.1.2.2.1.14.4|65|0 +1.3.6.1.2.1.2.2.1.14.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.14.7|65|0 +1.3.6.1.2.1.2.2.1.14.8|65|0 +1.3.6.1.2.1.2.2.1.14.9|65|0 +1.3.6.1.2.1.2.2.1.14.10|65|0 +1.3.6.1.2.1.2.2.1.14.11|65|0 +1.3.6.1.2.1.2.2.1.14.12|65|0 +1.3.6.1.2.1.2.2.1.19.1|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.20.1|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.4.3.0|65|27441245 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|0 +1.3.6.1.2.1.4.6.0|65|0 +1.3.6.1.2.1.4.7.0|65|0 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|59587290 +1.3.6.1.2.1.4.10.0|65|0 +1.3.6.1.2.1.4.11.0|65|572404 +1.3.6.1.2.1.4.12.0|65|0 +1.3.6.1.2.1.4.14.0|65|0 +1.3.6.1.2.1.4.15.0|65|0 +1.3.6.1.2.1.4.16.0|65|0 +1.3.6.1.2.1.4.17.0|65|6590903 +1.3.6.1.2.1.4.18.0|65|0 +1.3.6.1.2.1.4.19.0|65|32289295 +1.3.6.1.2.1.4.20.1.2.10.0.0.1|2|1 +1.3.6.1.2.1.4.20.1.3.10.0.0.1|64|255.255.255.0 +1.3.6.1.2.1.4.31.1.1.3.1|65|27441106 +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|27441106 +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|2842008356 +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|41496714020 +1.3.6.1.2.1.4.31.1.1.6.2|70|0 +1.3.6.1.2.1.4.31.1.1.7.1|65|0 +1.3.6.1.2.1.4.31.1.1.7.2|65|0 +1.3.6.1.2.1.4.31.1.1.8.1|65|0 +1.3.6.1.2.1.4.31.1.1.8.2|65|0 +1.3.6.1.2.1.4.31.1.1.9.1|65|0 +1.3.6.1.2.1.4.31.1.1.9.2|65|0 +1.3.6.1.2.1.4.31.1.1.10.1|65|0 +1.3.6.1.2.1.4.31.1.1.10.2|65|0 +1.3.6.1.2.1.4.31.1.1.11.1|65|0 +1.3.6.1.2.1.4.31.1.1.11.2|65|0 +1.3.6.1.2.1.4.31.1.1.12.1|65|0 +1.3.6.1.2.1.4.31.1.1.12.2|65|0 +1.3.6.1.2.1.4.31.1.1.13.1|70|0 +1.3.6.1.2.1.4.31.1.1.13.2|70|0 +1.3.6.1.2.1.4.31.1.1.14.1|65|0 +1.3.6.1.2.1.4.31.1.1.14.2|65|0 +1.3.6.1.2.1.4.31.1.1.15.1|65|0 +1.3.6.1.2.1.4.31.1.1.15.2|65|0 +1.3.6.1.2.1.4.31.1.1.16.1|65|0 +1.3.6.1.2.1.4.31.1.1.16.2|65|0 +1.3.6.1.2.1.4.31.1.1.17.1|65|0 +1.3.6.1.2.1.4.31.1.1.17.2|65|0 +1.3.6.1.2.1.4.31.1.1.18.1|65|59586721 +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|59586721 +1.3.6.1.2.1.4.31.1.1.19.2|70|0 +1.3.6.1.2.1.4.31.1.1.20.1|65|0 +1.3.6.1.2.1.4.31.1.1.20.2|65|58 +1.3.6.1.2.1.4.31.1.1.21.1|70|0 +1.3.6.1.2.1.4.31.1.1.21.2|70|58 +1.3.6.1.2.1.4.31.1.1.22.1|65|0 +1.3.6.1.2.1.4.31.1.1.22.2|65|2621 +1.3.6.1.2.1.4.31.1.1.23.1|65|0 +1.3.6.1.2.1.4.31.1.1.23.2|65|0 +1.3.6.1.2.1.4.31.1.1.24.1|70|0 +1.3.6.1.2.1.4.31.1.1.24.2|70|0 +1.3.6.1.2.1.4.31.1.1.25.1|65|572404 +1.3.6.1.2.1.4.31.1.1.25.2|65|18 +1.3.6.1.2.1.4.31.1.1.26.1|65|6590847 +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|6590847 +1.3.6.1.2.1.4.31.1.1.27.2|65|0 +1.3.6.1.2.1.4.31.1.1.28.1|65|0 +1.3.6.1.2.1.4.31.1.1.28.2|65|0 +1.3.6.1.2.1.4.31.1.1.29.1|65|32289173 +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|25125922 +1.3.6.1.2.1.4.31.1.1.30.2|65|4294964715 +1.3.6.1.2.1.4.31.1.1.31.1|70|25125922 +1.3.6.1.2.1.4.31.1.1.31.2|70|18446744073709549035 +1.3.6.1.2.1.4.31.1.1.32.1|65|0 +1.3.6.1.2.1.4.31.1.1.32.2|65|5568 +1.3.6.1.2.1.4.31.1.1.33.1|70|0 +1.3.6.1.2.1.4.31.1.1.33.2|70|5568 +1.3.6.1.2.1.4.31.1.1.34.1|65|27441106 +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|27441106 +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|2842008356 +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|41496714020 +1.3.6.1.2.1.4.31.1.1.37.2|70|0 +1.3.6.1.2.1.4.31.1.1.38.1|65|0 +1.3.6.1.2.1.4.31.1.1.38.2|65|22 +1.3.6.1.2.1.4.31.1.1.39.1|70|0 +1.3.6.1.2.1.4.31.1.1.39.2|70|22 +1.3.6.1.2.1.4.31.1.1.40.1|65|0 +1.3.6.1.2.1.4.31.1.1.40.2|65|2112 +1.3.6.1.2.1.4.31.1.1.41.1|70|0 +1.3.6.1.2.1.4.31.1.1.41.2|70|2112 +1.3.6.1.2.1.4.31.1.1.42.1|65|0 +1.3.6.1.2.1.4.31.1.1.43.1|70|0 +1.3.6.1.2.1.4.31.1.1.44.1|65|0 +1.3.6.1.2.1.4.31.1.1.45.1|70|0 +1.3.6.1.2.1.4.31.1.1.46.1|67|0 +1.3.6.1.2.1.4.31.1.1.46.2|67|0 +1.3.6.1.2.1.4.31.1.1.47.1|66|60000 +1.3.6.1.2.1.4.31.1.1.47.2|66|60000 +1.3.6.1.2.1.4.34.1.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|12 +1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|6|1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 +1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.1|6|1.3.6.1.2.1.4.32.1.5.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +1.3.6.1.2.1.4.34.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|2 +1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|5 +1.3.6.1.2.1.5.1.0|65|224867 +1.3.6.1.2.1.5.2.0|65|154 +1.3.6.1.2.1.5.3.0|65|212 +1.3.6.1.2.1.5.4.0|65|0 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|224585 +1.3.6.1.2.1.5.9.0|65|0 +1.3.6.1.2.1.5.10.0|65|68 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|2 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|756438 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|531939 +1.3.6.1.2.1.5.17.0|65|0 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|0 +1.3.6.1.2.1.5.22.0|65|224497 +1.3.6.1.2.1.5.23.0|65|0 +1.3.6.1.2.1.5.24.0|65|2 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.6.5.0|65|387 +1.3.6.1.2.1.6.6.0|65|426 +1.3.6.1.2.1.6.7.0|65|79 +1.3.6.1.2.1.6.8.0|65|59 +1.3.6.1.2.1.6.9.0|66|3 +1.3.6.1.2.1.6.10.0|65|26835779 +1.3.6.1.2.1.6.11.0|65|28491982 +1.3.6.1.2.1.6.12.0|65|14217 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|179850 +1.3.6.1.2.1.7.1.0|65|32019909 +1.3.6.1.2.1.7.2.0|65|505685 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|34385353 +1.3.6.1.2.1.10.7.2.1.19.4|2|3 +1.3.6.1.2.1.10.7.2.1.19.5|2|3 +1.3.6.1.2.1.10.7.2.1.19.6|2|1 +1.3.6.1.2.1.10.7.2.1.19.7|2|3 +1.3.6.1.2.1.10.7.2.1.19.8|2|1 +1.3.6.1.2.1.10.7.2.1.19.9|2|1 +1.3.6.1.2.1.10.7.2.1.19.10|2|1 +1.3.6.1.2.1.10.7.2.1.19.11|2|1 +1.3.6.1.2.1.11.1.0|65|120566 +1.3.6.1.2.1.11.2.0|65|120548 +1.3.6.1.2.1.11.3.0|65|0 +1.3.6.1.2.1.11.4.0|65|0 +1.3.6.1.2.1.11.5.0|65|0 +1.3.6.1.2.1.11.6.0|65|0 +1.3.6.1.2.1.11.8.0|65|0 +1.3.6.1.2.1.11.9.0|65|0 +1.3.6.1.2.1.11.10.0|65|0 +1.3.6.1.2.1.11.11.0|65|0 +1.3.6.1.2.1.11.12.0|65|0 +1.3.6.1.2.1.11.13.0|65|949507 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|13017 +1.3.6.1.2.1.11.16.0|65|20992 +1.3.6.1.2.1.11.17.0|65|0 +1.3.6.1.2.1.11.18.0|65|0 +1.3.6.1.2.1.11.19.0|65|0 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|0 +1.3.6.1.2.1.11.22.0|65|0 +1.3.6.1.2.1.11.24.0|65|0 +1.3.6.1.2.1.11.25.0|65|0 +1.3.6.1.2.1.11.26.0|65|0 +1.3.6.1.2.1.11.27.0|65|0 +1.3.6.1.2.1.11.28.0|65|120609 +1.3.6.1.2.1.11.29.0|65|2 +1.3.6.1.2.1.11.31.0|65|0 +1.3.6.1.2.1.11.32.0|65|0 +1.3.6.1.2.1.25.1.1.0|67|86400 +1.3.6.1.2.1.25.1.5.0|66|0 +1.3.6.1.2.1.25.1.6.0|66|204 +1.3.6.1.2.1.25.1.7.0|2|0 +1.3.6.1.2.1.25.2.3.1.1.1|2|1 +1.3.6.1.2.1.25.2.3.1.1.3|2|3 +1.3.6.1.2.1.25.2.3.1.1.6|2|6 +1.3.6.1.2.1.25.2.3.1.1.7|2|7 +1.3.6.1.2.1.25.2.3.1.1.8|2|8 +1.3.6.1.2.1.25.2.3.1.1.10|2|10 +1.3.6.1.2.1.25.2.3.1.1.31|2|31 +1.3.6.1.2.1.25.2.3.1.1.37|2|37 +1.3.6.1.2.1.25.2.3.1.1.38|2|38 +1.3.6.1.2.1.25.2.3.1.1.42|2|42 +1.3.6.1.2.1.25.2.3.1.1.46|2|46 +1.3.6.1.2.1.25.2.3.1.1.47|2|47 +1.3.6.1.2.1.25.2.3.1.1.48|2|48 +1.3.6.1.2.1.25.2.3.1.1.49|2|49 +1.3.6.1.2.1.25.2.3.1.1.50|2|50 +1.3.6.1.2.1.25.2.3.1.1.55|2|55 +1.3.6.1.2.1.25.2.3.1.1.57|2|57 +1.3.6.1.2.1.25.2.3.1.1.58|2|58 +1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.2 +1.3.6.1.2.1.25.2.3.1.2.3|6|1.3.6.1.2.1.25.2.1.3 +1.3.6.1.2.1.25.2.3.1.2.6|6|1.3.6.1.2.1.25.2.1.1 +1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.1 +1.3.6.1.2.1.25.2.3.1.2.8|6|1.3.6.1.2.1.25.2.1.1 +1.3.6.1.2.1.25.2.3.1.2.10|6|1.3.6.1.2.1.25.2.1.3 +1.3.6.1.2.1.25.2.3.1.2.31|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.37|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.38|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.42|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.46|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.47|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.48|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.49|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.50|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.55|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.57|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.58|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.3.1|4|Physical memory +1.3.6.1.2.1.25.2.3.1.3.3|4|Virtual memory +1.3.6.1.2.1.25.2.3.1.3.6|4|Memory buffers +1.3.6.1.2.1.25.2.3.1.3.7|4|Cached memory +1.3.6.1.2.1.25.2.3.1.3.8|4|Shared memory +1.3.6.1.2.1.25.2.3.1.3.10|4|Swap space +1.3.6.1.2.1.25.2.3.1.3.31|4|/ +1.3.6.1.2.1.25.2.3.1.3.37|4|/data/diagnostics +1.3.6.1.2.1.25.2.3.1.3.38|4|/data/config/snmp +1.3.6.1.2.1.25.2.3.1.3.42|4|/spool/dump/user_space_cores +1.3.6.1.2.1.25.2.3.1.3.46|4|/tmp/run/snmpd +1.3.6.1.2.1.25.2.3.1.3.47|4|/tmp/run/dmidata +1.3.6.1.2.1.25.2.3.1.3.48|4|/tmp/run/stonegate +1.3.6.1.2.1.25.2.3.1.3.49|4|/tmp/run/smonitd +1.3.6.1.2.1.25.2.3.1.3.50|4|/etc/passwd +1.3.6.1.2.1.25.2.3.1.3.55|4|/tmp/run/agentx +1.3.6.1.2.1.25.2.3.1.3.57|4|/tmp/hwmond-socket +1.3.6.1.2.1.25.2.3.1.3.58|4|/usr/sbin/snmpd_refresh_config +1.3.6.1.2.1.25.2.3.1.4.1|2|1024 +1.3.6.1.2.1.25.2.3.1.4.3|2|1024 +1.3.6.1.2.1.25.2.3.1.4.6|2|1024 +1.3.6.1.2.1.25.2.3.1.4.7|2|1024 +1.3.6.1.2.1.25.2.3.1.4.8|2|1024 +1.3.6.1.2.1.25.2.3.1.4.10|2|1024 +1.3.6.1.2.1.25.2.3.1.4.31|2|4096 +1.3.6.1.2.1.25.2.3.1.4.37|2|4096 +1.3.6.1.2.1.25.2.3.1.4.38|2|4096 +1.3.6.1.2.1.25.2.3.1.4.42|2|4096 +1.3.6.1.2.1.25.2.3.1.4.46|2|4096 +1.3.6.1.2.1.25.2.3.1.4.47|2|4096 +1.3.6.1.2.1.25.2.3.1.4.48|2|4096 +1.3.6.1.2.1.25.2.3.1.4.49|2|4096 +1.3.6.1.2.1.25.2.3.1.4.50|2|4096 +1.3.6.1.2.1.25.2.3.1.4.55|2|4096 +1.3.6.1.2.1.25.2.3.1.4.57|2|4096 +1.3.6.1.2.1.25.2.3.1.4.58|2|4096 +1.3.6.1.2.1.25.2.3.1.5.1|2|3895844 +1.3.6.1.2.1.25.2.3.1.5.3|2|8996380 +1.3.6.1.2.1.25.2.3.1.5.6|2|3895844 +1.3.6.1.2.1.25.2.3.1.5.7|2|1335656 +1.3.6.1.2.1.25.2.3.1.5.8|2|899308 +1.3.6.1.2.1.25.2.3.1.5.10|2|5100536 +1.3.6.1.2.1.25.2.3.1.5.31|2|486980 +1.3.6.1.2.1.25.2.3.1.5.37|2|495020 +1.3.6.1.2.1.25.2.3.1.5.38|2|495020 +1.3.6.1.2.1.25.2.3.1.5.42|2|2267505 +1.3.6.1.2.1.25.2.3.1.5.46|2|486980 +1.3.6.1.2.1.25.2.3.1.5.47|2|486980 +1.3.6.1.2.1.25.2.3.1.5.48|2|486980 +1.3.6.1.2.1.25.2.3.1.5.49|2|486980 +1.3.6.1.2.1.25.2.3.1.5.50|2|495020 +1.3.6.1.2.1.25.2.3.1.5.55|2|486980 +1.3.6.1.2.1.25.2.3.1.5.57|2|486980 +1.3.6.1.2.1.25.2.3.1.5.58|2|486980 +1.3.6.1.2.1.25.2.3.1.6.1|2|3473300 +1.3.6.1.2.1.25.2.3.1.6.3|2|3473300 +1.3.6.1.2.1.25.2.3.1.6.6|2|372024 +1.3.6.1.2.1.25.2.3.1.6.7|2|1335656 +1.3.6.1.2.1.25.2.3.1.6.8|2|899308 +1.3.6.1.2.1.25.2.3.1.6.10|2|0 +1.3.6.1.2.1.25.2.3.1.6.31|2|0 +1.3.6.1.2.1.25.2.3.1.6.37|2|70609 +1.3.6.1.2.1.25.2.3.1.6.38|2|70609 +1.3.6.1.2.1.25.2.3.1.6.42|2|820725 +1.3.6.1.2.1.25.2.3.1.6.46|2|440 +1.3.6.1.2.1.25.2.3.1.6.47|2|440 +1.3.6.1.2.1.25.2.3.1.6.48|2|440 +1.3.6.1.2.1.25.2.3.1.6.49|2|440 +1.3.6.1.2.1.25.2.3.1.6.50|2|70609 +1.3.6.1.2.1.25.2.3.1.6.55|2|440 +1.3.6.1.2.1.25.2.3.1.6.57|2|440 +1.3.6.1.2.1.25.2.3.1.6.58|2|440 +1.3.6.1.2.1.25.3.2.1.1.196608|2|196608 +1.3.6.1.2.1.25.3.2.1.1.196609|2|196609 +1.3.6.1.2.1.25.3.2.1.1.262145|2|262145 +1.3.6.1.2.1.25.3.2.1.1.262147|2|262147 +1.3.6.1.2.1.25.3.2.1.1.262148|2|262148 +1.3.6.1.2.1.25.3.2.1.1.262149|2|262149 +1.3.6.1.2.1.25.3.2.1.1.262150|2|262150 +1.3.6.1.2.1.25.3.2.1.1.262151|2|262151 +1.3.6.1.2.1.25.3.2.1.1.262152|2|262152 +1.3.6.1.2.1.25.3.2.1.1.262153|2|262153 +1.3.6.1.2.1.25.3.2.1.1.262154|2|262154 +1.3.6.1.2.1.25.3.2.1.1.262155|2|262155 +1.3.6.1.2.1.25.3.2.1.1.262156|2|262156 +1.3.6.1.2.1.25.3.2.1.1.786432|2|786432 +1.3.6.1.2.1.25.3.2.1.2.196608|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.196609|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.262145|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262147|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262148|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262149|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262150|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262151|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262152|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262153|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262154|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262155|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262156|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.786432|6|1.3.6.1.2.1.25.3.1.12 +1.3.6.1.2.1.25.3.2.1.3.196608|4|GenuineIntel: Intel(R) Atom(TM) CPU C3338 @ 1.50GHz +1.3.6.1.2.1.25.3.2.1.3.196609|4|GenuineIntel: Intel(R) Atom(TM) CPU C3338 @ 1.50GHz +1.3.6.1.2.1.25.3.2.1.3.262145|4|network interface lo +1.3.6.1.2.1.25.3.2.1.3.262147|4|network interface tunl0 +1.3.6.1.2.1.25.3.2.1.3.262148|4|network interface eth0 +1.3.6.1.2.1.25.3.2.1.3.262149|4|network interface eth1 +1.3.6.1.2.1.25.3.2.1.3.262150|4|network interface eth2 +1.3.6.1.2.1.25.3.2.1.3.262151|4|network interface eth3 +1.3.6.1.2.1.25.3.2.1.3.262152|4|network interface eth4 +1.3.6.1.2.1.25.3.2.1.3.262153|4|network interface eth5 +1.3.6.1.2.1.25.3.2.1.3.262154|4|network interface eth6 +1.3.6.1.2.1.25.3.2.1.3.262155|4|network interface eth7 +1.3.6.1.2.1.25.3.2.1.3.262156|4|network interface overlay +1.3.6.1.2.1.25.3.2.1.3.786432|4|Guessing that there's a floating point co-processor +1.3.6.1.2.1.25.3.2.1.4.196608|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.196609|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262145|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262147|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262148|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262149|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262150|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262151|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262152|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262153|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262154|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262155|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262156|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.786432|6|0.0 +1.3.6.1.2.1.25.3.2.1.5.196608|2|2 +1.3.6.1.2.1.25.3.2.1.5.196609|2|2 +1.3.6.1.2.1.25.3.2.1.5.262145|2|2 +1.3.6.1.2.1.25.3.2.1.5.262147|2|5 +1.3.6.1.2.1.25.3.2.1.5.262148|2|2 +1.3.6.1.2.1.25.3.2.1.5.262149|2|2 +1.3.6.1.2.1.25.3.2.1.5.262150|2|5 +1.3.6.1.2.1.25.3.2.1.5.262151|2|2 +1.3.6.1.2.1.25.3.2.1.5.262152|2|5 +1.3.6.1.2.1.25.3.2.1.5.262153|2|5 +1.3.6.1.2.1.25.3.2.1.5.262154|2|5 +1.3.6.1.2.1.25.3.2.1.5.262155|2|5 +1.3.6.1.2.1.25.3.2.1.5.262156|2|2 +1.3.6.1.2.1.25.3.2.1.6.262145|65|0 +1.3.6.1.2.1.25.3.2.1.6.262147|65|0 +1.3.6.1.2.1.25.3.2.1.6.262148|65|0 +1.3.6.1.2.1.25.3.2.1.6.262149|65|0 +1.3.6.1.2.1.25.3.2.1.6.262150|65|0 +1.3.6.1.2.1.25.3.2.1.6.262151|65|0 +1.3.6.1.2.1.25.3.2.1.6.262152|65|0 +1.3.6.1.2.1.25.3.2.1.6.262153|65|0 +1.3.6.1.2.1.25.3.2.1.6.262154|65|0 +1.3.6.1.2.1.25.3.2.1.6.262155|65|0 +1.3.6.1.2.1.25.3.2.1.6.262156|65|0 +1.3.6.1.2.1.25.3.3.1.1.196608|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.196609|6|0.0 +1.3.6.1.2.1.25.3.3.1.2.196608|2|6 +1.3.6.1.2.1.25.3.3.1.2.196609|2|8 +1.3.6.1.2.1.31.1.1.1.1.1|4|lo +1.3.6.1.2.1.31.1.1.1.1.3|4|tunl0 +1.3.6.1.2.1.31.1.1.1.1.4|4|eth0 +1.3.6.1.2.1.31.1.1.1.1.5|4|eth1 +1.3.6.1.2.1.31.1.1.1.1.6|4|eth2 +1.3.6.1.2.1.31.1.1.1.1.7|4|eth3 +1.3.6.1.2.1.31.1.1.1.1.8|4|eth4 +1.3.6.1.2.1.31.1.1.1.1.9|4|eth5 +1.3.6.1.2.1.31.1.1.1.1.10|4|eth6 +1.3.6.1.2.1.31.1.1.1.1.11|4|eth7 +1.3.6.1.2.1.31.1.1.1.1.12|4|overlay +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.3|65|0 +1.3.6.1.2.1.31.1.1.1.2.4|65|1881514 +1.3.6.1.2.1.31.1.1.1.2.5|65|39570 +1.3.6.1.2.1.31.1.1.1.2.6|65|0 +1.3.6.1.2.1.31.1.1.1.2.7|65|48717311 +1.3.6.1.2.1.31.1.1.1.2.8|65|0 +1.3.6.1.2.1.31.1.1.1.2.9|65|0 +1.3.6.1.2.1.31.1.1.1.2.10|65|0 +1.3.6.1.2.1.31.1.1.1.2.11|65|0 +1.3.6.1.2.1.31.1.1.1.2.12|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.3|65|0 +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|0 +1.3.6.1.2.1.31.1.1.1.3.6|65|0 +1.3.6.1.2.1.31.1.1.1.3.7|65|0 +1.3.6.1.2.1.31.1.1.1.3.8|65|0 +1.3.6.1.2.1.31.1.1.1.3.9|65|0 +1.3.6.1.2.1.31.1.1.1.3.10|65|0 +1.3.6.1.2.1.31.1.1.1.3.11|65|0 +1.3.6.1.2.1.31.1.1.1.3.12|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.3|65|0 +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|0 +1.3.6.1.2.1.31.1.1.1.4.6|65|0 +1.3.6.1.2.1.31.1.1.1.4.7|65|0 +1.3.6.1.2.1.31.1.1.1.4.8|65|0 +1.3.6.1.2.1.31.1.1.1.4.9|65|0 +1.3.6.1.2.1.31.1.1.1.4.10|65|0 +1.3.6.1.2.1.31.1.1.1.4.11|65|0 +1.3.6.1.2.1.31.1.1.1.4.12|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.3|65|0 +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|0 +1.3.6.1.2.1.31.1.1.1.5.6|65|0 +1.3.6.1.2.1.31.1.1.1.5.7|65|0 +1.3.6.1.2.1.31.1.1.1.5.8|65|0 +1.3.6.1.2.1.31.1.1.1.5.9|65|0 +1.3.6.1.2.1.31.1.1.1.5.10|65|0 +1.3.6.1.2.1.31.1.1.1.5.11|65|0 +1.3.6.1.2.1.31.1.1.1.5.12|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|3160 +1.3.6.1.2.1.31.1.1.1.6.3|70|0 +1.3.6.1.2.1.31.1.1.1.6.4|70|174554892257 +1.3.6.1.2.1.31.1.1.1.6.5|70|162859582301 +1.3.6.1.2.1.31.1.1.1.6.6|70|0 +1.3.6.1.2.1.31.1.1.1.6.7|70|44469437210 +1.3.6.1.2.1.31.1.1.1.6.8|70|0 +1.3.6.1.2.1.31.1.1.1.6.9|70|0 +1.3.6.1.2.1.31.1.1.1.6.10|70|0 +1.3.6.1.2.1.31.1.1.1.6.11|70|0 +1.3.6.1.2.1.31.1.1.1.6.12|70|0 +1.3.6.1.2.1.31.1.1.1.7.1|70|79 +1.3.6.1.2.1.31.1.1.1.7.3|70|0 +1.3.6.1.2.1.31.1.1.1.7.4|70|805160177 +1.3.6.1.2.1.31.1.1.1.7.5|70|216175452 +1.3.6.1.2.1.31.1.1.1.7.6|70|0 +1.3.6.1.2.1.31.1.1.1.7.7|70|4104486 +1.3.6.1.2.1.31.1.1.1.7.8|70|0 +1.3.6.1.2.1.31.1.1.1.7.9|70|0 +1.3.6.1.2.1.31.1.1.1.7.10|70|0 +1.3.6.1.2.1.31.1.1.1.7.11|70|0 +1.3.6.1.2.1.31.1.1.1.7.12|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.3|70|0 +1.3.6.1.2.1.31.1.1.1.8.4|70|1881514 +1.3.6.1.2.1.31.1.1.1.8.5|70|39570 +1.3.6.1.2.1.31.1.1.1.8.6|70|0 +1.3.6.1.2.1.31.1.1.1.8.7|70|48717311 +1.3.6.1.2.1.31.1.1.1.8.8|70|0 +1.3.6.1.2.1.31.1.1.1.8.9|70|0 +1.3.6.1.2.1.31.1.1.1.8.10|70|0 +1.3.6.1.2.1.31.1.1.1.8.11|70|0 +1.3.6.1.2.1.31.1.1.1.8.12|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.3|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.9.6|70|0 +1.3.6.1.2.1.31.1.1.1.9.7|70|0 +1.3.6.1.2.1.31.1.1.1.9.8|70|0 +1.3.6.1.2.1.31.1.1.1.9.9|70|0 +1.3.6.1.2.1.31.1.1.1.9.10|70|0 +1.3.6.1.2.1.31.1.1.1.9.11|70|0 +1.3.6.1.2.1.31.1.1.1.9.12|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|3160 +1.3.6.1.2.1.31.1.1.1.10.3|70|0 +1.3.6.1.2.1.31.1.1.1.10.4|70|315812006681 +1.3.6.1.2.1.31.1.1.1.10.5|70|35882593560 +1.3.6.1.2.1.31.1.1.1.10.6|70|0 +1.3.6.1.2.1.31.1.1.1.10.7|70|52706236754 +1.3.6.1.2.1.31.1.1.1.10.8|70|0 +1.3.6.1.2.1.31.1.1.1.10.9|70|0 +1.3.6.1.2.1.31.1.1.1.10.10|70|0 +1.3.6.1.2.1.31.1.1.1.10.11|70|0 +1.3.6.1.2.1.31.1.1.1.10.12|70|2112 +1.3.6.1.2.1.31.1.1.1.11.1|70|79 +1.3.6.1.2.1.31.1.1.1.11.3|70|0 +1.3.6.1.2.1.31.1.1.1.11.4|70|848040743 +1.3.6.1.2.1.31.1.1.1.11.5|70|164226449 +1.3.6.1.2.1.31.1.1.1.11.6|70|0 +1.3.6.1.2.1.31.1.1.1.11.7|70|58768222 +1.3.6.1.2.1.31.1.1.1.11.8|70|0 +1.3.6.1.2.1.31.1.1.1.11.9|70|0 +1.3.6.1.2.1.31.1.1.1.11.10|70|0 +1.3.6.1.2.1.31.1.1.1.11.11|70|0 +1.3.6.1.2.1.31.1.1.1.11.12|70|22 +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.3|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.12.6|70|0 +1.3.6.1.2.1.31.1.1.1.12.7|70|0 +1.3.6.1.2.1.31.1.1.1.12.8|70|0 +1.3.6.1.2.1.31.1.1.1.12.9|70|0 +1.3.6.1.2.1.31.1.1.1.12.10|70|0 +1.3.6.1.2.1.31.1.1.1.12.11|70|0 +1.3.6.1.2.1.31.1.1.1.12.12|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.3|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.13.6|70|0 +1.3.6.1.2.1.31.1.1.1.13.7|70|0 +1.3.6.1.2.1.31.1.1.1.13.8|70|0 +1.3.6.1.2.1.31.1.1.1.13.9|70|0 +1.3.6.1.2.1.31.1.1.1.13.10|70|0 +1.3.6.1.2.1.31.1.1.1.13.11|70|0 +1.3.6.1.2.1.31.1.1.1.13.12|70|0 +1.3.6.1.2.1.31.1.1.1.14.1|2|2 +1.3.6.1.2.1.31.1.1.1.14.3|2|2 +1.3.6.1.2.1.31.1.1.1.14.4|2|2 +1.3.6.1.2.1.31.1.1.1.14.5|2|2 +1.3.6.1.2.1.31.1.1.1.14.6|2|2 +1.3.6.1.2.1.31.1.1.1.14.7|2|2 +1.3.6.1.2.1.31.1.1.1.14.8|2|2 +1.3.6.1.2.1.31.1.1.1.14.9|2|2 +1.3.6.1.2.1.31.1.1.1.14.10|2|2 +1.3.6.1.2.1.31.1.1.1.14.11|2|2 +1.3.6.1.2.1.31.1.1.1.14.12|2|2 +1.3.6.1.2.1.31.1.1.1.15.1|66|10 +1.3.6.1.2.1.31.1.1.1.15.3|66|0 +1.3.6.1.2.1.31.1.1.1.15.4|66|1000 +1.3.6.1.2.1.31.1.1.1.15.5|66|1000 +1.3.6.1.2.1.31.1.1.1.15.6|66|0 +1.3.6.1.2.1.31.1.1.1.15.7|66|1000 +1.3.6.1.2.1.31.1.1.1.15.8|66|0 +1.3.6.1.2.1.31.1.1.1.15.9|66|0 +1.3.6.1.2.1.31.1.1.1.15.10|66|0 +1.3.6.1.2.1.31.1.1.1.15.11|66|0 +1.3.6.1.2.1.31.1.1.1.15.12|66|0 +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.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.17.1|2|2 +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.18.1|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.19.1|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.4.1.2021.10.1.5.1|2|6 +1.3.6.1.4.1.2021.10.1.5.2|2|10 +1.3.6.1.4.1.2021.10.1.5.3|2|9 +1.3.6.1.4.1.2021.11.1.0|2|1 +1.3.6.1.4.1.2021.11.2.0|4|systemStats +1.3.6.1.4.1.2021.11.3.0|2|0 +1.3.6.1.4.1.2021.11.4.0|2|0 +1.3.6.1.4.1.2021.11.5.0|2|40 +1.3.6.1.4.1.2021.11.6.0|2|0 +1.3.6.1.4.1.2021.11.7.0|2|2900 +1.3.6.1.4.1.2021.11.8.0|2|2864 +1.3.6.1.4.1.2021.11.9.0|2|1 +1.3.6.1.4.1.2021.11.10.0|2|3 +1.3.6.1.4.1.2021.11.11.0|2|93 +1.3.6.1.4.1.2021.11.50.0|65|2779293 +1.3.6.1.4.1.2021.11.51.0|65|58959 +1.3.6.1.4.1.2021.11.52.0|65|5415020 +1.3.6.1.4.1.2021.11.53.0|65|178292266 +1.3.6.1.4.1.2021.11.54.0|65|658590 +1.3.6.1.4.1.2021.11.55.0|65|0 +1.3.6.1.4.1.2021.11.56.0|65|0 +1.3.6.1.4.1.2021.11.57.0|65|44171096 +1.3.6.1.4.1.2021.11.58.0|65|2158382 +1.3.6.1.4.1.2021.11.59.0|65|2860836716 +1.3.6.1.4.1.2021.11.60.0|65|2656642845 +1.3.6.1.4.1.2021.11.61.0|65|1418605 +1.3.6.1.4.1.2021.11.62.0|65|0 +1.3.6.1.4.1.2021.11.63.0|65|0 +1.3.6.1.4.1.2021.11.64.0|65|0 +1.3.6.1.4.1.2021.11.65.0|65|0 +1.3.6.1.4.1.2021.11.66.0|65|0 +1.3.6.1.4.1.2021.11.67.0|2|2 +1.3.6.1.4.1.2021.13.15.1.1.1.1|2|1 +1.3.6.1.4.1.2021.13.15.1.1.1.2|2|2 +1.3.6.1.4.1.2021.13.15.1.1.1.3|2|3 +1.3.6.1.4.1.2021.13.15.1.1.1.4|2|4 +1.3.6.1.4.1.2021.13.15.1.1.1.5|2|5 +1.3.6.1.4.1.2021.13.15.1.1.1.6|2|6 +1.3.6.1.4.1.2021.13.15.1.1.1.7|2|7 +1.3.6.1.4.1.2021.13.15.1.1.1.8|2|8 +1.3.6.1.4.1.2021.13.15.1.1.1.9|2|9 +1.3.6.1.4.1.2021.13.15.1.1.1.10|2|10 +1.3.6.1.4.1.2021.13.15.1.1.1.11|2|11 +1.3.6.1.4.1.2021.13.15.1.1.1.12|2|12 +1.3.6.1.4.1.2021.13.15.1.1.1.13|2|13 +1.3.6.1.4.1.2021.13.15.1.1.1.14|2|14 +1.3.6.1.4.1.2021.13.15.1.1.1.15|2|15 +1.3.6.1.4.1.2021.13.15.1.1.1.16|2|16 +1.3.6.1.4.1.2021.13.15.1.1.1.17|2|17 +1.3.6.1.4.1.2021.13.15.1.1.1.18|2|18 +1.3.6.1.4.1.2021.13.15.1.1.1.19|2|19 +1.3.6.1.4.1.2021.13.15.1.1.1.20|2|20 +1.3.6.1.4.1.2021.13.15.1.1.1.21|2|21 +1.3.6.1.4.1.2021.13.15.1.1.1.22|2|22 +1.3.6.1.4.1.2021.13.15.1.1.1.23|2|23 +1.3.6.1.4.1.2021.13.15.1.1.1.24|2|24 +1.3.6.1.4.1.2021.13.15.1.1.1.25|2|25 +1.3.6.1.4.1.2021.13.15.1.1.1.26|2|26 +1.3.6.1.4.1.2021.13.15.1.1.1.27|2|27 +1.3.6.1.4.1.2021.13.15.1.1.1.28|2|28 +1.3.6.1.4.1.2021.13.15.1.1.1.29|2|29 +1.3.6.1.4.1.2021.13.15.1.1.1.30|2|30 +1.3.6.1.4.1.2021.13.15.1.1.2.1|4|ram0 +1.3.6.1.4.1.2021.13.15.1.1.2.2|4|ram1 +1.3.6.1.4.1.2021.13.15.1.1.2.3|4|ram2 +1.3.6.1.4.1.2021.13.15.1.1.2.4|4|ram3 +1.3.6.1.4.1.2021.13.15.1.1.2.5|4|ram4 +1.3.6.1.4.1.2021.13.15.1.1.2.6|4|ram5 +1.3.6.1.4.1.2021.13.15.1.1.2.7|4|ram6 +1.3.6.1.4.1.2021.13.15.1.1.2.8|4|ram7 +1.3.6.1.4.1.2021.13.15.1.1.2.9|4|ram8 +1.3.6.1.4.1.2021.13.15.1.1.2.10|4|ram9 +1.3.6.1.4.1.2021.13.15.1.1.2.11|4|ram10 +1.3.6.1.4.1.2021.13.15.1.1.2.12|4|ram11 +1.3.6.1.4.1.2021.13.15.1.1.2.13|4|ram12 +1.3.6.1.4.1.2021.13.15.1.1.2.14|4|ram13 +1.3.6.1.4.1.2021.13.15.1.1.2.15|4|ram14 +1.3.6.1.4.1.2021.13.15.1.1.2.16|4|ram15 +1.3.6.1.4.1.2021.13.15.1.1.2.17|4|loop0 +1.3.6.1.4.1.2021.13.15.1.1.2.18|4|loop1 +1.3.6.1.4.1.2021.13.15.1.1.2.19|4|loop2 +1.3.6.1.4.1.2021.13.15.1.1.2.20|4|loop3 +1.3.6.1.4.1.2021.13.15.1.1.2.21|4|sda +1.3.6.1.4.1.2021.13.15.1.1.2.22|4|sda1 +1.3.6.1.4.1.2021.13.15.1.1.2.23|4|sda2 +1.3.6.1.4.1.2021.13.15.1.1.2.24|4|sda3 +1.3.6.1.4.1.2021.13.15.1.1.2.25|4|sda4 +1.3.6.1.4.1.2021.13.15.1.1.2.26|4|sda5 +1.3.6.1.4.1.2021.13.15.1.1.2.27|4|sda6 +1.3.6.1.4.1.2021.13.15.1.1.2.28|4|sda7 +1.3.6.1.4.1.2021.13.15.1.1.2.29|4|sda8 +1.3.6.1.4.1.2021.13.15.1.1.2.30|4|sda9 +1.3.6.1.4.1.2021.13.15.1.1.3.1|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.2|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.3|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.4|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.5|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.6|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.7|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.8|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.9|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.10|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.11|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.12|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.13|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.14|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.15|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.16|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.17|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.18|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.19|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.20|65|0 +1.3.6.1.4.1.2021.13.15.1.1.3.21|65|1105026048 +1.3.6.1.4.1.2021.13.15.1.1.3.22|65|765952 +1.3.6.1.4.1.2021.13.15.1.1.3.23|65|2031616 +1.3.6.1.4.1.2021.13.15.1.1.3.24|65|1739776 +1.3.6.1.4.1.2021.13.15.1.1.3.25|65|43008 +1.3.6.1.4.1.2021.13.15.1.1.3.26|65|363971584 +1.3.6.1.4.1.2021.13.15.1.1.3.27|65|625438720 +1.3.6.1.4.1.2021.13.15.1.1.3.28|65|3493888 +1.3.6.1.4.1.2021.13.15.1.1.3.29|65|92305408 +1.3.6.1.4.1.2021.13.15.1.1.3.30|65|14906368 +1.3.6.1.4.1.2021.13.15.1.1.4.1|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.2|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.3|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.4|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.5|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.6|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.7|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.8|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.9|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.10|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.11|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.12|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.13|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.14|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.15|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.16|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.17|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.18|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.19|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.20|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.21|65|1140748288 +1.3.6.1.4.1.2021.13.15.1.1.4.22|65|163840 +1.3.6.1.4.1.2021.13.15.1.1.4.23|65|212992 +1.3.6.1.4.1.2021.13.15.1.1.4.24|65|229376 +1.3.6.1.4.1.2021.13.15.1.1.4.25|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.26|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.27|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.28|65|0 +1.3.6.1.4.1.2021.13.15.1.1.4.29|65|2703245312 +1.3.6.1.4.1.2021.13.15.1.1.4.30|65|2731864064 +1.3.6.1.4.1.2021.13.15.1.1.5.1|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.2|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.3|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.4|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.5|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.6|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.7|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.8|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.9|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.10|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.11|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.12|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.13|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.14|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.15|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.16|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.17|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.18|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.19|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.20|65|0 +1.3.6.1.4.1.2021.13.15.1.1.5.21|65|21497 +1.3.6.1.4.1.2021.13.15.1.1.5.22|65|160 +1.3.6.1.4.1.2021.13.15.1.1.5.23|65|331 +1.3.6.1.4.1.2021.13.15.1.1.5.24|65|327 +1.3.6.1.4.1.2021.13.15.1.1.5.25|65|40 +1.3.6.1.4.1.2021.13.15.1.1.5.26|65|2951 +1.3.6.1.4.1.2021.13.15.1.1.5.27|65|13185 +1.3.6.1.4.1.2021.13.15.1.1.5.28|65|129 +1.3.6.1.4.1.2021.13.15.1.1.5.29|65|2868 +1.3.6.1.4.1.2021.13.15.1.1.5.30|65|1446 +1.3.6.1.4.1.2021.13.15.1.1.6.1|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.2|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.3|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.4|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.5|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.6|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.7|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.8|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.9|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.10|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.11|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.12|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.13|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.14|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.15|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.16|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.17|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.18|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.19|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.20|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.21|65|1213551 +1.3.6.1.4.1.2021.13.15.1.1.6.22|65|34 +1.3.6.1.4.1.2021.13.15.1.1.6.23|65|52 +1.3.6.1.4.1.2021.13.15.1.1.6.24|65|56 +1.3.6.1.4.1.2021.13.15.1.1.6.25|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.26|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.27|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.28|65|0 +1.3.6.1.4.1.2021.13.15.1.1.6.29|65|406640 +1.3.6.1.4.1.2021.13.15.1.1.6.30|65|805580 +1.3.6.1.4.1.2021.13.15.1.1.9.1|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.2|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.3|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.4|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.5|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.6|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.7|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.8|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.9|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.10|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.11|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.12|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.13|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.14|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.15|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.16|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.17|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.18|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.19|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.20|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.21|2|1 +1.3.6.1.4.1.2021.13.15.1.1.9.22|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.23|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.24|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.25|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.26|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.27|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.28|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.29|2|0 +1.3.6.1.4.1.2021.13.15.1.1.9.30|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.1|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.2|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.3|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.4|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.5|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.6|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.7|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.8|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.9|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.10|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.11|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.12|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.13|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.14|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.15|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.16|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.17|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.18|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.19|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.20|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.21|2|1 +1.3.6.1.4.1.2021.13.15.1.1.10.22|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.23|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.24|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.25|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.26|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.27|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.28|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.29|2|0 +1.3.6.1.4.1.2021.13.15.1.1.10.30|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.1|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.2|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.3|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.4|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.5|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.6|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.7|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.8|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.9|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.10|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.11|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.12|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.13|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.14|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.15|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.16|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.17|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.18|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.19|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.20|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.21|2|1 +1.3.6.1.4.1.2021.13.15.1.1.11.22|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.23|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.24|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.25|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.26|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.27|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.28|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.29|2|0 +1.3.6.1.4.1.2021.13.15.1.1.11.30|2|0 +1.3.6.1.4.1.2021.13.15.1.1.12.1|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.2|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.3|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.4|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.5|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.6|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.7|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.8|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.9|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.10|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.11|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.12|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.13|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.14|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.15|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.16|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.17|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.18|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.19|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.20|70|0 +1.3.6.1.4.1.2021.13.15.1.1.12.21|70|1105026048 +1.3.6.1.4.1.2021.13.15.1.1.12.22|70|765952 +1.3.6.1.4.1.2021.13.15.1.1.12.23|70|2031616 +1.3.6.1.4.1.2021.13.15.1.1.12.24|70|1739776 +1.3.6.1.4.1.2021.13.15.1.1.12.25|70|43008 +1.3.6.1.4.1.2021.13.15.1.1.12.26|70|363971584 +1.3.6.1.4.1.2021.13.15.1.1.12.27|70|625438720 +1.3.6.1.4.1.2021.13.15.1.1.12.28|70|3493888 +1.3.6.1.4.1.2021.13.15.1.1.12.29|70|92305408 +1.3.6.1.4.1.2021.13.15.1.1.12.30|70|14906368 +1.3.6.1.4.1.2021.13.15.1.1.13.1|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.2|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.3|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.4|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.5|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.6|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.7|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.8|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.9|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.10|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.11|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.12|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.13|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.14|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.15|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.16|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.17|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.18|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.19|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.20|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.21|70|22615584768 +1.3.6.1.4.1.2021.13.15.1.1.13.22|70|163840 +1.3.6.1.4.1.2021.13.15.1.1.13.23|70|212992 +1.3.6.1.4.1.2021.13.15.1.1.13.24|70|229376 +1.3.6.1.4.1.2021.13.15.1.1.13.25|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.26|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.27|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.28|70|0 +1.3.6.1.4.1.2021.13.15.1.1.13.29|70|2703245312 +1.3.6.1.4.1.2021.13.15.1.1.13.30|70|19911733248 +1.3.6.1.4.1.2021.13.15.1.1.14.1|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.2|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.3|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.4|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.5|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.6|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.7|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.8|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.9|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.10|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.11|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.12|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.13|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.14|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.15|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.16|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.17|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.18|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.19|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.20|70|0 +1.3.6.1.4.1.2021.13.15.1.1.14.21|70|10641730000 +1.3.6.1.4.1.2021.13.15.1.1.14.22|70|300000 +1.3.6.1.4.1.2021.13.15.1.1.14.23|70|410000 +1.3.6.1.4.1.2021.13.15.1.1.14.24|70|400000 +1.3.6.1.4.1.2021.13.15.1.1.14.25|70|170000 +1.3.6.1.4.1.2021.13.15.1.1.14.26|70|1960000 +1.3.6.1.4.1.2021.13.15.1.1.14.27|70|17990000 +1.3.6.1.4.1.2021.13.15.1.1.14.28|70|150000 +1.3.6.1.4.1.2021.13.15.1.1.14.29|70|4206470000 +1.3.6.1.4.1.2021.13.15.1.1.14.30|70|7144740000 +1.3.6.1.4.1.47565.1.1.1.1.0|4|7.1.1.29059 +1.3.6.1.4.1.47565.1.1.1.11.1.1.3.0|66|7 +1.3.6.1.4.1.47565.1.1.1.11.1.1.3.1|66|6 +1.3.6.1.4.1.47565.1.1.1.11.1.1.3.2|66|8 +1.3.6.1.4.1.47565.1.1.1.11.2.4.0|70|3989344256 +1.3.6.1.4.1.47565.1.1.1.11.2.5.0|70|3556892672 +1.3.6.1.4.1.47565.1.1.1.11.2.6.0|70|433135616 +1.3.6.1.4.1.47565.1.1.1.11.3.1.2.1|4|/dev/discs/disc0/part6 +1.3.6.1.4.1.47565.1.1.1.11.3.1.2.2|4|/dev/sda8 +1.3.6.1.4.1.47565.1.1.1.11.3.1.2.3|4|/dev/sda9 +1.3.6.1.4.1.47565.1.1.1.11.3.1.3.1|4|/lib +1.3.6.1.4.1.47565.1.1.1.11.3.1.3.2|4|/data/diagnostics +1.3.6.1.4.1.47565.1.1.1.11.3.1.3.3|4|/spool/dump/user_space_cores +1.3.6.1.4.1.47565.1.1.1.11.3.1.4.1|70|490240 +1.3.6.1.4.1.47565.1.1.1.11.3.1.4.2|70|1980080 +1.3.6.1.4.1.47565.1.1.1.11.3.1.4.3|70|9070020 +1.3.6.1.4.1.47565.1.1.1.11.3.1.5.1|70|490240 +1.3.6.1.4.1.47565.1.1.1.11.3.1.5.2|70|282436 +1.3.6.1.4.1.47565.1.1.1.11.3.1.5.3|70|3282876 +1.3.6.1.4.1.47565.1.1.1.11.3.1.6.1|70|0 +1.3.6.1.4.1.47565.1.1.1.11.3.1.6.2|70|1697644 +1.3.6.1.4.1.47565.1.1.1.11.3.1.6.3|70|5787144 +1.3.6.1.4.1.47565.1.1.1.19.9.0|4|330-2-C1 +1.3.6.1.4.1.47565.1.1.1.19.13.0|4|unavailable +1.3.6.1.6.3.10.2.1.3.0|2|43200