mirror of
https://github.com/hsnodgrass/snmp_mib_archive.git
synced 2025-04-18 00:13:02 +00:00
244 lines
6.8 KiB
INI
Executable File
244 lines
6.8 KiB
INI
Executable File
#-MIBFILE: cpqica.mib
|
|
|
|
CPQICA-MIB DEFINITIONS ::= BEGIN
|
|
|
|
|
|
compaq OBJECT IDENTIFIER ::= { enterprises 232 }
|
|
DisplayString ::=
|
|
OCTET STRING
|
|
|
|
PhysAddress ::=
|
|
OCTET STRING
|
|
|
|
mib-2 OBJECT IDENTIFIER ::= { mgmt 1 }
|
|
system OBJECT IDENTIFIER ::= { mib-2 1 }
|
|
sysName OBJECT IDENTIFIER ::= { system 5 }
|
|
cpqHostOs OBJECT IDENTIFIER ::= { compaq 11 }
|
|
cpqHoComponent OBJECT IDENTIFIER ::= { cpqHostOs 2 }
|
|
cpqHoTrapInfo OBJECT IDENTIFIER ::= { cpqHoComponent 11 }
|
|
cpqHoTrapFlags OBJECT IDENTIFIER ::= { cpqHoTrapInfo 1 }
|
|
cpqICA OBJECT IDENTIFIER ::= { compaq 140 }
|
|
|
|
cpqICAMibRev OBJECT IDENTIFIER ::= { cpqICA 1 }
|
|
|
|
cpqICAComponent OBJECT IDENTIFIER ::= { cpqICA 2 }
|
|
|
|
cpqICAInterface OBJECT IDENTIFIER ::= { cpqICAComponent 1 }
|
|
|
|
cpqICAICA OBJECT IDENTIFIER ::= { cpqICAComponent 2 }
|
|
|
|
cpqICAOsCommon OBJECT IDENTIFIER ::= { cpqICAInterface 4 }
|
|
|
|
cpqICAMibRevMajor OBJECT-TYPE
|
|
SYNTAX INTEGER (1..65535)
|
|
ACCESS read-only
|
|
STATUS mandatory
|
|
DESCRIPTION "The Major Revision level.
|
|
A change in the major revision level represents a major change
|
|
in the architecture of the MIB. A change in the major revision
|
|
level may indicate a significant change in the information
|
|
supported and/or the meaning of the supported information,
|
|
correct interpretation of data may require a MIB document with
|
|
the same major revision level."
|
|
::= { cpqICAMibRev 1 }
|
|
|
|
|
|
cpqICAMibRevMinor OBJECT-TYPE
|
|
SYNTAX INTEGER (0..65535)
|
|
ACCESS read-only
|
|
STATUS mandatory
|
|
DESCRIPTION "The Minor Revision level.
|
|
A change in the minor revision level may represent some minor
|
|
additional support, no changes to any pre-existing information
|
|
has occurred."
|
|
::= { cpqICAMibRev 2 }
|
|
|
|
|
|
cpqICAMibCondition OBJECT-TYPE
|
|
SYNTAX INTEGER {
|
|
other(1),
|
|
ok(2),
|
|
degraded(3),
|
|
failed(4)
|
|
}
|
|
ACCESS read-only
|
|
STATUS mandatory
|
|
DESCRIPTION "The overall condition (status) of the system represented by
|
|
this MIB."
|
|
::= { cpqICAMibRev 3 }
|
|
|
|
|
|
cpqICAOsCommonPollFreq OBJECT-TYPE
|
|
SYNTAX INTEGER (0..65535)
|
|
ACCESS read-only
|
|
STATUS mandatory
|
|
DESCRIPTION "The Insight Agent's polling frequency.
|
|
|
|
The frequency, in seconds, at which the Insight Agent requests
|
|
information from the device driver. A frequency of zero (0)
|
|
indicates that the Insight Agent retrieves the information upon
|
|
request of a management station, it does not poll the device
|
|
driver at a specific interval.
|
|
|
|
If the poll frequency is zero (0) all attempts to write to
|
|
this object will fail. If the poll frequency is non-zero,
|
|
setting this value will change the polling frequency of the
|
|
Insight Agent. Setting the poll frequency to zero (0) will
|
|
always fail, an agent may also choose to fail any request to
|
|
change the poll frequency to a value that would severely impact
|
|
system performance."
|
|
::= { cpqICAOsCommon 1 }
|
|
|
|
|
|
cpqICAOsCommonModuleTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF CpqICAOsCommonModuleEntry
|
|
ACCESS read-only
|
|
STATUS mandatory
|
|
DESCRIPTION "A table of software modules that provide an interface to the
|
|
device this MIB describes."
|
|
::= { cpqICAOsCommon 2 }
|
|
|
|
|
|
cpqICAOsCommonModuleEntry OBJECT-TYPE
|
|
SYNTAX CpqICAOsCommonModuleEntry
|
|
ACCESS read-only
|
|
STATUS mandatory
|
|
DESCRIPTION "A description of a software module that provides an interface
|
|
to the device this MIB describes."
|
|
INDEX { cpqICAOsCommonModuleIndex }
|
|
|
|
::= { cpqICAOsCommonModuleTable 1 }
|
|
|
|
cpqICAOsCommonModuleEntry ::=
|
|
SEQUENCE {
|
|
cpqICAOsCommonModuleIndex INTEGER,
|
|
cpqICAOsCommonModuleName DisplayString,
|
|
cpqICAOsCommonModuleVersion DisplayString,
|
|
cpqICAOsCommonModuleDate OCTET STRING,
|
|
cpqICAOsCommonModulePurpose DisplayString
|
|
}
|
|
|
|
cpqICAOsCommonModuleIndex OBJECT-TYPE
|
|
SYNTAX INTEGER (0..255)
|
|
ACCESS read-only
|
|
STATUS mandatory
|
|
DESCRIPTION "A unique index for this module description."
|
|
::= { cpqICAOsCommonModuleEntry 1 }
|
|
|
|
|
|
cpqICAOsCommonModuleName OBJECT-TYPE
|
|
SYNTAX DisplayString (SIZE(0..255))
|
|
ACCESS read-only
|
|
STATUS mandatory
|
|
DESCRIPTION "The module name."
|
|
::= { cpqICAOsCommonModuleEntry 2 }
|
|
|
|
|
|
cpqICAOsCommonModuleVersion OBJECT-TYPE
|
|
SYNTAX DisplayString (SIZE(0..5))
|
|
ACCESS read-only
|
|
STATUS mandatory
|
|
DESCRIPTION "The module version in XX.YY format.
|
|
|
|
Where XX is the major version number and YY is the minor version
|
|
number. This field will be a null (size 0) string if the agent
|
|
cannot provide the module version."
|
|
::= { cpqICAOsCommonModuleEntry 3 }
|
|
|
|
|
|
cpqICAOsCommonModuleDate OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(7))
|
|
ACCESS read-only
|
|
STATUS mandatory
|
|
DESCRIPTION "The module date.
|
|
|
|
field octets contents range
|
|
===== ====== ======== =====
|
|
1 1-2 year 0..65536
|
|
2 3 month 1..12
|
|
3 4 day 1..31
|
|
4 5 hour 0..23
|
|
5 6 minute 0..59
|
|
6 7 second 0..60
|
|
(use 60 for leap-second)
|
|
|
|
|
|
This field will be set to year = 0 if the agent cannot provide
|
|
the module date. The hour, minute, and second field will be set
|
|
to zero (0) if they are not relevant. The year field is set
|
|
with the most significant octet first."
|
|
::= { cpqICAOsCommonModuleEntry 4 }
|
|
|
|
|
|
cpqICAOsCommonModulePurpose OBJECT-TYPE
|
|
SYNTAX DisplayString (SIZE(0..255))
|
|
ACCESS read-only
|
|
STATUS mandatory
|
|
DESCRIPTION "The purpose of the module described in this entry."
|
|
::= { cpqICAOsCommonModuleEntry 5 }
|
|
|
|
|
|
|
|
cpqICAAdd TRAP-TYPE
|
|
ENTERPRISE compaq
|
|
--#CATEGORY "Proliant ICA Events"
|
|
DESCRIPTION "ICA Object Addition.
|
|
|
|
This trap signifies that the Intelligent Cluster Administrator
|
|
added an object to the cluster."
|
|
::= 140001
|
|
|
|
|
|
cpqICADelete TRAP-TYPE
|
|
ENTERPRISE compaq
|
|
--#CATEGORY "Proliant ICA Events"
|
|
DESCRIPTION "ICA Object Deletion.
|
|
|
|
This trap signifies that the Intelligent Cluster Administrator
|
|
has deleted an object in the cluster."
|
|
::= 140002
|
|
|
|
|
|
cpqICAPropertyChange TRAP-TYPE
|
|
ENTERPRISE compaq
|
|
--#CATEGORY "Proliant ICA Events"
|
|
DESCRIPTION "ICA Property Change Occurred.
|
|
|
|
This trap signifies that the Intelligent Cluster Administrator
|
|
has performed one or more property changes on the cluster."
|
|
::= 140003
|
|
|
|
|
|
cpqICAMove TRAP-TYPE
|
|
ENTERPRISE compaq
|
|
--#CATEGORY "Proliant ICA Events"
|
|
DESCRIPTION "ICA Move Action Occurred.
|
|
|
|
This trap signifies that the Intelligent Cluster Administrator
|
|
has performed a move action on the cluster."
|
|
::= 140004
|
|
|
|
|
|
cpqICAImportRestoreStart TRAP-TYPE
|
|
ENTERPRISE compaq
|
|
--#CATEGORY "Proliant ICA Events"
|
|
DESCRIPTION "ICA Import Action Starting.
|
|
|
|
This trap signifies that the Intelligent Cluster Administrator
|
|
is starting an import operation on the cluster."
|
|
::= 140005
|
|
|
|
|
|
cpqICAImportRestoreEnd TRAP-TYPE
|
|
ENTERPRISE compaq
|
|
--#CATEGORY "Proliant ICA Events"
|
|
DESCRIPTION "ICA Import Action Ended.
|
|
|
|
This trap signifies that the Intelligent Cluster Administrator
|
|
has finished an import operation on the cluster."
|
|
::= 140006
|
|
|
|
|
|
END
|
|
|