Files
librenms-librenms/mibs/procera/PACKETLOGIC-HW-SENSORS-MIB

159 lines
3.2 KiB
Plaintext
Raw Normal View History

Convert OS discovery to new style (#12099) * terra * airos * port cisco os polling old wwan polling was broken and deprecated anyway * enterasys * Brother, a few changes * AW Plus * Fabos * set expected test data * 3com * Adva FSP150 * advantech * airos-af * aix * akcp * allied * allworx and missed mibs * anyos * fixup some zyxel shared stuffs zywall graph polling * aos * apc * apex * apsoluteos * fix copyrights * arris * arris * aruba-instant * ArubaOS * Ascom * asuswrt-merlin, ats * audiocodes * avocent * avtech * barracuda * binox * boss * canonprinter * cdata * ceraos * ciena-waveserver * fix 3com * fix airos * fix brother yaml? * fix aos more * fix and improve apc * fix arista test data * yaml discovery (basic) * cimc * mib not used * remove old discovery file * ciscosat * ciscosb fixes + improvements * comware * ctm * cumulus * cxr-ts * cyberoam-utm * cyberpower * dahua-nvr * dasan-nos * datadomain * dcn-software and fallback oids * dd-wrt * dell-laser * d* * e* and location * forti, post processing, oid coalescing * Freebsd array of sysDescr regex * finish f* * g* * h* * i* WIP * i* * Junos * j* * k* * unix refactor previous to yaml more inject $device * fixes * fixes * l* * m* * n* ability to set other fields in regex tnmsne polling to eloquent * o* * p* * q* + bonus calix * r* * s* WIP * s* * t* * u* * v* rework vrp to yaml (hybrid) * w* * x* * z* * a* easy no-data * fixes * style fixes * missed ApexPlus * fix signature * Add missing location data * rename getDevice functions * add new cisco ftd data * update docs * revert sill snmp format * fix snmp options * update for new smartax test data * rebase dsm * fix voss
2020-09-18 08:12:07 -05:00
PACKETLOGIC-HW-SENSORS-MIB DEFINITIONS ::= BEGIN
IMPORTS
NOTIFICATION-TYPE,
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter64,
Unsigned32, TimeTicks FROM SNMPv2-SMI
packetlogic2 FROM PACKETLOGIC-MIB
hw FROM PACKETLOGIC-HW-MIB
DisplayString, DateAndTime FROM SNMPv2-TC
CounterBasedGauge64 FROM HCNUM-TC;
sensors MODULE-IDENTITY
LAST-UPDATED "201909121500Z"
ORGANIZATION "Procera Networks, Inc."
CONTACT-INFO "support@proceranetworks.com"
DESCRIPTION "PacketLogic2 MIB which describes BMC sensor properties"
REVISION "201909121500Z"
DESCRIPTION " Latest version at the revision date for version GET VERSION HERE"
::={hw 3}
TempSensorEntry ::= SEQUENCE {
tempSensorId DisplayString,
tempSensorReading Unsigned32,
tempSensorStatus DisplayString,
tempSensorUnit DisplayString,
tempSensorEntryIndex Integer32
}
tempSensors OBJECT-TYPE
SYNTAX SEQUENCE OF TempSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Conceptual Table"
::= {sensors 1}
tempSensorEntry OBJECT-TYPE
SYNTAX TempSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Conceptual Table"
INDEX { tempSensorEntryIndex }
::= {tempSensors 1}
tempSensorEntryIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique Row Index for Conceptual Table"
::={tempSensorEntry 999}
FanSensorEntry ::= SEQUENCE {
fanSensorId DisplayString,
fanSensorSpeed Unsigned32,
fanSensorStatus DisplayString,
fanSensorUnit DisplayString,
fanSensorEntryIndex Integer32
}
fanSensors OBJECT-TYPE
SYNTAX SEQUENCE OF FanSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Conceptual Table"
::= {sensors 4}
fanSensorEntry OBJECT-TYPE
SYNTAX FanSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Conceptual Table"
INDEX { fanSensorEntryIndex }
::= {fanSensors 1}
fanSensorEntryIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique Row Index for Conceptual Table"
::={fanSensorEntry 999}
tempSensorId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Sensor ID"
::={tempSensorEntry 1}
tempSensorReading OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Sensor Temperature"
::={tempSensorEntry 2}
tempSensorStatus OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Temperature Sensor Status"
::={tempSensorEntry 3}
tempSensorUnit OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Temperature Sensor Reading Unit"
::={tempSensorEntry 4}
fanSensorId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Fan ID"
::={fanSensorEntry 1}
fanSensorSpeed OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Fan Speed"
::={fanSensorEntry 2}
fanSensorStatus OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Fan Sensor Status"
::={fanSensorEntry 3}
fanSensorUnit OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Fan Sensor Reading Unit"
::={fanSensorEntry 4}
END