device: Added temp, power and state sensors to procurve os (#8281)

* device: Added temp, power and state sensors to procurve os

* changed sensor value

* updated sensors value

* updated test data
This commit is contained in:
Neil Lathwood 2018-02-27 20:48:16 +00:00 committed by GitHub
parent 897081b2d3
commit 9dac4cfa6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 3454 additions and 180 deletions

View File

@ -1,4 +1,4 @@
mib: STATISTICS-MIB
mib: POWERSUPPLY-MIB:FAN-MIB:STATISTICS-MIB
modules:
processors:
data:
@ -6,3 +6,51 @@ modules:
oid: hpSwitchCpuStat
num_oid: '.1.3.6.1.4.1.11.2.14.11.5.1.9.6.1.{{ $index }}'
type: procurve-fixed
sensors:
temperature:
data:
-
oid: hpicfPsTable
value: hpicfPsTemp
num_oid: .1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.4.
index: 'hpicfPsTemp.{{ $index }}'
descr: 'Power Supply #{{ $index }}'
power:
data:
-
oid: hpicfPsTable
value: hpicfPsWattageCur
num_oid: .1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.6.
index: 'hpicfPsWattageCur.{{ $index }}'
high_limit: hpicfPsWattageMax
descr: 'Power Supply #{{ $index }}'
state:
data:
-
oid: hpicfFanTable
value: hpicfFanState
num_oid: .1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.
descr: 'Fan #{{ $index }}'
index: 'hpicfFanState.{{ $index }}'
state_name: hpicfFanState
states:
- { descr: removed, graph: 1, value: 1, generic: 3 }
- { descr: off, graph: 1, value: 2, generic: 3 }
- { descr: underspeed, graph: 1, value: 3, generic: 1 }
- { descr: overspeed, graph: 1, value: 4, generic: 1 }
- { descr: ok, graph: 1, value: 5, generic: 0 }
- { descr: maxstate, graph: 1, value: 6, generic: 3 }
-
oid: hpicfPsTable
value: hpicfPsState
num_oid: .1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.2.
descr: 'Power Supply #{{ $index }}'
index: 'hpicfPsState.{{ $index }}'
state_name: hpicfPsState
states:
- { descr: psNotPresent, graph: 1, value: 1, generic: 3 }
- { descr: psNotPlugged, graph: 1, value: 2, generic: 2 }
- { descr: psPowered, graph: 1, value: 3, generic: 0 }
- { descr: psFailed, graph: 1, value: 4, generic: 2 }
- { descr: psPermFailure, graph: 1, value: 5, generic: 2 }
- { descr: psMax, graph: 1, value: 6, generic: 3 }

236
mibs/hp/FAN-MIB Normal file
View File

@ -0,0 +1,236 @@
FAN-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32, Unsigned32
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION
FROM SNMPv2-TC
hpSwitch
FROM HP-ICF-OID;
hpicfFanMIB MODULE-IDENTITY
LAST-UPDATED "200808271030Z" --August 27, 2008 10:30 GMT
ORGANIZATION "HP Networking"
CONTACT-INFO "Hewlett-Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION "The MIB module is for representing switch fan entity."
REVISION "200808271030Z" --August 27, 2008 10:30 GMT
DESCRIPTION "Revision 01."
::= { hpSwitch 54 }
-- ********************************************************************
-- FAN Textual Conventions
-- ********************************************************************
HpicfDcFanIndex ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION "A unique value that serves as an index to identify the fan."
SYNTAX Unsigned32
HpicfDcFanType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "An enumerated value that indications the fan types."
SYNTAX INTEGER {
unknown(0),
mm(1),
fm(2),
im(3),
ps(4),
rollup(5),
maxtype(6)
}
HpicfDcFanAirflowDirection ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "An enumerated value which provides an indication of the
fan airflow direction. The Physical fan airflow direction
could be either from the port towards the power supply
module i.e. portToPower(1), or from the power supply module
towards the port i.e. powerToPort(2)"
SYNTAX INTEGER {
portToPower(1),
powerToPort(2)
}
HpicfDcFanState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "An enumerated value which provides an indication of the
fan state."
SYNTAX INTEGER {
failed(0),
removed(1),
off(2),
underspeed(3),
overspeed(4),
ok(5),
maxstate(6)
}
-- ********************************************************************
-- Fan Scalars
-- ********************************************************************
hpicfFanScalars OBJECT IDENTIFIER ::= { hpicfFanMIB 1 }
hpicfFanUserPrefAirflowDir OBJECT-TYPE
SYNTAX INTEGER {
portToPower(1),
powerToPort(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The user preferred fan airflow direction. The direction could be
powerToPort or portToPower. The actual fan direction has to be
changed manually, this will be used to indicate to the user when
when the actual fan airflow direction is different from the user
preferred airflow direction."
DEFVAL { powerToPort }
::= { hpicfFanScalars 1 }
-- ********************************************************************
-- FAN entry
-- ********************************************************************
hpicfEntityFan OBJECT IDENTIFIER ::= { hpicfFanMIB 2 }
hpicfFanTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains one row for every fan in the switch entity."
::= { hpicfEntityFan 1 }
hpicfFanEntry OBJECT-TYPE
SYNTAX HpicfFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about fan entity table."
INDEX { hpicfFanIndex }
::= { hpicfFanTable 1 }
HpicfFanEntry ::= SEQUENCE {
hpicfFanIndex HpicfDcFanIndex,
hpicfFanTray Integer32,
hpicfFanType HpicfDcFanType,
hpicfFanState HpicfDcFanState,
hpicfFanRecovering Integer32,
hpicfFanNumFailures Counter32,
hpicfFanAirflowDirection HpicfDcFanAirflowDirection
}
hpicfFanIndex OBJECT-TYPE
SYNTAX HpicfDcFanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index that is used to access the switch fan entry table."
::= { hpicfFanEntry 1 }
hpicfFanTray OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The tray number in which the fan is docked."
::= { hpicfFanEntry 2 }
hpicfFanType OBJECT-TYPE
SYNTAX HpicfDcFanType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "An indication of the vendor-specific fan."
::= { hpicfFanEntry 3 }
hpicfFanState OBJECT-TYPE
SYNTAX HpicfDcFanState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current state of the fan."
::= { hpicfFanEntry 4 }
hpicfFanRecovering OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "An indication that the switch fan entity is faulty.
Before declaring a fan to be good after a failure is
detected, the same good indication must happen five (5)
times in a row. A failure indication is always TRUE, while
a good indication could be FALSE, hence this parameter is
used to count the repeated good indications before
declaring the fan to be good "
::= { hpicfFanEntry 5 }
hpicfFanNumFailures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times the fan has failed."
::= { hpicfFanEntry 6 }
hpicfFanAirflowDirection OBJECT-TYPE
SYNTAX HpicfDcFanAirflowDirection
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indication of the fan air flow direction, either
from Power supply towards the port or from the port
towards the power supply."
::= { hpicfFanEntry 7 }
-- ********************************************************************
-- FAN Conformance
--********************************************************************
hpicfFanConformance OBJECT IDENTIFIER ::= { hpicfFanMIB 3 }
hpicfFanCompliance OBJECT IDENTIFIER ::= { hpicfFanConformance 1 }
hpicfFanGroups OBJECT IDENTIFIER ::= { hpicfFanConformance 2 }
-- ********************************************************************
-- FAN Complicance
-- ********************************************************************
hpicfDcFanCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for entries which implement
the FAN MIB."
MODULE -- This module
MANDATORY-GROUPS
{
hpicfFanScalarsGroup,
hpicfFanGroup
}
GROUP hpicfFanGroup
DESCRIPTION "Objects associated with switch entity FAN."
::= { hpicfFanCompliance 1 }
--
-- FAN Groups
--
hpicfFanScalarsGroup OBJECT-GROUP
OBJECTS
{
hpicfFanUserPrefAirflowDir
}
STATUS current
DESCRIPTION "Basic Scalars required in FAN MIB implementation."
::= { hpicfFanGroups 1 }
hpicfFanGroup OBJECT-GROUP
OBJECTS
{
hpicfFanTray,
hpicfFanType,
hpicfFanState,
hpicfFanRecovering,
hpicfFanNumFailures,
hpicfFanAirflowDirection
}
STATUS current
DESCRIPTION "FAN MIB parameters "
::= { hpicfFanGroups 2 }
END

File diff suppressed because it is too large Load Diff

181
mibs/hp/POWERSUPPLY-MI Normal file
View File

@ -0,0 +1,181 @@
POWERSUPPLY-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32, Counter32
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
TEXTUAL-CONVENTION
FROM SNMPv2-TC
hpSwitch
FROM HP-ICF-OID;
hpicfPsMIB MODULE-IDENTITY
LAST-UPDATED "200808271000Z" --August 27, 2008 10:00 GMT
ORGANIZATION "HP Networking"
CONTACT-INFO "Hewlett-Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION "This MIB module is for representing
switch power supply entity."
REVISION "200808271000Z" --August 27, 2008 10:00 GMT
DESCRIPTION "Initial Version of Power Supply MIB, Version 1"
::= { hpSwitch 55 }
hpicfEntityPs OBJECT IDENTIFIER ::= { hpicfPsMIB 1 }
-- ********************************************************************
-- POWER SUPPLY Textual Conventions
-- ********************************************************************
HpicfDcPsIndex ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION "A unique value that serves as index to identify the power supply."
SYNTAX Unsigned32
HpicfDcPsState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "An enumerated value which provides the state of the
switch power supply entity."
SYNTAX INTEGER {
psNotPresent(1),
psNotPlugged(2),
psPowered(3),
psFailed(4),
psPermFailure(5),
psMax(6)
}
hpicfPsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfPsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains one row per switch power supply entity."
::= { hpicfEntityPs 1 }
hpicfPsEntry OBJECT-TYPE
SYNTAX HpicfPsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about the power supply physical entity
table."
INDEX { hpicfPsBayNum }
::= { hpicfPsTable 1 }
HpicfPsEntry ::= SEQUENCE {
hpicfPsBayNum HpicfDcPsIndex,
hpicfPsState HpicfDcPsState,
hpicfPsFailures Counter32,
hpicfPsTemp Integer32,
hpicfPsVoltageInfo SnmpAdminString,
hpicfPsWattageCur Integer32,
hpicfPsWattageMax Integer32,
hpicfPsLastCall Counter32
}
hpicfPsBayNum OBJECT-TYPE
SYNTAX HpicfDcPsIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of switch power supply entity."
::= { hpicfPsEntry 1 }
hpicfPsState OBJECT-TYPE
SYNTAX HpicfDcPsState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The physical state of the switch power supply entity."
::= { hpicfPsEntry 2 }
hpicfPsFailures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of times power supply has failed."
::= { hpicfPsEntry 3 }
hpicfPsTemp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The temperature of the power supply in Celsius"
::= { hpicfPsEntry 4 }
hpicfPsVoltageInfo OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The voltage info and max current of power supply.
e.g. AC 120V/220V. "
::= { hpicfPsEntry 5 }
hpicfPsWattageCur OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The present power supply wattage information"
::= { hpicfPsEntry 6 }
hpicfPsWattageMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The maximum wattage of the power supply."
::= { hpicfPsEntry 7 }
hpicfPsLastCall OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of seconds since the switch power supply is up."
::= { hpicfPsEntry 8 }
-- ********************************************************************
-- POWER SUPPLY Conformance
--* *******************************************************************
hpicfPsConformance OBJECT IDENTIFIER ::= { hpicfPsMIB 2 }
hpicfPsCompliance OBJECT IDENTIFIER ::= { hpicfPsConformance 1 }
hpicfPsGroups OBJECT IDENTIFIER ::= { hpicfPsConformance 2 }
-- ********************************************************************
-- POWER SUPPLY Complicance
-- ********************************************************************
hpicfDcPsCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entries which implement the
POWER SUPPLY MIB."
MODULE
MANDATORY-GROUPS
{
hpicfPsGroup
}
GROUP hpicfPsGroup
DESCRIPTION "Objects associated with Entity POWER SUPPLY."
::= { hpicfPsCompliance 1 }
--
-- POWER SUPPLY Groups
--
hpicfPsGroup OBJECT-GROUP
OBJECTS
{
hpicfPsState,
hpicfPsFailures,
hpicfPsTemp,
hpicfPsVoltageInfo,
hpicfPsWattageCur,
hpicfPsWattageMax,
hpicfPsLastCall
}
STATUS current
DESCRIPTION "POWER SUPPLY parameters "
::= { hpicfPsGroups 1 }
END

View File

@ -16,5 +16,493 @@
]
},
"poller": "matches discovery"
},
"sensors": {
"discovery": {
"sensors": [
{
"sensor_deleted": "0",
"sensor_class": "temperature",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.25",
"sensor_index": "25",
"sensor_type": "entity-sensor",
"sensor_descr": "Chassis Temperature",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "20",
"sensor_limit": "40",
"sensor_limit_warn": null,
"sensor_limit_low": "10",
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": "25",
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
},
{
"sensor_deleted": "0",
"sensor_class": "power",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.6.1",
"sensor_index": "hpicfPsWattageCur.1",
"sensor_type": "procurve",
"sensor_descr": "Power Supply #1",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "48",
"sensor_limit": "1100",
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
},
{
"sensor_deleted": "0",
"sensor_class": "power",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.6.2",
"sensor_index": "hpicfPsWattageCur.2",
"sensor_type": "procurve",
"sensor_descr": "Power Supply #2",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "45",
"sensor_limit": "1100",
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
},
{
"sensor_deleted": "0",
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.1",
"sensor_index": "icfTemperatureSensor.1",
"sensor_type": "icfTemperatureSensor",
"sensor_descr": "Chassis Sensor",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "5",
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "icfTemperatureSensor"
},
{
"sensor_deleted": "0",
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.1",
"sensor_index": "hpicfFanState.1",
"sensor_type": "hpicfFanState",
"sensor_descr": "Fan #1",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "5",
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hpicfFanState"
},
{
"sensor_deleted": "0",
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.2",
"sensor_index": "hpicfFanState.2",
"sensor_type": "hpicfFanState",
"sensor_descr": "Fan #2",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "5",
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hpicfFanState"
},
{
"sensor_deleted": "0",
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.3",
"sensor_index": "hpicfFanState.3",
"sensor_type": "hpicfFanState",
"sensor_descr": "Fan #3",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "5",
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hpicfFanState"
},
{
"sensor_deleted": "0",
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.4",
"sensor_index": "hpicfFanState.4",
"sensor_type": "hpicfFanState",
"sensor_descr": "Fan #4",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "5",
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hpicfFanState"
},
{
"sensor_deleted": "0",
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.5",
"sensor_index": "hpicfFanState.5",
"sensor_type": "hpicfFanState",
"sensor_descr": "Fan #5",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "5",
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hpicfFanState"
},
{
"sensor_deleted": "0",
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.6",
"sensor_index": "hpicfFanState.6",
"sensor_type": "hpicfFanState",
"sensor_descr": "Fan #6",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "5",
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hpicfFanState"
},
{
"sensor_deleted": "0",
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.2.1",
"sensor_index": "hpicfPsState.1",
"sensor_type": "hpicfPsState",
"sensor_descr": "Power Supply #1",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "3",
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hpicfPsState"
},
{
"sensor_deleted": "0",
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.2.2",
"sensor_index": "hpicfPsState.2",
"sensor_type": "hpicfPsState",
"sensor_descr": "Power Supply #2",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "3",
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "hpicfPsState"
},
{
"sensor_deleted": "0",
"sensor_class": "temperature",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.4.1",
"sensor_index": "hpicfPsTemp.1",
"sensor_type": "procurve",
"sensor_descr": "Power Supply #1",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "27",
"sensor_limit": "47",
"sensor_limit_warn": null,
"sensor_limit_low": "17",
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
},
{
"sensor_deleted": "0",
"sensor_class": "temperature",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.4.2",
"sensor_index": "hpicfPsTemp.2",
"sensor_type": "procurve",
"sensor_descr": "Power Supply #2",
"sensor_divisor": "1",
"sensor_multiplier": "1",
"sensor_current": "29",
"sensor_limit": "49",
"sensor_limit_warn": null,
"sensor_limit_low": "19",
"sensor_limit_low_warn": null,
"sensor_alert": "1",
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
}
],
"state_indexes": [
{
"state_name": "hpicfFanState",
"state_descr": "removed",
"state_draw_graph": "1",
"state_value": "1",
"state_generic_value": "3"
},
{
"state_name": "hpicfFanState",
"state_descr": "off",
"state_draw_graph": "1",
"state_value": "2",
"state_generic_value": "3"
},
{
"state_name": "hpicfFanState",
"state_descr": "underspeed",
"state_draw_graph": "1",
"state_value": "3",
"state_generic_value": "1"
},
{
"state_name": "hpicfFanState",
"state_descr": "overspeed",
"state_draw_graph": "1",
"state_value": "4",
"state_generic_value": "1"
},
{
"state_name": "hpicfFanState",
"state_descr": "ok",
"state_draw_graph": "1",
"state_value": "5",
"state_generic_value": "0"
},
{
"state_name": "hpicfFanState",
"state_descr": "maxstate",
"state_draw_graph": "1",
"state_value": "6",
"state_generic_value": "3"
},
{
"state_name": "hpicfPsState",
"state_descr": "psNotPresent",
"state_draw_graph": "1",
"state_value": "1",
"state_generic_value": "3"
},
{
"state_name": "hpicfPsState",
"state_descr": "psNotPlugged",
"state_draw_graph": "1",
"state_value": "2",
"state_generic_value": "2"
},
{
"state_name": "hpicfPsState",
"state_descr": "psPowered",
"state_draw_graph": "1",
"state_value": "3",
"state_generic_value": "0"
},
{
"state_name": "hpicfPsState",
"state_descr": "psFailed",
"state_draw_graph": "1",
"state_value": "4",
"state_generic_value": "2"
},
{
"state_name": "hpicfPsState",
"state_descr": "psPermFailure",
"state_draw_graph": "1",
"state_value": "5",
"state_generic_value": "2"
},
{
"state_name": "hpicfPsState",
"state_descr": "psMax",
"state_draw_graph": "1",
"state_value": "6",
"state_generic_value": "3"
},
{
"state_name": "icfTemperatureSensor",
"state_descr": "unknown",
"state_draw_graph": "0",
"state_value": "1",
"state_generic_value": "3"
},
{
"state_name": "icfTemperatureSensor",
"state_descr": "bad",
"state_draw_graph": "1",
"state_value": "2",
"state_generic_value": "2"
},
{
"state_name": "icfTemperatureSensor",
"state_descr": "warning",
"state_draw_graph": "1",
"state_value": "3",
"state_generic_value": "1"
},
{
"state_name": "icfTemperatureSensor",
"state_descr": "good",
"state_draw_graph": "1",
"state_value": "4",
"state_generic_value": "0"
},
{
"state_name": "icfTemperatureSensor",
"state_descr": "notPresent",
"state_draw_graph": "0",
"state_value": "5",
"state_generic_value": "3"
}
]
},
"poller": "matches discovery"
},
"os": {
"discovery": {
"devices": [
{
"sysName": "<private>",
"sysObjectID": ".1.3.6.1.4.1.11.2.3.7.8.5.2",
"sysDescr": "HP Stack, revision KA.15.03.3004, ROM KA.15.05 (/sw/code/build/tam(KA_15_03))",
"sysContact": null,
"version": null,
"hardware": "",
"features": null,
"location": null,
"os": "procurve",
"type": "network",
"serial": null,
"icon": "hpe.svg"
}
]
},
"poller": {
"devices": [
{
"sysName": "<private>",
"sysObjectID": ".1.3.6.1.4.1.11.2.3.7.8.5.2",
"sysDescr": "HP Stack, revision KA.15.03.3004, ROM KA.15.05 (/sw/code/build/tam(KA_15_03))",
"sysContact": "<private>",
"version": "revision KA.15.03.3004",
"hardware": "Stack",
"features": null,
"location": "<private>",
"os": "procurve",
"type": "network",
"serial": null,
"icon": "hpe.svg"
}
]
}
}
}
}

View File

@ -1,3 +1,293 @@
1.3.6.1.2.1.1.1.0|4|HP Stack, revision KA.15.03.3004, ROM KA.15.05 (/sw/code/build/tam(KA_15_03))
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.11.2.3.7.8.5.2
1.3.6.1.2.1.1.3.0|67|1084104545
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.47.1.1.1.1.2.1|4|HP J9850A Switch 5406Rzl2
1.3.6.1.2.1.47.1.1.1.1.2.2|4|HP J9850A Switch backplane
1.3.6.1.2.1.47.1.1.1.1.2.3|4|HP J9850A Switch fan tray container
1.3.6.1.2.1.47.1.1.1.1.2.4|4|HP J9850A Switch temperature sensor pseudocontainer
1.3.6.1.2.1.47.1.1.1.1.2.5|4|HP J9850A Switch power supply bay pseudocontainer
1.3.6.1.2.1.47.1.1.1.1.2.6|4|HP J9850A Switch management module pseudocontainer
1.3.6.1.2.1.47.1.1.1.1.2.9|4|HP J9850A Switch interface module pseudocontainer
1.3.6.1.2.1.47.1.1.1.1.2.11|4|HP J9850A Switch fan
1.3.6.1.2.1.47.1.1.1.1.2.12|4|HP J9850A Switch fan
1.3.6.1.2.1.47.1.1.1.1.2.13|4|HP J9850A Switch fan
1.3.6.1.2.1.47.1.1.1.1.2.14|4|HP J9850A Switch fan
1.3.6.1.2.1.47.1.1.1.1.2.15|4|HP J9850A Switch fan
1.3.6.1.2.1.47.1.1.1.1.2.16|4|HP J9850A Switch fan
1.3.6.1.2.1.47.1.1.1.1.2.25|4|HP J9850A Switch temperature sensor
1.3.6.1.2.1.47.1.1.1.1.2.26|4|HP J9850A Switch power supply bay
1.3.6.1.2.1.47.1.1.1.1.2.27|4|HP J9850A Switch power supply bay
1.3.6.1.2.1.47.1.1.1.1.2.30|4|HP J9850A Switch power supply
1.3.6.1.2.1.47.1.1.1.1.2.31|4|HP J9850A Switch power supply
1.3.6.1.2.1.47.1.1.1.1.2.34|4|HP J9850A Switch Management Module Slot
1.3.6.1.2.1.47.1.1.1.1.2.35|4|HP J9850A Switch Management Module Slot
1.3.6.1.2.1.47.1.1.1.1.2.39|4|HP J9850A Switch port module slot
1.3.6.1.2.1.47.1.1.1.1.2.40|4|HP J9850A Switch port module slot
1.3.6.1.2.1.47.1.1.1.1.2.41|4|HP J9850A Switch port module slot
1.3.6.1.2.1.47.1.1.1.1.2.42|4|HP J9850A Switch port module slot
1.3.6.1.2.1.47.1.1.1.1.2.43|4|HP J9850A Switch port module slot
1.3.6.1.2.1.47.1.1.1.1.2.44|4|HP J9850A Switch port module slot
1.3.6.1.2.1.47.1.1.1.1.2.69|4|HP J9827A Management Module 5400Rzl2
1.3.6.1.2.1.47.1.1.1.1.2.74|4|HP J9989A 12p PoE+ / 12p 1GbE SFP v3 zl2 Mod
1.3.6.1.2.1.47.1.1.1.1.2.75|4|HP J9989A 12p PoE+ / 12p 1GbE SFP v3 zl2 Mod
1.3.6.1.2.1.47.1.1.1.1.2.76|4|HP J9987A 24p 10/100/1000BASE-T v3 zl2 Mod
1.3.6.1.2.1.47.1.1.1.1.2.104|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.105|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.106|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.107|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.108|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.109|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.110|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.111|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.112|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.113|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.114|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.115|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.116|4|HP J9989A 1000BASE-LX Port
1.3.6.1.2.1.47.1.1.1.1.2.117|4|HP J9989A 1000BASE-SX Port
1.3.6.1.2.1.47.1.1.1.1.2.118|4|HP J9989A 1000BASE-SX Port
1.3.6.1.2.1.47.1.1.1.1.2.119|4|HP J9989A 1000BASE-SX Port
1.3.6.1.2.1.47.1.1.1.1.2.120|4|HP J9989A 1000BASE-SX Port
1.3.6.1.2.1.47.1.1.1.1.2.121|4|HP J9989A 1000BASE-SX Port
1.3.6.1.2.1.47.1.1.1.1.2.122|4|HP J9989A 1000BASE-SX Port
1.3.6.1.2.1.47.1.1.1.1.2.123|4|HP J9989A No Card
1.3.6.1.2.1.47.1.1.1.1.2.124|4|HP J9989A No Card
1.3.6.1.2.1.47.1.1.1.1.2.125|4|HP J9989A No Card
1.3.6.1.2.1.47.1.1.1.1.2.126|4|HP J9989A No Card
1.3.6.1.2.1.47.1.1.1.1.2.127|4|HP J9989A No Card
1.3.6.1.2.1.47.1.1.1.1.2.136|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.137|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.138|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.139|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.140|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.141|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.142|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.143|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.144|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.145|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.146|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.147|4|HP J9989A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.148|4|HP J9989A 1000BASE-LX Port
1.3.6.1.2.1.47.1.1.1.1.2.149|4|HP J9989A 1000BASE-SX Port
1.3.6.1.2.1.47.1.1.1.1.2.150|4|HP J9989A 1000BASE-SX Port
1.3.6.1.2.1.47.1.1.1.1.2.151|4|HP J9989A 1000BASE-SX Port
1.3.6.1.2.1.47.1.1.1.1.2.152|4|HP J9989A 1000BASE-SX Port
1.3.6.1.2.1.47.1.1.1.1.2.153|4|HP J9989A 1000BASE-SX Port
1.3.6.1.2.1.47.1.1.1.1.2.154|4|HP J9989A No Card
1.3.6.1.2.1.47.1.1.1.1.2.155|4|HP J9989A No Card
1.3.6.1.2.1.47.1.1.1.1.2.156|4|HP J9989A No Card
1.3.6.1.2.1.47.1.1.1.1.2.157|4|HP J9989A No Card
1.3.6.1.2.1.47.1.1.1.1.2.158|4|HP J9989A No Card
1.3.6.1.2.1.47.1.1.1.1.2.159|4|HP J9989A No Card
1.3.6.1.2.1.47.1.1.1.1.2.168|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.169|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.170|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.171|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.172|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.173|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.174|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.175|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.176|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.177|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.178|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.179|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.180|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.181|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.182|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.183|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.184|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.185|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.186|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.187|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.188|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.189|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.190|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.2.191|4|HP J9987A 100/1000BASE-T Port
1.3.6.1.2.1.47.1.1.1.1.7.1|4|Chassis
1.3.6.1.2.1.47.1.1.1.1.7.2|4|Backplane
1.3.6.1.2.1.47.1.1.1.1.7.3|4|Fan Tray
1.3.6.1.2.1.47.1.1.1.1.7.4|4|Temperature sensor pseudocontainer
1.3.6.1.2.1.47.1.1.1.1.7.5|4|Power supply bay pseudocontainer
1.3.6.1.2.1.47.1.1.1.1.7.6|4|Management module pseudocontainer
1.3.6.1.2.1.47.1.1.1.1.7.9|4|Interface module pseudocontainer
1.3.6.1.2.1.47.1.1.1.1.7.11|4|Fan 1
1.3.6.1.2.1.47.1.1.1.1.7.12|4|Fan 2
1.3.6.1.2.1.47.1.1.1.1.7.13|4|Fan 3
1.3.6.1.2.1.47.1.1.1.1.7.14|4|Fan 4
1.3.6.1.2.1.47.1.1.1.1.7.15|4|Fan 5
1.3.6.1.2.1.47.1.1.1.1.7.16|4|Fan 6
1.3.6.1.2.1.47.1.1.1.1.7.25|4|Chassis Temperature
1.3.6.1.2.1.47.1.1.1.1.7.26|4|Power Supply Bay 1
1.3.6.1.2.1.47.1.1.1.1.7.27|4|Power Supply Bay 2
1.3.6.1.2.1.47.1.1.1.1.7.30|4|Power Supply 1
1.3.6.1.2.1.47.1.1.1.1.7.31|4|Power Supply 2
1.3.6.1.2.1.47.1.1.1.1.7.34|4|Switch Management Module Slot
1.3.6.1.2.1.47.1.1.1.1.7.35|4|Switch Management Module Slot
1.3.6.1.2.1.47.1.1.1.1.7.39|4|Slot A
1.3.6.1.2.1.47.1.1.1.1.7.40|4|Slot B
1.3.6.1.2.1.47.1.1.1.1.7.41|4|Slot C
1.3.6.1.2.1.47.1.1.1.1.7.42|4|Slot D
1.3.6.1.2.1.47.1.1.1.1.7.43|4|Slot E
1.3.6.1.2.1.47.1.1.1.1.7.44|4|Slot F
1.3.6.1.2.1.47.1.1.1.1.7.69|4|Switch Management Module
1.3.6.1.2.1.47.1.1.1.1.7.74|4|A
1.3.6.1.2.1.47.1.1.1.1.7.75|4|B
1.3.6.1.2.1.47.1.1.1.1.7.76|4|C
1.3.6.1.2.1.47.1.1.1.1.7.104|4|Port A1
1.3.6.1.2.1.47.1.1.1.1.7.105|4|Port A2
1.3.6.1.2.1.47.1.1.1.1.7.106|4|Port A3
1.3.6.1.2.1.47.1.1.1.1.7.107|4|Port A4
1.3.6.1.2.1.47.1.1.1.1.7.108|4|Port A5
1.3.6.1.2.1.47.1.1.1.1.7.109|4|Port A6
1.3.6.1.2.1.47.1.1.1.1.7.110|4|Port A7
1.3.6.1.2.1.47.1.1.1.1.7.111|4|Port A8
1.3.6.1.2.1.47.1.1.1.1.7.112|4|Port A9
1.3.6.1.2.1.47.1.1.1.1.7.113|4|Port A10
1.3.6.1.2.1.47.1.1.1.1.7.114|4|Port A11
1.3.6.1.2.1.47.1.1.1.1.7.115|4|Port A12
1.3.6.1.2.1.47.1.1.1.1.7.116|4|Port A13
1.3.6.1.2.1.47.1.1.1.1.7.117|4|Port A14
1.3.6.1.2.1.47.1.1.1.1.7.118|4|Port A15
1.3.6.1.2.1.47.1.1.1.1.7.119|4|Port A16
1.3.6.1.2.1.47.1.1.1.1.7.120|4|Port A17
1.3.6.1.2.1.47.1.1.1.1.7.121|4|Port A18
1.3.6.1.2.1.47.1.1.1.1.7.122|4|Port A19
1.3.6.1.2.1.47.1.1.1.1.7.123|4|Port A20
1.3.6.1.2.1.47.1.1.1.1.7.124|4|Port A21
1.3.6.1.2.1.47.1.1.1.1.7.125|4|Port A22
1.3.6.1.2.1.47.1.1.1.1.7.126|4|Port A23
1.3.6.1.2.1.47.1.1.1.1.7.127|4|Port A24
1.3.6.1.2.1.47.1.1.1.1.7.136|4|Port B1
1.3.6.1.2.1.47.1.1.1.1.7.137|4|Port B2
1.3.6.1.2.1.47.1.1.1.1.7.138|4|Port B3
1.3.6.1.2.1.47.1.1.1.1.7.139|4|Port B4
1.3.6.1.2.1.47.1.1.1.1.7.140|4|Port B5
1.3.6.1.2.1.47.1.1.1.1.7.141|4|Port B6
1.3.6.1.2.1.47.1.1.1.1.7.142|4|Port B7
1.3.6.1.2.1.47.1.1.1.1.7.143|4|Port B8
1.3.6.1.2.1.47.1.1.1.1.7.144|4|Port B9
1.3.6.1.2.1.47.1.1.1.1.7.145|4|Port B10
1.3.6.1.2.1.47.1.1.1.1.7.146|4|Port B11
1.3.6.1.2.1.47.1.1.1.1.7.147|4|Port B12
1.3.6.1.2.1.47.1.1.1.1.7.148|4|Port B13
1.3.6.1.2.1.47.1.1.1.1.7.149|4|Port B14
1.3.6.1.2.1.47.1.1.1.1.7.150|4|Port B15
1.3.6.1.2.1.47.1.1.1.1.7.151|4|Port B16
1.3.6.1.2.1.47.1.1.1.1.7.152|4|Port B17
1.3.6.1.2.1.47.1.1.1.1.7.153|4|Port B18
1.3.6.1.2.1.47.1.1.1.1.7.154|4|Port B19
1.3.6.1.2.1.47.1.1.1.1.7.155|4|Port B20
1.3.6.1.2.1.47.1.1.1.1.7.156|4|Port B21
1.3.6.1.2.1.47.1.1.1.1.7.157|4|Port B22
1.3.6.1.2.1.47.1.1.1.1.7.158|4|Port B23
1.3.6.1.2.1.47.1.1.1.1.7.159|4|Port B24
1.3.6.1.2.1.47.1.1.1.1.7.168|4|Port C1
1.3.6.1.2.1.47.1.1.1.1.7.169|4|Port C2
1.3.6.1.2.1.47.1.1.1.1.7.170|4|Port C3
1.3.6.1.2.1.47.1.1.1.1.7.171|4|Port C4
1.3.6.1.2.1.47.1.1.1.1.7.172|4|Port C5
1.3.6.1.2.1.47.1.1.1.1.7.173|4|Port C6
1.3.6.1.2.1.47.1.1.1.1.7.174|4|Port C7
1.3.6.1.2.1.47.1.1.1.1.7.175|4|Port C8
1.3.6.1.2.1.47.1.1.1.1.7.176|4|Port C9
1.3.6.1.2.1.47.1.1.1.1.7.177|4|Port C10
1.3.6.1.2.1.47.1.1.1.1.7.178|4|Port C11
1.3.6.1.2.1.47.1.1.1.1.7.179|4|Port C12
1.3.6.1.2.1.47.1.1.1.1.7.180|4|Port C13
1.3.6.1.2.1.47.1.1.1.1.7.181|4|Port C14
1.3.6.1.2.1.47.1.1.1.1.7.182|4|Port C15
1.3.6.1.2.1.47.1.1.1.1.7.183|4|Port C16
1.3.6.1.2.1.47.1.1.1.1.7.184|4|Port C17
1.3.6.1.2.1.47.1.1.1.1.7.185|4|Port C18
1.3.6.1.2.1.47.1.1.1.1.7.186|4|Port C19
1.3.6.1.2.1.47.1.1.1.1.7.187|4|Port C20
1.3.6.1.2.1.47.1.1.1.1.7.188|4|Port C21
1.3.6.1.2.1.47.1.1.1.1.7.189|4|Port C22
1.3.6.1.2.1.47.1.1.1.1.7.190|4|Port C23
1.3.6.1.2.1.47.1.1.1.1.7.191|4|Port C24
1.3.6.1.2.1.99.1.1.1.1.11|2|1
1.3.6.1.2.1.99.1.1.1.1.12|2|1
1.3.6.1.2.1.99.1.1.1.1.13|2|1
1.3.6.1.2.1.99.1.1.1.1.14|2|1
1.3.6.1.2.1.99.1.1.1.1.15|2|1
1.3.6.1.2.1.99.1.1.1.1.16|2|1
1.3.6.1.2.1.99.1.1.1.1.25|2|8
1.3.6.1.2.1.99.1.1.1.2.11|2|9
1.3.6.1.2.1.99.1.1.1.2.12|2|9
1.3.6.1.2.1.99.1.1.1.2.13|2|9
1.3.6.1.2.1.99.1.1.1.2.14|2|9
1.3.6.1.2.1.99.1.1.1.2.15|2|9
1.3.6.1.2.1.99.1.1.1.2.16|2|9
1.3.6.1.2.1.99.1.1.1.2.25|2|9
1.3.6.1.2.1.99.1.1.1.3.11|2|0
1.3.6.1.2.1.99.1.1.1.3.12|2|0
1.3.6.1.2.1.99.1.1.1.3.13|2|0
1.3.6.1.2.1.99.1.1.1.3.14|2|0
1.3.6.1.2.1.99.1.1.1.3.15|2|0
1.3.6.1.2.1.99.1.1.1.3.16|2|0
1.3.6.1.2.1.99.1.1.1.3.25|2|0
1.3.6.1.2.1.99.1.1.1.4.11|2|0
1.3.6.1.2.1.99.1.1.1.4.12|2|0
1.3.6.1.2.1.99.1.1.1.4.13|2|0
1.3.6.1.2.1.99.1.1.1.4.14|2|0
1.3.6.1.2.1.99.1.1.1.4.15|2|0
1.3.6.1.2.1.99.1.1.1.4.16|2|0
1.3.6.1.2.1.99.1.1.1.4.25|2|20
1.3.6.1.4.1.11.2.14.11.1.2.6.1.1.1|2|1
1.3.6.1.4.1.11.2.14.11.1.2.6.1.2.1|6|1.3.6.1.4.1.11.2.3.7.8.3.3
1.3.6.1.4.1.11.2.14.11.1.2.6.1.3.1|2|1
1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.1|2|5
1.3.6.1.4.1.11.2.14.11.1.2.6.1.5.1|65|0
1.3.6.1.4.1.11.2.14.11.1.2.6.1.6.1|65|0
1.3.6.1.4.1.11.2.14.11.1.2.6.1.7.1|4|Chassis Sensor
1.3.6.1.4.1.11.2.14.11.5.1.9.6.1.0|2|42
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.2.1|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.2.2|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.2.3|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.2.4|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.2.5|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.2.6|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.3.1|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.3.2|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.3.3|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.3.4|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.3.5|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.3.6|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.1|2|5
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.2|2|5
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.3|2|5
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.4|2|5
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.5|2|5
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.4.6|2|5
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.5.1|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.5.2|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.5.3|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.5.4|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.5.5|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.5.6|2|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.6.1|65|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.6.2|65|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.6.3|65|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.6.4|65|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.6.5|65|0
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.6.6|65|0
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.2.1|2|3
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.2.2|2|3
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.3.1|65|0
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.3.2|65|0
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.4.1|2|27
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.4.2|2|29
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.5.1|4|AC 120V/240V
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.5.2|4|AC 120V/240V
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.6.1|2|48
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.6.2|2|45
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.7.1|2|1100
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.7.2|2|1100
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.8.1|65|10841186
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.8.2|65|10841186
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.9.1|4|J9829A
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.9.2|4|J9829A
1.3.6.1.6.3.10.2.1.3.0|2|10841209